-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,28 @@ | ||
# Hamburg.jl | ||
|
||
A little package that makes various information about Hamburg, Germany available in an easily accessible fashion. | ||
|
||
## Usage | ||
|
||
```julia | ||
using Hamburg | ||
datasets(topic, dataset) | ||
``` | ||
|
||
## Topics | ||
|
||
### covid-19 | ||
|
||
Source: [hamburg.de](https://www.hamburg.de/corona-zahlen) | ||
|
||
#### datasets | ||
|
||
**infected**: Number of people infected by covid-19, recorded since July 27, 2020 | ||
|
||
`datasets("covid-19", "infected")` | ||
|
||
**boroughs**: The number infected, by borough. | ||
|
||
These are aggregated numbers, representing the cases for the last 14 days. This is so that the privacy of individuals can be guaranteed. | ||
|
||
`datasets("covid-19", "boroughs")` |