From: Christian Heller Date: Fri, 3 Jul 2020 19:06:56 +0000 (+0200) Subject: Extend abbreviation mapping, use collapsible for HTML table cells. X-Git-Url: https://plomlompom.com/repos/?p=berlin-corona-table;a=commitdiff_plain;h=76d923286b2178d07972ac6b4da6c8877362b479 Extend abbreviation mapping, use collapsible for HTML table cells. --- diff --git a/enhance_table.py b/enhance_table.py index acbebc6..bdf91e1 100755 --- a/enhance_table.py +++ b/enhance_table.py @@ -32,6 +32,9 @@ translate = { 'TS': 'Tempelhof-Schöneberg', 'TK': 'Treptow-Köpenick', 'sum': 'all of Berlin', + 'wsum': 'sum for last 7 days', + 'wavg': 'per-day average of new infections for last 7 days', + 'winc': 'incidence (x per 100k inhabitants) of new infections for last 7 days', } # Read infections table path and output type. @@ -144,6 +147,9 @@ if output_type == 'html': for date in sorted_dates: print('') print('%s' % date) + long_wsum = translate['wsum'] + long_wavg = translate['wavg'] + long_winc = translate['winc'] for district in sorted_districts: district_data = db[district][date] week_sum = week_avg = week_inc = '' @@ -155,12 +161,12 @@ if output_type == 'html': if 'week_incidence' in district_data: week_inc = '%.1f' % district_data['week_incidence'] print('') - print('') - print('' % new_infections) - print('' % week_sum) - print('' % week_avg) - print('' % week_inc) - print('
new%s
wsum%s
wavg%s
winc%s
') + print(new_infections) + print('
(more)') + print('' % (long_wsum, week_sum)) + print('' % (long_wavg, week_avg)) + print('' % (long_winc, week_inc)) + print('
%s%s
%s%s
%s%s
') print('') print('') print('') @@ -178,10 +184,7 @@ Abbrevations/explanations: """ for k in translate: intro += "%s: %s\n" % (k, translate[k]) - intro += """wsum: sum for last 7 days -wavg: per-day average of new infections for last 7 days -winc: incidence (x per 100k inhabitants) of new infections for last 7 days - + intro += """ Source code: https://plomlompom.com/repos/?p=berlin-corona-table """ print(intro)