home · contact · privacy
Improve explanation of missing data in HTML table view.
[berlin-corona-table] / enhance_table.py
index 70a9501cab411936b5644c53a5906b4975bdc32e..8d0fd335ec2c62e077bb3b34fcd47f10920adb30 100755 (executable)
@@ -131,12 +131,18 @@ for i in range(len(sorted_dates)):
 
 # Optimized for web browser viewing.
 if output_type == 'html':
-    print("""<html>
+    print("""<!DOCTYPE html>
+<html>
+<head>
 <style>
 table, tr, th, td { border: 1px solid black; }
 .day_row:nth-child(7n+2) { background-color: yellow; }
 .district_name { writing-mode: vertical-rl; transform: rotate(180deg); }
 </style>
+<title>Table of Berlin's Corona infection number development by districts</title>
+</head>
+<h1>Table of Berlin's Corona infection number development by districts</h1>
+<p>Updated daily at 9pm. <a href="https://plomlompom.com/repos/?p=berlin-corona-table">Source code</a>. <a href="berlin_corona.txt">Text view optimized for terminal curl</a>.</p>
 <table>
 <tr>
 <th>date</th>""")
@@ -157,7 +163,7 @@ table, tr, th, td { border: 1px solid black; }
         long_winc = translate['winc']
         for district in sorted_districts:
             district_data = db[district][date]
-            week_sum = week_avg = week_inc = ''
+            week_sum = week_avg = week_inc = '(not enough data)'
             new_infections = district_data['new_infections']
             if 'week_sum' in district_data:
                 week_sum = '%s' % district_data['week_sum']
@@ -167,14 +173,15 @@ table, tr, th, td { border: 1px solid black; }
                 week_inc = '%.1f' % district_data['week_incidence']
             print('<td>')
             print(new_infections)
-            if district == sum_district:
-                print('<details open><summary></summary><table>')
-            else:
-                print('<details><summary></summary><table>')
+            if district != sum_district:
+                print('<details><summary></summary>')
+            print('<table>')
             print('<tr><th>%s</th><td>%s</td></tr>' % (long_wsum, week_sum))
             print('<tr><th>%s</th><td>%s</td></tr>' % (long_wavg, week_avg))
             print('<tr><th>%s</th><td>%s</td></tr>' % (long_winc, week_inc))
-            print('</table></details>')
+            print('</table>')
+            if district != sum_district:
+                print('</details>')
             print('</td>')
         print('</tr>')
     print('</table>')
@@ -186,7 +193,7 @@ elif output_type == 'txt':
     # Explain what this is.
     intro = \
 """Table of Berlin's Corona infection number development by districts.
-Updated daily around 9pm.
+Updated daily at 9pm.
 
 Abbrevations/explanations:
 """
@@ -194,6 +201,8 @@ Abbrevations/explanations:
         intro += "%s: %s\n" % (k, translate[k])
     intro += """
 Source code: https://plomlompom.com/repos/?p=berlin-corona-table
+
+HTML view: https://plomlompom.com/berlin_corona.html
 """
     print(intro)