X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=enhance_table.py;h=25fcd08048705eab18309283ec51d39a5d716a91;hb=8b643b326d04387f4903008cbeab89b3a9a6adb7;hp=d37205ee11220cc828b2e4eb75163a0eb3a2c295;hpb=3314770c7d0362afd2b17ccab7885f3c47ffa03d;p=berlin-corona-table diff --git a/enhance_table.py b/enhance_table.py index d37205e..25fcd08 100755 --- a/enhance_table.py +++ b/enhance_table.py @@ -135,11 +135,10 @@ if output_type == 'html': Berlin's Corona infection numbers, development by districts @@ -148,27 +147,37 @@ table, tr, th, td { border: 1px solid black; text-align: center; }

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() + long_wsum = translate['wsum'] + long_wavg = translate['wavg'] + long_winc = translate['winc'] 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('') 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'] @@ -177,16 +186,12 @@ table, tr, th, td { border: 1px solid black; text-align: center; } if 'week_incidence' in district_data: week_inc = '%.1f' % district_data['week_incidence'] print('') print('') print('
date%s
%s
%s
date%s
%s') + print('') + print('' % long_wsum) + print('' % long_wavg) + print('' % long_winc) + print('
+
Σ
Ø
i
') - 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('
')