X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=enhance_table.py;h=7da699dfdee9cc1feab083c05113942085aa1d08;hb=707cfa7c1b642936ba94feb1be2d7a071bc0cdcf;hp=acbebc6b950905cab22a247a42010b69a15c166a;hpb=5ece867536877574b33064933504740484e08797;p=berlin-corona-table diff --git a/enhance_table.py b/enhance_table.py index acbebc6..7da699d 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 of new infections 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. @@ -128,25 +131,51 @@ for i in range(len(sorted_dates)): # Optimized for web browser viewing. if output_type == 'html': - print('') - print('') - print('') - print('') - print('') + print(""" + + + +Berlin's Corona infection numbers, development by districts + +home · contact · privacy +

Berlin's Corona infection numbers, development by districts

+

Updated daily at 9pm based on data from the "Senatsverwaltung für Gesundheit, Pflege und Gleichstellung". Source code. Text view optimized for terminal curl.

+
date
+ +""") + sorted_dates.reverse() + sum_district = sorted_districts[-1] for district in sorted_districts: long_form = translate[district] - print('' % long_form) + # Wrap in div because the vertical orientation otherwise fails + # in Chromium. + print('' % long_form) + print('') + print('') + # In Chromium, the th only stay fixed if also given this class. + print('') + print('') + for district in sorted_districts: + print('' % district) print('') - sorted_dates.reverse() for date in sorted_dates: - print('') + print('') print('' % date) + print('') for district in sorted_districts: district_data = db[district][date] - week_sum = week_avg = week_inc = '' + week_sum = week_avg = week_inc = '?' new_infections = district_data['new_infections'] if 'week_sum' in district_data: week_sum = '%s' % district_data['week_sum'] @@ -156,10 +185,10 @@ if output_type == 'html': week_inc = '%.1f' % district_data['week_incidence'] print('') print('') @@ -172,17 +201,15 @@ 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 based on data from the "Senatsverwaltung für Gesundheit, Pflege und Gleichstellung". 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 +HTML view: https://plomlompom.com/berlin_corona.html """ print(intro)
%s
%s
date%s
%s') + print('') + for abbr in ['wsum', 'wavg', 'winc']: + print('' % + (translate[abbr], abbr)) + print('
new
%s
') print('') - print('' % new_infections) - print('' % week_sum) - print('' % week_avg) - print('' % week_inc) + print('' % new_infections) + print('' % week_sum) + print('' % week_avg) + print('' % week_inc) print('
new%s
wsum%s
wavg%s
winc%s
%s
%s
%s
%s
') print('