├── .eslintrc.json ├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── information ├── RKI_IDs ├── RKI_IDs_sorted └── de.json ├── package.json ├── postcss.config.js ├── snowpack.json ├── src ├── assets │ ├── .htaccess │ ├── Rubik-latin-ext.woff2 │ ├── Rubik-latin.woff2 │ ├── git-branch.svg │ ├── impressum.png │ └── logo-github.svg ├── index.html ├── main.ts ├── map-data │ ├── .htaccess │ ├── berlin-counties.topo.json │ ├── berliner-bezirke.geo.json │ ├── cities-all.json │ ├── cities-kreisfrei.json │ ├── cities-mid-large.json │ ├── county-map.json │ ├── county-map.topo.json │ ├── eu-map.json │ ├── eu-map.topo.json │ ├── state-map.json │ └── state-map.topo.json ├── modules │ ├── charts │ │ ├── chart-options.ts │ │ ├── cumulative-cases-per-day.ts │ │ ├── daily-cases-by-reportday.ts │ │ ├── daily-cases-by-sickday.ts │ │ └── section-nav.ts │ ├── county-list │ │ ├── county-list.ts │ │ └── sorting.ts │ ├── county-selection-persistence.ts │ ├── county-selection.ts │ ├── data-age.ts │ ├── data-loading │ │ ├── data-loaders.ts │ │ ├── index.ts │ │ └── types.d.ts │ ├── helpers.ts │ ├── history-animation │ │ ├── animation.ts │ │ ├── controls.ts │ │ └── date-selection.ts │ ├── map │ │ ├── background.ts │ │ ├── cities.ts │ │ ├── county-information.ts │ │ ├── label-scheme.ts │ │ ├── map-helpers.ts │ │ └── map.ts │ ├── observers.ts │ ├── settings.ts │ └── summed-data │ │ ├── diff-calculation.ts │ │ ├── generic-rendering.ts │ │ └── summed-data.ts └── style.css └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-animal/covid-karte/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | build 3 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-animal/covid-karte/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-animal/covid-karte/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-animal/covid-karte/HEAD/README.md -------------------------------------------------------------------------------- /information/RKI_IDs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-animal/covid-karte/HEAD/information/RKI_IDs -------------------------------------------------------------------------------- /information/RKI_IDs_sorted: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-animal/covid-karte/HEAD/information/RKI_IDs_sorted -------------------------------------------------------------------------------- /information/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-animal/covid-karte/HEAD/information/de.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-animal/covid-karte/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-animal/covid-karte/HEAD/postcss.config.js -------------------------------------------------------------------------------- /snowpack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-animal/covid-karte/HEAD/snowpack.json -------------------------------------------------------------------------------- /src/assets/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-animal/covid-karte/HEAD/src/assets/.htaccess -------------------------------------------------------------------------------- /src/assets/Rubik-latin-ext.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-animal/covid-karte/HEAD/src/assets/Rubik-latin-ext.woff2 -------------------------------------------------------------------------------- /src/assets/Rubik-latin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-animal/covid-karte/HEAD/src/assets/Rubik-latin.woff2 -------------------------------------------------------------------------------- /src/assets/git-branch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-animal/covid-karte/HEAD/src/assets/git-branch.svg -------------------------------------------------------------------------------- /src/assets/impressum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-animal/covid-karte/HEAD/src/assets/impressum.png -------------------------------------------------------------------------------- /src/assets/logo-github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-animal/covid-karte/HEAD/src/assets/logo-github.svg -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-animal/covid-karte/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-animal/covid-karte/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/map-data/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-animal/covid-karte/HEAD/src/map-data/.htaccess -------------------------------------------------------------------------------- /src/map-data/berlin-counties.topo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-animal/covid-karte/HEAD/src/map-data/berlin-counties.topo.json -------------------------------------------------------------------------------- /src/map-data/berliner-bezirke.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-animal/covid-karte/HEAD/src/map-data/berliner-bezirke.geo.json -------------------------------------------------------------------------------- /src/map-data/cities-all.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-animal/covid-karte/HEAD/src/map-data/cities-all.json -------------------------------------------------------------------------------- /src/map-data/cities-kreisfrei.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-animal/covid-karte/HEAD/src/map-data/cities-kreisfrei.json -------------------------------------------------------------------------------- /src/map-data/cities-mid-large.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-animal/covid-karte/HEAD/src/map-data/cities-mid-large.json -------------------------------------------------------------------------------- /src/map-data/county-map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-animal/covid-karte/HEAD/src/map-data/county-map.json -------------------------------------------------------------------------------- /src/map-data/county-map.topo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-animal/covid-karte/HEAD/src/map-data/county-map.topo.json -------------------------------------------------------------------------------- /src/map-data/eu-map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-animal/covid-karte/HEAD/src/map-data/eu-map.json -------------------------------------------------------------------------------- /src/map-data/eu-map.topo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-animal/covid-karte/HEAD/src/map-data/eu-map.topo.json -------------------------------------------------------------------------------- /src/map-data/state-map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-animal/covid-karte/HEAD/src/map-data/state-map.json -------------------------------------------------------------------------------- /src/map-data/state-map.topo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-animal/covid-karte/HEAD/src/map-data/state-map.topo.json -------------------------------------------------------------------------------- /src/modules/charts/chart-options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-animal/covid-karte/HEAD/src/modules/charts/chart-options.ts -------------------------------------------------------------------------------- /src/modules/charts/cumulative-cases-per-day.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-animal/covid-karte/HEAD/src/modules/charts/cumulative-cases-per-day.ts -------------------------------------------------------------------------------- /src/modules/charts/daily-cases-by-reportday.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-animal/covid-karte/HEAD/src/modules/charts/daily-cases-by-reportday.ts -------------------------------------------------------------------------------- /src/modules/charts/daily-cases-by-sickday.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-animal/covid-karte/HEAD/src/modules/charts/daily-cases-by-sickday.ts -------------------------------------------------------------------------------- /src/modules/charts/section-nav.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-animal/covid-karte/HEAD/src/modules/charts/section-nav.ts -------------------------------------------------------------------------------- /src/modules/county-list/county-list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-animal/covid-karte/HEAD/src/modules/county-list/county-list.ts -------------------------------------------------------------------------------- /src/modules/county-list/sorting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-animal/covid-karte/HEAD/src/modules/county-list/sorting.ts -------------------------------------------------------------------------------- /src/modules/county-selection-persistence.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-animal/covid-karte/HEAD/src/modules/county-selection-persistence.ts -------------------------------------------------------------------------------- /src/modules/county-selection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-animal/covid-karte/HEAD/src/modules/county-selection.ts -------------------------------------------------------------------------------- /src/modules/data-age.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-animal/covid-karte/HEAD/src/modules/data-age.ts -------------------------------------------------------------------------------- /src/modules/data-loading/data-loaders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-animal/covid-karte/HEAD/src/modules/data-loading/data-loaders.ts -------------------------------------------------------------------------------- /src/modules/data-loading/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-animal/covid-karte/HEAD/src/modules/data-loading/index.ts -------------------------------------------------------------------------------- /src/modules/data-loading/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-animal/covid-karte/HEAD/src/modules/data-loading/types.d.ts -------------------------------------------------------------------------------- /src/modules/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-animal/covid-karte/HEAD/src/modules/helpers.ts -------------------------------------------------------------------------------- /src/modules/history-animation/animation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-animal/covid-karte/HEAD/src/modules/history-animation/animation.ts -------------------------------------------------------------------------------- /src/modules/history-animation/controls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-animal/covid-karte/HEAD/src/modules/history-animation/controls.ts -------------------------------------------------------------------------------- /src/modules/history-animation/date-selection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-animal/covid-karte/HEAD/src/modules/history-animation/date-selection.ts -------------------------------------------------------------------------------- /src/modules/map/background.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-animal/covid-karte/HEAD/src/modules/map/background.ts -------------------------------------------------------------------------------- /src/modules/map/cities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-animal/covid-karte/HEAD/src/modules/map/cities.ts -------------------------------------------------------------------------------- /src/modules/map/county-information.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-animal/covid-karte/HEAD/src/modules/map/county-information.ts -------------------------------------------------------------------------------- /src/modules/map/label-scheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-animal/covid-karte/HEAD/src/modules/map/label-scheme.ts -------------------------------------------------------------------------------- /src/modules/map/map-helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-animal/covid-karte/HEAD/src/modules/map/map-helpers.ts -------------------------------------------------------------------------------- /src/modules/map/map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-animal/covid-karte/HEAD/src/modules/map/map.ts -------------------------------------------------------------------------------- /src/modules/observers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-animal/covid-karte/HEAD/src/modules/observers.ts -------------------------------------------------------------------------------- /src/modules/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-animal/covid-karte/HEAD/src/modules/settings.ts -------------------------------------------------------------------------------- /src/modules/summed-data/diff-calculation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-animal/covid-karte/HEAD/src/modules/summed-data/diff-calculation.ts -------------------------------------------------------------------------------- /src/modules/summed-data/generic-rendering.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-animal/covid-karte/HEAD/src/modules/summed-data/generic-rendering.ts -------------------------------------------------------------------------------- /src/modules/summed-data/summed-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-animal/covid-karte/HEAD/src/modules/summed-data/summed-data.ts -------------------------------------------------------------------------------- /src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-animal/covid-karte/HEAD/src/style.css -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t-animal/covid-karte/HEAD/tsconfig.json --------------------------------------------------------------------------------