X-Git-Url: https://plomlompom.com/repos/feed.xml?a=blobdiff_plain;f=enhance_table.py;h=7da699dfdee9cc1feab083c05113942085aa1d08;hb=707cfa7c1b642936ba94feb1be2d7a071bc0cdcf;hp=6dbee7c1ceff06c04bb683852b751c26b7d616dd;hpb=26542fd87e874aa487752ae92395c68053b8e8b7;p=berlin-corona-table diff --git a/enhance_table.py b/enhance_table.py index 6dbee7c..7da699d 100755 --- a/enhance_table.py +++ b/enhance_table.py @@ -32,7 +32,7 @@ translate = { 'TS': 'Tempelhof-Schöneberg', 'TK': 'Treptow-Köpenick', 'sum': 'all of Berlin', - 'wsum': 'sum for last 7 days', + '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', } @@ -135,12 +135,11 @@ if output_type == 'html': Berlin's Corona infection numbers, development by districts @@ -148,30 +147,35 @@ thead th { position: sticky; top: 0; background-color: white; }

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.

- -""") +""") sorted_dates.reverse() sum_district = sorted_districts[-1] for district in sorted_districts: long_form = translate[district] - if sum_district == district: - print('' % long_form) - else: - # Wrap in div because the vertical orientation otherwise fails - # in Chromium. - 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('') - print('') for date in sorted_dates: print('') print('' % date) - long_wsum = translate['wsum'] - long_wavg = translate['wavg'] - long_winc = translate['winc'] + print('') for district in sorted_districts: district_data = db[district][date] - week_sum = week_avg = week_inc = '(not enough data)' + 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'] @@ -180,16 +184,12 @@ thead th { position: sticky; top: 0; background-color: white; } if 'week_incidence' in district_data: week_inc = '%.1f' % district_data['week_incidence'] print('') print('') print('
date%s
%s
%s
date%s
%s') + print('') + for abbr in ['wsum', 'wavg', 'winc']: + print('' % + (translate[abbr], abbr)) + print('
new
%s
') - print('%s' % new_infections) - if district != sum_district: - print('
') - print('') - print('' % (long_wsum, week_sum)) - print('' % (long_wavg, week_avg)) - print('' % (long_winc, week_inc)) + print('
%s%s
%s%s
%s%s
') + print('' % new_infections) + print('' % week_sum) + print('' % week_avg) + print('' % week_inc) print('
%s
%s
%s
%s
') - if district != sum_district: - print('
') print('
') @@ -209,7 +209,6 @@ 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)