Skip to content

Commit

Permalink
update DIVI data
Browse files Browse the repository at this point in the history
  • Loading branch information
frievoe97 committed Sep 14, 2023
1 parent 3a0a17e commit cee80b9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions scripts/build-site.sh
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ echo BUILD: Process DIVI Cases

cd Fallzahlen/DIVI

export SRC="https://diviexchange.blob.core.windows.net/%24web/zeitreihe-tagesdaten.csv"
export SRC="https://github.com/robert-koch-institut/Intensivkapazitaeten_und_COVID-19-Intensivbettenbelegung_in_Deutschland/blob/0b98fce502cadcdab724abc456e80c02ba258c0a/Intensivregister_Landkreise_Kapazitaeten.csv"
# export SRC="https://diviexchange.blob.core.windows.net/%24web/zeitreihe-tagesdaten.csv"
export SRC="https://raw.githubusercontent.com/robert-koch-institut/Intensivkapazitaeten_und_COVID-19-Intensivbettenbelegung_in_Deutschland/0b98fce502cadcdab724abc456e80c02ba258c0a/Intensivregister_Landkreise_Kapazitaeten.csv"
export OUT="zeitreihe-tagesdaten.csv"
wget -qO - ${SRC} > $OUT

Expand Down
2 changes: 1 addition & 1 deletion src/views/v2/V2RunViewer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2147,7 +2147,7 @@ export default class VueComponent extends Vue {
// pull the cases field out of the CSV
for (const datapoint of data) {
try {
const day = datapoint.date
const day = datapoint.datum
if (datapoint.faelle_covid_aktuell) {
dates.push(day)
cases.push(datapoint.faelle_covid_aktuell)
Expand Down

0 comments on commit cee80b9

Please sign in to comment.