Hamburg.jl

Some interesting datasets about Hamburg/Germany
Author oem
Popularity
7 Stars
Updated Last
1 Year Ago
Started In
July 2020

Hamburg.jl

A little package that makes various information about Hamburg, Germany available in an easily accessible fashion.

Usage

] add Hamburg
using Hamburg
dataset(topic, dataset)

Topics

covid-19

covid19

sources

Since July 27, 2020:

hamburg.de

Since August 10, the number of hospitalized patients from this source is also being stored.

Before July 27, 2020:

Robert Koch Institut

The number of deaths are not quite matching up between those two datasources, it seems that the RKI is reporting around 30 more people who died through COVID-19.

The numbers reported to the RKI are also delayed by one day, the time of recording has been moved back one day to align with the dates from hamburg.de.

datasets

infected

Number of people infected by covid-19, recorded since July 27, 2020

dataset("covid-19", "infected")

Columns:

  • deaths: Total number of deaths due to COVID-19
  • new: New confirmed cases
  • recordedat: Date of measurement
  • recovered: Number of people recovered (not a precise number since people are not required to report recoveries)
  • total: Total number of confirmed cases
  • hospitalizations: Total number of hospitalized patients (due to covid 19), including the patients in intensive care
  • intensivecare: Number of patients in intensive care due to covid 19
  • first_vaccination: Number of people who received the first shot of the vaccine
  • second_vaccination: Number of people who received the second shot of the vaccine
boroughs

The number infected, by borough.

These are aggregated numbers, representing the cases for the last 7 days. This is so that the privacy of individuals can be guaranteed.

dataset("covid-19", "boroughs")

agegroups

The distribution of age groups among the infected.

dataset("covid-19", "agegroups")

Examples

The dataset is used to show a color-coded dashboard:

covid19 hh dashboard

There is an example notebook that digs a bit deeper into the data and visualizes it.

as CSV

The datasets are also available as csv files, in case you want to use them separately:

infected.csv

boroughs.csv

agegroups.csv

The dataset sources will be checked for updates every day:

DatasetUpdater

holidays

sources

publicholidays.de

datasets

school

dataset("holidays", "school")

Columns:

  • name: Name of the holiday
  • start: Start date
  • end: End date

Contribute?

Yes, absolutely! If you have an interesting dataset, be it favourite ramen places in hamburg, high/low tide times or anything else, go for it. Just make sure that you provide your sources.