X-Git-Url: https://plomlompom.com/repos/?p=berlin-corona-table;a=blobdiff_plain;f=enhance_table.py;h=0b30d216f5105d66391251659427caa7903f316a;hp=acbebc6b950905cab22a247a42010b69a15c166a;hb=049ba1c6850f9344523f8efd46c837a6c15263ee;hpb=5ece867536877574b33064933504740484e08797 diff --git a/enhance_table.py b/enhance_table.py index acbebc6..0b30d21 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. @@ -131,6 +134,7 @@ if output_type == 'html': print('') print('') print('') print('') @@ -144,6 +148,9 @@ if output_type == 'html': for date in sorted_dates: print('') print('' % 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 +162,12 @@ if output_type == 'html': if 'week_incidence' in district_data: week_inc = '%.1f' % district_data['week_incidence'] print('') print('') print('
%s') - 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('
') + print('' % (long_wsum, week_sum)) + print('' % (long_wavg, week_avg)) + print('' % (long_winc, week_inc)) + print('
%s%s
%s%s
%s%s
') print('
') @@ -178,10 +185,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)