X-Git-Url: https://plomlompom.com/repos/?p=berlin-corona-table;a=blobdiff_plain;f=enhance_table.py;h=4ce77925c91c985d1bfb177cb0d7ac5694d2d690;hp=02a7ac9b30b8cd0375a79a49468e2dc5c19e3d77;hb=f91a74c7aa31a742e50629e4e57736cf5192320d;hpb=a3d2a6533cb6aee29c48c8e1e08e4981c0c8829b diff --git a/enhance_table.py b/enhance_table.py index 02a7ac9..4ce7792 100755 --- a/enhance_table.py +++ b/enhance_table.py @@ -17,6 +17,26 @@ district_pops = { 'sum': 3754418, } +# Map abbreviations to full names. +translate = { + 'CW': 'Charlottenburg-Wilmersdorf', + 'FK': 'Friedrichshain-Kreuzberg', + 'Li': 'Lichtenberg', + 'MH': 'Marzahn-Hellersdorf', + 'Mi': 'Mitte', + 'Ne': 'Neukölln', + 'Pa': 'Pankow', + 'Re': 'Reinickendorf', + 'Sp': 'Spandau', + 'SZ': 'Steglitz-Zehlendorf', + '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. import sys if len(sys.argv) != 3: @@ -74,6 +94,10 @@ for line in lines[1:]: db[district][date] = {'new_infections': int(district_data)} sorted_dates.sort() +# Define and move sum_district from end to start. +sum_district = sorted_districts.pop() +sorted_districts.insert(0, sum_district) + # In LaGeSo's data, the last "district" is actually the sum of all districts / # the whole of Berlin. # @@ -83,9 +107,8 @@ sorted_dates.sort() # the table file, since we should have a human look at what mistake was # probably made. for date in sorted_dates: - sum_district = sorted_districts[-1] day_sum = 0 - for district in sorted_districts[:-1]: + for district in [d for d in sorted_districts if not d==sum_district]: day_sum += db[district][date]['new_infections'] if day_sum != db[sum_district][date]['new_infections']: raise Exception('Questionable district infection sum in %s' % date) @@ -111,23 +134,50 @@ 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() for district in sorted_districts: - print('' % district) + long_form = translate[district] + # 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'] @@ -137,10 +187,10 @@ if output_type == 'html': week_inc = '%.1f' % district_data['week_incidence'] print('') print('') @@ -153,28 +203,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: - -CW: Charlottenburg-Wilmersdorf -FK: Friedrichshain-Kreuzberg -Li: Lichtenberg -MH: Marzahn-Hellersdorf -Mi: Mitte -Ne: Neukölln -Pa: Pankow -Re: Reinickendorf -Sp: Spandau -SZ: Steglitz-Zehlendorf -TS: Tempelhof-Schöneberg -TK: Treptow-Köpenick -sum: sum for all the districts -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 - +""" + for k in translate: + 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) @@ -182,7 +219,6 @@ Source code: https://plomlompom.com/repos/?p=berlin-corona-table # separated into 7-day units. sorted_dates.reverse() weekday_count = 0 - sum_district = sorted_districts[-1] for date in sorted_dates: # Week table header.
%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('