├── .github └── workflows │ ├── main.yml │ └── manual.yml ├── CNAME ├── LICENSE ├── README.md ├── assets ├── css │ ├── bootstrap │ │ ├── bootstrap-grid.css │ │ ├── bootstrap-grid.css.map │ │ ├── bootstrap-grid.min.css │ │ ├── bootstrap-grid.min.css.map │ │ ├── bootstrap-reboot.css │ │ ├── bootstrap-reboot.css.map │ │ ├── bootstrap-reboot.min.css │ │ ├── bootstrap-reboot.min.css.map │ │ ├── bootstrap-utilities.css │ │ ├── bootstrap-utilities.css.map │ │ ├── bootstrap-utilities.min.css │ │ ├── bootstrap-utilities.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ └── main.css ├── data │ ├── array_index.json │ ├── data_latest.csv │ ├── data_latest.json │ ├── landkreise_edited.geojson │ ├── landkreise_simplify200_old.geojson │ ├── minified_landkreise.geo.json │ ├── minified_landkreise.geo.json.qmd │ ├── population_landkreise.json │ ├── population_landkreise_altersgruppen.csv │ ├── population_rki_age_groups.csv │ ├── timeseries.hdf5 │ └── timeseries_nd.hdf5 ├── img │ ├── example.png │ ├── minus.png │ └── plus.png ├── js │ ├── bootstrap │ │ ├── bootstrap.bundle.js │ │ ├── bootstrap.bundle.js.map │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.min.js.map │ │ ├── bootstrap.esm.js │ │ ├── bootstrap.esm.js.map │ │ ├── bootstrap.esm.min.js │ │ ├── bootstrap.esm.min.js.map │ │ ├── bootstrap.js │ │ ├── bootstrap.js.map │ │ ├── bootstrap.min.js │ │ └── bootstrap.min.js.map │ ├── d3-interpolate-path.min.js │ ├── hdf5.js │ ├── main.js │ └── utils.js └── python │ ├── IFR_CFR_vs_cases.py │ ├── create_mini_geojson.py │ ├── requirements.txt │ ├── timeseries_data.py │ └── update_data.py ├── index.html └── legacy.html /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semohr/risikogebiete_deutschland/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/manual.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semohr/risikogebiete_deutschland/HEAD/.github/workflows/manual.yml -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | risikogebiete-deutschland.de -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semohr/risikogebiete_deutschland/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semohr/risikogebiete_deutschland/HEAD/README.md -------------------------------------------------------------------------------- /assets/css/bootstrap/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semohr/risikogebiete_deutschland/HEAD/assets/css/bootstrap/bootstrap-grid.css -------------------------------------------------------------------------------- /assets/css/bootstrap/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semohr/risikogebiete_deutschland/HEAD/assets/css/bootstrap/bootstrap-grid.css.map -------------------------------------------------------------------------------- /assets/css/bootstrap/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semohr/risikogebiete_deutschland/HEAD/assets/css/bootstrap/bootstrap-grid.min.css -------------------------------------------------------------------------------- /assets/css/bootstrap/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semohr/risikogebiete_deutschland/HEAD/assets/css/bootstrap/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /assets/css/bootstrap/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semohr/risikogebiete_deutschland/HEAD/assets/css/bootstrap/bootstrap-reboot.css -------------------------------------------------------------------------------- /assets/css/bootstrap/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semohr/risikogebiete_deutschland/HEAD/assets/css/bootstrap/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /assets/css/bootstrap/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semohr/risikogebiete_deutschland/HEAD/assets/css/bootstrap/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /assets/css/bootstrap/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semohr/risikogebiete_deutschland/HEAD/assets/css/bootstrap/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /assets/css/bootstrap/bootstrap-utilities.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semohr/risikogebiete_deutschland/HEAD/assets/css/bootstrap/bootstrap-utilities.css -------------------------------------------------------------------------------- /assets/css/bootstrap/bootstrap-utilities.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semohr/risikogebiete_deutschland/HEAD/assets/css/bootstrap/bootstrap-utilities.css.map -------------------------------------------------------------------------------- /assets/css/bootstrap/bootstrap-utilities.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semohr/risikogebiete_deutschland/HEAD/assets/css/bootstrap/bootstrap-utilities.min.css -------------------------------------------------------------------------------- /assets/css/bootstrap/bootstrap-utilities.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semohr/risikogebiete_deutschland/HEAD/assets/css/bootstrap/bootstrap-utilities.min.css.map -------------------------------------------------------------------------------- /assets/css/bootstrap/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semohr/risikogebiete_deutschland/HEAD/assets/css/bootstrap/bootstrap.css -------------------------------------------------------------------------------- /assets/css/bootstrap/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semohr/risikogebiete_deutschland/HEAD/assets/css/bootstrap/bootstrap.css.map -------------------------------------------------------------------------------- /assets/css/bootstrap/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semohr/risikogebiete_deutschland/HEAD/assets/css/bootstrap/bootstrap.min.css -------------------------------------------------------------------------------- /assets/css/bootstrap/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semohr/risikogebiete_deutschland/HEAD/assets/css/bootstrap/bootstrap.min.css.map -------------------------------------------------------------------------------- /assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semohr/risikogebiete_deutschland/HEAD/assets/css/main.css -------------------------------------------------------------------------------- /assets/data/array_index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semohr/risikogebiete_deutschland/HEAD/assets/data/array_index.json -------------------------------------------------------------------------------- /assets/data/data_latest.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semohr/risikogebiete_deutschland/HEAD/assets/data/data_latest.csv -------------------------------------------------------------------------------- /assets/data/data_latest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semohr/risikogebiete_deutschland/HEAD/assets/data/data_latest.json -------------------------------------------------------------------------------- /assets/data/landkreise_edited.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semohr/risikogebiete_deutschland/HEAD/assets/data/landkreise_edited.geojson -------------------------------------------------------------------------------- /assets/data/landkreise_simplify200_old.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semohr/risikogebiete_deutschland/HEAD/assets/data/landkreise_simplify200_old.geojson -------------------------------------------------------------------------------- /assets/data/minified_landkreise.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semohr/risikogebiete_deutschland/HEAD/assets/data/minified_landkreise.geo.json -------------------------------------------------------------------------------- /assets/data/minified_landkreise.geo.json.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semohr/risikogebiete_deutschland/HEAD/assets/data/minified_landkreise.geo.json.qmd -------------------------------------------------------------------------------- /assets/data/population_landkreise.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semohr/risikogebiete_deutschland/HEAD/assets/data/population_landkreise.json -------------------------------------------------------------------------------- /assets/data/population_landkreise_altersgruppen.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semohr/risikogebiete_deutschland/HEAD/assets/data/population_landkreise_altersgruppen.csv -------------------------------------------------------------------------------- /assets/data/population_rki_age_groups.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semohr/risikogebiete_deutschland/HEAD/assets/data/population_rki_age_groups.csv -------------------------------------------------------------------------------- /assets/data/timeseries.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semohr/risikogebiete_deutschland/HEAD/assets/data/timeseries.hdf5 -------------------------------------------------------------------------------- /assets/data/timeseries_nd.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semohr/risikogebiete_deutschland/HEAD/assets/data/timeseries_nd.hdf5 -------------------------------------------------------------------------------- /assets/img/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semohr/risikogebiete_deutschland/HEAD/assets/img/example.png -------------------------------------------------------------------------------- /assets/img/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semohr/risikogebiete_deutschland/HEAD/assets/img/minus.png -------------------------------------------------------------------------------- /assets/img/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semohr/risikogebiete_deutschland/HEAD/assets/img/plus.png -------------------------------------------------------------------------------- /assets/js/bootstrap/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semohr/risikogebiete_deutschland/HEAD/assets/js/bootstrap/bootstrap.bundle.js -------------------------------------------------------------------------------- /assets/js/bootstrap/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semohr/risikogebiete_deutschland/HEAD/assets/js/bootstrap/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /assets/js/bootstrap/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semohr/risikogebiete_deutschland/HEAD/assets/js/bootstrap/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /assets/js/bootstrap/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semohr/risikogebiete_deutschland/HEAD/assets/js/bootstrap/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /assets/js/bootstrap/bootstrap.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semohr/risikogebiete_deutschland/HEAD/assets/js/bootstrap/bootstrap.esm.js -------------------------------------------------------------------------------- /assets/js/bootstrap/bootstrap.esm.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semohr/risikogebiete_deutschland/HEAD/assets/js/bootstrap/bootstrap.esm.js.map -------------------------------------------------------------------------------- /assets/js/bootstrap/bootstrap.esm.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semohr/risikogebiete_deutschland/HEAD/assets/js/bootstrap/bootstrap.esm.min.js -------------------------------------------------------------------------------- /assets/js/bootstrap/bootstrap.esm.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semohr/risikogebiete_deutschland/HEAD/assets/js/bootstrap/bootstrap.esm.min.js.map -------------------------------------------------------------------------------- /assets/js/bootstrap/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semohr/risikogebiete_deutschland/HEAD/assets/js/bootstrap/bootstrap.js -------------------------------------------------------------------------------- /assets/js/bootstrap/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semohr/risikogebiete_deutschland/HEAD/assets/js/bootstrap/bootstrap.js.map -------------------------------------------------------------------------------- /assets/js/bootstrap/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semohr/risikogebiete_deutschland/HEAD/assets/js/bootstrap/bootstrap.min.js -------------------------------------------------------------------------------- /assets/js/bootstrap/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semohr/risikogebiete_deutschland/HEAD/assets/js/bootstrap/bootstrap.min.js.map -------------------------------------------------------------------------------- /assets/js/d3-interpolate-path.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semohr/risikogebiete_deutschland/HEAD/assets/js/d3-interpolate-path.min.js -------------------------------------------------------------------------------- /assets/js/hdf5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semohr/risikogebiete_deutschland/HEAD/assets/js/hdf5.js -------------------------------------------------------------------------------- /assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semohr/risikogebiete_deutschland/HEAD/assets/js/main.js -------------------------------------------------------------------------------- /assets/js/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semohr/risikogebiete_deutschland/HEAD/assets/js/utils.js -------------------------------------------------------------------------------- /assets/python/IFR_CFR_vs_cases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semohr/risikogebiete_deutschland/HEAD/assets/python/IFR_CFR_vs_cases.py -------------------------------------------------------------------------------- /assets/python/create_mini_geojson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semohr/risikogebiete_deutschland/HEAD/assets/python/create_mini_geojson.py -------------------------------------------------------------------------------- /assets/python/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semohr/risikogebiete_deutschland/HEAD/assets/python/requirements.txt -------------------------------------------------------------------------------- /assets/python/timeseries_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semohr/risikogebiete_deutschland/HEAD/assets/python/timeseries_data.py -------------------------------------------------------------------------------- /assets/python/update_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semohr/risikogebiete_deutschland/HEAD/assets/python/update_data.py -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semohr/risikogebiete_deutschland/HEAD/index.html -------------------------------------------------------------------------------- /legacy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semohr/risikogebiete_deutschland/HEAD/legacy.html --------------------------------------------------------------------------------