├── .env.example ├── .gitattributes ├── .gitignore ├── .gitlab-ci.yml ├── .gitmodules ├── .husky └── pre-commit ├── Backend ├── .dockerignore ├── .gitignore ├── Dockerfile ├── README.md ├── cache.py ├── db.py ├── gunicorn.conf.py ├── loadenv.py ├── migrate-and-start.sh ├── migrations │ ├── alembic.ini │ ├── alembic │ │ ├── README │ │ ├── env.py │ │ ├── loadenv.py │ │ ├── script.py.mako │ │ └── versions │ │ │ ├── 00a7bf4dae6c_create_germany_materialized_view.py │ │ │ ├── 1656532dd2a4_create_vg250_rbz_table.py │ │ │ ├── 296c837aaf67_create_survstat_table.py │ │ │ ├── 2ea7edb628ac_create_cases_lk_risklayer_table.py │ │ │ ├── 305475aa6432_create_filled_hospital_timeseries_with_.py │ │ │ ├── 30bea01e7bac_create_cases_per_county_and_day_.py │ │ │ ├── 347eb1c14bd2_create_email_subs_counties_table.py │ │ │ ├── 3610493d8979_create_cases_table.py │ │ │ ├── 3d9efa9b90ca_create_landkreise_extended_materialized_.py │ │ │ ├── 4fcda072e8c6_create_bed_capacity2landkreise_extended_.py │ │ │ ├── 50cd32ec9ca7_create_email_subs_table.py │ │ │ ├── 56a467c77bd8_create_divi_krankenhaus_standorte_table.py │ │ │ ├── 59ad7ea918b6_add_survstat_berlin_hack_view.py │ │ │ ├── 5cf8d4366856_create_divi_meldungen_table.py │ │ │ ├── 7066fb8c8990_create_regierungsbezirke_materialized_.py │ │ │ ├── 7347754aab0f_create_vg250_krs_table.py │ │ │ ├── 757ac6b4af83_create_bevoelkerung_table.py │ │ │ ├── 8175af65a5b9_create_bundeslaender_materialized_view.py │ │ │ ├── 86ec65c533a4_add_survstat_population_data.py │ │ │ ├── 91aca0bccf3f_create_population_rki_agegroup_table.py │ │ │ ├── 91c9d723d958_add_population_survstat_agegroups.py │ │ │ ├── a3a5ae77b6b9_add_columns_to_divi_meldungen.py │ │ │ ├── a9ca657b90f5_create_cases_per_county_and_day_.py │ │ │ ├── b84312f6532e_create_cases_current_view.py │ │ │ ├── bbaf5488b4fe_update_mv_cases_per_county_and_day.py │ │ │ ├── c34d4cef2dad_create_risklayer_prognosis_table.py │ │ │ ├── cea34abda294_add_rki_agegroup2_table.py │ │ │ ├── d5d392162842_fix_filled_hospital_timeseries_with_fix_.py │ │ │ ├── e34b11198249_create_vg250_lan_table.py │ │ │ ├── f5e4ee3634b1_create_helipads_table.py │ │ │ ├── f8791d49d830_create_bed_capacity_table.py │ │ │ └── f96132b7a0d1_update_materialized_view_cases_per_.py │ └── main.py ├── models │ ├── __init__.py │ ├── caseDevelopments.py │ ├── cases.py │ ├── counties.py │ ├── crawl.py │ ├── dashboard.py │ ├── divi.py │ ├── email_subs.py │ ├── hospital.py │ ├── icuDevelopments.py │ └── risklayerPrognosis.py ├── prometheus.py ├── requirements.txt ├── server.py ├── services │ ├── crypt_service.py │ ├── hash_service.py │ ├── mail_service.py │ └── token_service.py ├── static │ └── empty ├── templates │ └── mail │ │ ├── county_notification_de.html │ │ ├── county_notification_de.txt │ │ ├── county_notification_en.html │ │ ├── county_notification_en.txt │ │ ├── email_verification.html │ │ └── email_verification.txt ├── testing.http ├── tests │ ├── __init__.py │ ├── base_case.py │ └── test_prognosis.py ├── timer.py ├── views │ ├── __init__.py │ ├── cases.py │ ├── cases_risklayer.py │ ├── counties.py │ ├── dashboards.py │ ├── divi.py │ ├── ebrake.py │ ├── email_subs.py │ ├── extent.py │ ├── health.py │ ├── helpers.py │ ├── hospitals.py │ ├── osm.py │ ├── regions.py │ └── version.py └── wait_db_rdy.py ├── Crawler ├── .gitignore ├── Dockerfile ├── README.md ├── crawl_divi_private.py ├── crawl_divi_public.py ├── crawl_risklayer_lk.py ├── crawl_rki_bed_capacity.py ├── crawl_rki_cases.py ├── crawl_rki_incidences.py ├── crawl_survstat_agegroups.py ├── crawler_rki_dashboard.py ├── db.py ├── db_config.py ├── decommisioned │ ├── crawl_divi_data.py │ └── crawl_rki_bed_capacity_oldimport_once.py ├── divi_private.schema.json ├── divi_public.schema.json ├── loadenv.py ├── requirements.txt ├── rki_bed_capacity.schema.json ├── rki_cases.schema.json └── utils.py ├── Database ├── Dockerfile ├── initdb │ └── 01_initdb-postgis.sh └── update-postgis.sh ├── Frontend ├── .editorconfig ├── .gitignore ├── Dockerfile ├── code-quality-env.sh ├── contributing.md ├── gis │ ├── .babelrc │ ├── .editorconfig │ ├── .eslintrc.json │ ├── .gitignore │ ├── README.md │ ├── angular.json │ ├── e2e │ │ ├── protractor.conf.js │ │ ├── src │ │ │ ├── app.e2e-spec.ts │ │ │ └── app.po.ts │ │ └── tsconfig.json │ ├── karma.conf.js │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── app │ │ │ ├── about │ │ │ │ ├── about.component.html │ │ │ │ ├── about.component.less │ │ │ │ └── about.component.ts │ │ │ ├── app-routing.module.ts │ │ │ ├── app.component.html │ │ │ ├── app.component.less │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ ├── bed-tooltip │ │ │ │ ├── bed-tooltip.component.html │ │ │ │ ├── bed-tooltip.component.less │ │ │ │ └── bed-tooltip.component.ts │ │ │ ├── button-panel │ │ │ │ ├── button-panel.component.html │ │ │ │ ├── button-panel.component.less │ │ │ │ └── button-panel.component.ts │ │ │ ├── cases-dod │ │ │ │ ├── case-dialog │ │ │ │ │ ├── case-dialog.component.html │ │ │ │ │ ├── case-dialog.component.less │ │ │ │ │ └── case-dialog.component.ts │ │ │ │ ├── case-info │ │ │ │ │ ├── case-info.component.html │ │ │ │ │ ├── case-info.component.less │ │ │ │ │ └── case-info.component.ts │ │ │ │ ├── case-line-chart │ │ │ │ │ ├── case-line-chart.component.html │ │ │ │ │ ├── case-line-chart.component.less │ │ │ │ │ └── case-line-chart.component.ts │ │ │ │ ├── case-tooltip │ │ │ │ │ ├── case-tooltip.component.html │ │ │ │ │ ├── case-tooltip.component.less │ │ │ │ │ └── case-tooltip.component.ts │ │ │ │ ├── cases-dod.module.ts │ │ │ │ └── covid-chart-options.ts │ │ │ ├── decorators │ │ │ │ └── cache.decorator.ts │ │ │ ├── gdpr │ │ │ │ ├── gdpr.component.html │ │ │ │ ├── gdpr.component.less │ │ │ │ └── gdpr.component.ts │ │ │ ├── glyph-tooltip │ │ │ │ ├── glyph-tooltip.component.html │ │ │ │ ├── glyph-tooltip.component.less │ │ │ │ └── glyph-tooltip.component.ts │ │ │ ├── help │ │ │ │ ├── help-dialog-beds │ │ │ │ │ ├── help-dialog-beds.component.html │ │ │ │ │ ├── help-dialog-beds.component.less │ │ │ │ │ └── help-dialog-beds.component.ts │ │ │ │ ├── help-dialog-cases │ │ │ │ │ ├── help-dialog-cases.component.html │ │ │ │ │ ├── help-dialog-cases.component.less │ │ │ │ │ └── help-dialog-cases.component.ts │ │ │ │ ├── help-dialog-live-view │ │ │ │ │ ├── help-dialog-live-view.component.html │ │ │ │ │ ├── help-dialog-live-view.component.less │ │ │ │ │ └── help-dialog-live-view.component.ts │ │ │ │ ├── help-dialog-theproject │ │ │ │ │ ├── help-dialog-theproject.component.html │ │ │ │ │ ├── help-dialog-theproject.component.less │ │ │ │ │ └── help-dialog-theproject.component.ts │ │ │ │ ├── help-dialog │ │ │ │ │ ├── help-dialog.component.html │ │ │ │ │ ├── help-dialog.component.less │ │ │ │ │ └── help-dialog.component.ts │ │ │ │ └── help.module.ts │ │ │ ├── hospital-info-dialog │ │ │ │ ├── hospital-info-dialog.component.html │ │ │ │ ├── hospital-info-dialog.component.less │ │ │ │ └── hospital-info-dialog.component.ts │ │ │ ├── hospital-info │ │ │ │ ├── hospital-info.component.html │ │ │ │ ├── hospital-info.component.less │ │ │ │ └── hospital-info.component.ts │ │ │ ├── impressum │ │ │ │ ├── impressum.component.html │ │ │ │ ├── impressum.component.less │ │ │ │ └── impressum.component.ts │ │ │ ├── infobox │ │ │ │ ├── infobox.component.html │ │ │ │ ├── infobox.component.less │ │ │ │ └── infobox.component.ts │ │ │ ├── legend │ │ │ │ ├── legend.component.html │ │ │ │ ├── legend.component.less │ │ │ │ └── legend.component.ts │ │ │ ├── map-root │ │ │ │ ├── map-root.component.html │ │ │ │ ├── map-root.component.less │ │ │ │ └── map-root.component.ts │ │ │ ├── map │ │ │ │ ├── events │ │ │ │ │ └── fly-to.ts │ │ │ │ ├── map.component.html │ │ │ │ ├── map.component.less │ │ │ │ ├── map.component.ts │ │ │ │ ├── options │ │ │ │ │ ├── aggregation-level.enum.ts │ │ │ │ │ ├── bed-background-options.ts │ │ │ │ │ ├── bed-glyph-options.ts │ │ │ │ │ ├── bed-type.enum.ts │ │ │ │ │ ├── covid-number-case-options.ts │ │ │ │ │ ├── map-location-settings.ts │ │ │ │ │ └── map-options.ts │ │ │ │ └── overlays │ │ │ │ │ ├── GlyphLayer.ts │ │ │ │ │ ├── abstract-glyph-canvas.layer.ts │ │ │ │ │ ├── aggregated-glyph-canvas.layer.ts │ │ │ │ │ ├── bedstatuschoropleth.ts │ │ │ │ │ ├── case-trend-canvas.layer.ts │ │ │ │ │ ├── casechoropleth.ts │ │ │ │ │ ├── helipads.ts │ │ │ │ │ ├── hospital.ts │ │ │ │ │ ├── label-canvas.layer.ts │ │ │ │ │ ├── landkreishospitals.ts │ │ │ │ │ ├── overlay.ts │ │ │ │ │ └── single-glyph-canvas.layer.ts │ │ │ ├── osm-tooltip │ │ │ │ ├── osm-tooltip.component.html │ │ │ │ ├── osm-tooltip.component.less │ │ │ │ └── osm-tooltip.component.ts │ │ │ ├── overlay-brand │ │ │ │ ├── overlay-brand.component.html │ │ │ │ ├── overlay-brand.component.less │ │ │ │ └── overlay-brand.component.ts │ │ │ ├── overview │ │ │ │ ├── d3-choropleth-map │ │ │ │ │ ├── d3-choropleth-map.component.less │ │ │ │ │ └── d3-choropleth-map.component.ts │ │ │ │ ├── dashboard │ │ │ │ │ ├── dashboard.module.ts │ │ │ │ │ ├── dashboard │ │ │ │ │ │ ├── dashboard.component.html │ │ │ │ │ │ ├── dashboard.component.less │ │ │ │ │ │ └── dashboard.component.ts │ │ │ │ │ ├── dashboards-overview │ │ │ │ │ │ ├── dashboards-overview.component.html │ │ │ │ │ │ ├── dashboards-overview.component.less │ │ │ │ │ │ └── dashboards-overview.component.ts │ │ │ │ │ ├── dashboards-table │ │ │ │ │ │ ├── dashboards-table.component.html │ │ │ │ │ │ ├── dashboards-table.component.less │ │ │ │ │ │ └── dashboards-table.component.ts │ │ │ │ │ ├── multi-line-chart │ │ │ │ │ │ ├── multi-line-chart.component.html │ │ │ │ │ │ ├── multi-line-chart.component.less │ │ │ │ │ │ └── multi-line-chart.component.ts │ │ │ │ │ ├── settings │ │ │ │ │ │ ├── settings.component.html │ │ │ │ │ │ ├── settings.component.less │ │ │ │ │ │ └── settings.component.ts │ │ │ │ │ └── title-edit-dialog │ │ │ │ │ │ ├── title-edit-dialog.component.html │ │ │ │ │ │ ├── title-edit-dialog.component.less │ │ │ │ │ │ └── title-edit-dialog.component.ts │ │ │ │ ├── ebrake │ │ │ │ │ ├── ebrake-share-dialog │ │ │ │ │ │ ├── ebrake-share-dialog.component.html │ │ │ │ │ │ ├── ebrake-share-dialog.component.less │ │ │ │ │ │ └── ebrake-share-dialog.component.ts │ │ │ │ │ ├── ebrake-tooltip │ │ │ │ │ │ ├── ebrake-tooltip.component.html │ │ │ │ │ │ ├── ebrake-tooltip.component.less │ │ │ │ │ │ └── ebrake-tooltip.component.ts │ │ │ │ │ ├── ebrake.module.ts │ │ │ │ │ ├── temporal-overview-chart │ │ │ │ │ │ ├── temporal-overview-chart.component.html │ │ │ │ │ │ ├── temporal-overview-chart.component.less │ │ │ │ │ │ └── temporal-overview-chart.component.ts │ │ │ │ │ └── temporal-overview │ │ │ │ │ │ ├── temporal-overview.component.html │ │ │ │ │ │ ├── temporal-overview.component.less │ │ │ │ │ │ └── temporal-overview.component.ts │ │ │ │ ├── overview-bed │ │ │ │ │ ├── overview-bed.component.html │ │ │ │ │ ├── overview-bed.component.less │ │ │ │ │ └── overview-bed.component.ts │ │ │ │ ├── overview-case │ │ │ │ │ ├── overview-case.component.html │ │ │ │ │ ├── overview-case.component.less │ │ │ │ │ └── overview-case.component.ts │ │ │ │ ├── overview-introduction │ │ │ │ │ ├── overview-introduction.component.html │ │ │ │ │ ├── overview-introduction.component.less │ │ │ │ │ └── overview-introduction.component.ts │ │ │ │ ├── overview-routing.module.ts │ │ │ │ ├── overview.component.html │ │ │ │ ├── overview.component.less │ │ │ │ ├── overview.component.ts │ │ │ │ ├── overview.module.ts │ │ │ │ └── subscription │ │ │ │ │ ├── subscription.component.html │ │ │ │ │ ├── subscription.component.less │ │ │ │ │ └── subscription.component.ts │ │ │ ├── repositories │ │ │ │ ├── cached.repository.ts │ │ │ │ ├── case-development.repository.ts │ │ │ │ ├── county.repository.ts │ │ │ │ ├── dashboard.repository.ts │ │ │ │ ├── ebrake.repository.ts │ │ │ │ ├── email-subscription.repository.ts │ │ │ │ ├── extent.repository.ts │ │ │ │ ├── osm.repository.ts │ │ │ │ ├── qualitative-divi-development.respository.ts │ │ │ │ ├── quantitative-divi-development.respository.ts │ │ │ │ ├── region.repository.ts │ │ │ │ ├── types │ │ │ │ │ ├── in │ │ │ │ │ │ ├── county.ts │ │ │ │ │ │ ├── dashboard.ts │ │ │ │ │ │ ├── email-subscription.ts │ │ │ │ │ │ ├── general-development.ts │ │ │ │ │ │ ├── osm-helipads.ts │ │ │ │ │ │ ├── osm-hospitals.ts │ │ │ │ │ │ ├── qualitative-aggregated-bed-states.ts │ │ │ │ │ │ ├── qualitative-hospitals-development.ts │ │ │ │ │ │ ├── quantitative-hospitals-development.ts │ │ │ │ │ │ ├── quantitative-rki-case-development.ts │ │ │ │ │ │ ├── region.ts │ │ │ │ │ │ ├── risklayer-prognosis.ts │ │ │ │ │ │ └── timestamped-value.ts │ │ │ │ │ └── out │ │ │ │ │ │ ├── abstract-hospital-out.ts │ │ │ │ │ │ ├── aggregated-hospital-out.ts │ │ │ │ │ │ ├── quantitative-timed-status.ts │ │ │ │ │ │ └── single-hospital-out.ts │ │ │ │ └── utils.ts │ │ │ ├── sentry-config.ts │ │ │ ├── services │ │ │ │ ├── bed-choropleth-layer.service.ts │ │ │ │ ├── case-choropleth-colormap.service.ts │ │ │ │ ├── case-choropleth-layer.service.ts │ │ │ │ ├── case-util.service.ts │ │ │ │ ├── cases-region-aggregator.service.ts │ │ │ │ ├── chart.service.ts │ │ │ │ ├── config.service.ts │ │ │ │ ├── country-aggregator.service.ts │ │ │ │ ├── d3-choropleth-data.service.ts │ │ │ │ ├── dashboard.service.ts │ │ │ │ ├── export-csv.service.ts │ │ │ │ ├── geojson-util.service.ts │ │ │ │ ├── glyph-layer.service.ts │ │ │ │ ├── hospital-util.service.ts │ │ │ │ ├── i18n.service.ts │ │ │ │ ├── icon.service.ts │ │ │ │ ├── my-local-storage.service.ts │ │ │ │ ├── osm-layer.service.ts │ │ │ │ ├── qualitative-colormap.service.ts │ │ │ │ ├── quantitative-colormap.service.ts │ │ │ │ ├── table-overview.service.ts │ │ │ │ ├── tooltip.service.ts │ │ │ │ ├── translation.service.ts │ │ │ │ ├── types │ │ │ │ │ └── bed-status-summary.ts │ │ │ │ ├── url-handler.service.ts │ │ │ │ ├── vega-barchart.service.ts │ │ │ │ ├── vega-dashboard-history.service.ts │ │ │ │ ├── vega-linechart.service.ts │ │ │ │ ├── vega-multilinechart.service.ts │ │ │ │ ├── vega-pixelchart.service.ts │ │ │ │ └── vega-stacked-area-icu-categories.service.ts │ │ │ ├── share-dialog │ │ │ │ ├── share-dialog.component.html │ │ │ │ ├── share-dialog.component.less │ │ │ │ └── share-dialog.component.ts │ │ │ ├── shared │ │ │ │ ├── bed-inline-legend │ │ │ │ │ ├── bed-inline-legend.component.html │ │ │ │ │ ├── bed-inline-legend.component.less │ │ │ │ │ └── bed-inline-legend.component.ts │ │ │ │ ├── data-source │ │ │ │ │ ├── data-source.component.html │ │ │ │ │ ├── data-source.component.less │ │ │ │ │ └── data-source.component.ts │ │ │ │ ├── ebrake-snackbar │ │ │ │ │ ├── ebrake-snackbar.component.less │ │ │ │ │ └── ebrake-snackbar.component.ts │ │ │ │ ├── footer │ │ │ │ │ ├── footer.component.html │ │ │ │ │ ├── footer.component.less │ │ │ │ │ └── footer.component.ts │ │ │ │ ├── hospital-search │ │ │ │ │ ├── hospital-search.component.html │ │ │ │ │ ├── hospital-search.component.less │ │ │ │ │ └── hospital-search.component.ts │ │ │ │ ├── language-switcher │ │ │ │ │ ├── language-switcher.component.html │ │ │ │ │ ├── language-switcher.component.less │ │ │ │ │ └── language-switcher.component.ts │ │ │ │ ├── pixel-chart │ │ │ │ │ ├── pixel-chart.component.html │ │ │ │ │ ├── pixel-chart.component.less │ │ │ │ │ └── pixel-chart.component.ts │ │ │ │ ├── plusminus.pipe.ts │ │ │ │ ├── region-selector │ │ │ │ │ ├── region-selector.component.html │ │ │ │ │ ├── region-selector.component.less │ │ │ │ │ └── region-selector.component.ts │ │ │ │ ├── resize.directive.ts │ │ │ │ ├── resized-event.ts │ │ │ │ ├── shared.module.ts │ │ │ │ ├── stacked-area-icu-chart │ │ │ │ │ ├── stacked-area-icu-chart.component.html │ │ │ │ │ ├── stacked-area-icu-chart.component.less │ │ │ │ │ └── stacked-area-icu-chart.component.ts │ │ │ │ ├── table-overview │ │ │ │ │ ├── table-overview.component.html │ │ │ │ │ ├── table-overview.component.less │ │ │ │ │ └── table-overview.component.ts │ │ │ │ ├── translate.pipe.ts │ │ │ │ ├── vega │ │ │ │ │ ├── vega.component.less │ │ │ │ │ └── vega.component.ts │ │ │ │ └── with-loading.pipe.ts │ │ │ ├── timeslider │ │ │ │ ├── timeslider.component.html │ │ │ │ ├── timeslider.component.less │ │ │ │ └── timeslider.component.ts │ │ │ └── util │ │ │ │ ├── aggregation-level.ts │ │ │ │ ├── date-util.ts │ │ │ │ ├── force-directed-layout.ts │ │ │ │ ├── forceDirectedLayout.ts │ │ │ │ ├── locales │ │ │ │ └── en.ts │ │ │ │ ├── rect-collide.ts │ │ │ │ ├── regression.ts │ │ │ │ ├── safe-debounce.ts │ │ │ │ ├── touch-hack.ts │ │ │ │ └── ts-canvas-layer.ts │ │ ├── assets │ │ │ ├── .gitkeep │ │ │ ├── Daniel_Keim.jpg │ │ │ ├── Helipad.png │ │ │ ├── Krankenhaus.png │ │ │ ├── Legende.png │ │ │ ├── Legende.psd │ │ │ ├── Legende2.png │ │ │ ├── Legende2.psd │ │ │ ├── Menna.jpg │ │ │ ├── agg_b1.png │ │ │ ├── agg_b2.png │ │ │ ├── agg_b3.png │ │ │ ├── agg_b4.png │ │ │ ├── cakmak.jpg │ │ │ ├── cgmi.png │ │ │ ├── coronavislogo.png │ │ │ ├── coronavislogo300.png │ │ │ ├── covisexpl1.png │ │ │ ├── covisexpl2.png │ │ │ ├── dbvis.png │ │ │ ├── dbviscube.png │ │ │ ├── fabian.jpg │ │ │ ├── fischer.jpg │ │ │ ├── fstoffel.jpg │ │ │ ├── github.svg │ │ │ ├── help-dialog-beds-de.png │ │ │ ├── help-dialog-beds-en.png │ │ │ ├── help-dialog-cases-de.png │ │ │ ├── help-dialog-cases-en.png │ │ │ ├── icons │ │ │ │ ├── apple-touch-icon-114x114.png │ │ │ │ ├── apple-touch-icon-120x120.png │ │ │ │ ├── apple-touch-icon-128x128.png │ │ │ │ ├── apple-touch-icon-144x144.png │ │ │ │ ├── apple-touch-icon-152x152.png │ │ │ │ ├── apple-touch-icon-180x180.png │ │ │ │ ├── apple-touch-icon-57x57.png │ │ │ │ ├── apple-touch-icon-60x60.png │ │ │ │ ├── apple-touch-icon-72x72.png │ │ │ │ ├── apple-touch-icon-76x76.png │ │ │ │ ├── apple-touch-icon-precomposed.png │ │ │ │ ├── apple-touch-icon.png │ │ │ │ ├── favicon-160x160.png │ │ │ │ ├── favicon-192x192.png │ │ │ │ ├── favicon-196x196.png │ │ │ │ ├── favicon-96x96.png │ │ │ │ ├── favicon.gif │ │ │ │ ├── favicon.ico │ │ │ │ └── favicon.png │ │ │ ├── jentner.jpg │ │ │ ├── jochen_goertler.jpg │ │ │ ├── juri.jpg │ │ │ ├── kabitz.jpg │ │ │ ├── kraus.jpg │ │ │ ├── matt.jpg │ │ │ ├── meschenmoser.jpg │ │ │ ├── miller.jpg │ │ │ ├── oliver.jpg │ │ │ ├── robots.txt │ │ │ ├── seebacher.jpg │ │ │ ├── sevastjanova.jpg │ │ │ ├── solution-enabler.png │ │ │ ├── streeb.jpg │ │ │ ├── thilo-spinner.jpg │ │ │ ├── twitter.svg │ │ │ └── udo-schlegel.jpg │ │ ├── constants.ts │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── i18n │ │ │ ├── messages.de.xlf │ │ │ └── messages.en.xlf │ │ ├── index.html │ │ ├── main.ts │ │ ├── media-queryies.less │ │ ├── polyfills.ts │ │ ├── styles.less │ │ └── test.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.spec.json │ ├── webpack.config.js │ └── xliffmerge.json ├── mysite.conf └── replace-environment-urls.sh ├── LICENSE ├── README.md ├── SECURITY.md ├── Tiles ├── Dockerfile └── mysite.conf ├── docker-compose.yml ├── k8 ├── backend-new │ ├── Chart.yaml │ ├── templates │ │ ├── Deployment.yaml │ │ ├── Ingress.yaml │ │ ├── Service.yaml │ │ └── _helpers.tpl │ └── values.yaml ├── crawler-new │ ├── Chart.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── cron-crawler-bed-capacity-lk.yaml │ │ ├── cron-crawler-divi_private.yaml │ │ ├── cron-crawler-divi_public.yaml │ │ ├── cron-crawler-patient-cases.yaml │ │ ├── cron-crawler-risklayer-lk.yaml │ │ ├── cron-crawler-rki-lk-bl-cases.yaml │ │ ├── cron-crawler-rki_incidences.yaml │ │ └── cron-crawler-survstat-agegroups.yaml │ └── values.yaml ├── frontend-new │ ├── Chart.yaml │ ├── templates │ │ ├── Deployment.yaml │ │ ├── Ingress.yaml │ │ ├── Service.yaml │ │ └── _helpers.tpl │ └── values.yaml └── tiles-new │ ├── Chart.yaml │ ├── templates │ ├── Deployment.yaml │ ├── Ingress.yaml │ ├── Service.yaml │ └── _helpers.tpl │ └── values.yaml ├── misc ├── .gitignore ├── notebooks │ ├── .ipynb_checkpoints │ │ ├── ebrake-checkpoint.ipynb │ │ ├── queries_helper-checkpoint.ipynb │ │ ├── rki-de-inzidenzen-checkpoint.ipynb │ │ └── survestat-checkpoint.ipynb │ ├── Fallzahlen_Kum_Tab.xlsm │ ├── Fallzahlen_Kum_Tab.xlsx │ ├── db.py │ ├── ebrake.ipynb │ ├── loadenv.py │ ├── queries_helper.ipynb │ ├── rki-de-inzidenzen.ipynb │ └── survestat.ipynb ├── requirements.txt ├── survstat_bug_after.PNG └── survstat_bug_before.PNG ├── mockups ├── .gitkeep ├── capacities_area.md ├── capacities_area.md.7347.png ├── capacities_hospital.md ├── capacities_hospital.md.6091.png ├── hospital_glyph.md ├── hospital_glyph.md.7453.png ├── hospital_tooltip.md ├── hospital_tooltip.md.4534.png ├── hospital_tooltip.md.6702.png ├── landkreis_tooltip.md ├── landkreis_tooltip.md.6702.png ├── main.md └── main.md.5333.png ├── renovate.json ├── risklayer.md └── survstat.md /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/.gitmodules -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /Backend/.dockerignore: -------------------------------------------------------------------------------- 1 | # ignore python environment files 2 | .env 3 | -------------------------------------------------------------------------------- /Backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/.gitignore -------------------------------------------------------------------------------- /Backend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/Dockerfile -------------------------------------------------------------------------------- /Backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/README.md -------------------------------------------------------------------------------- /Backend/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/cache.py -------------------------------------------------------------------------------- /Backend/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/db.py -------------------------------------------------------------------------------- /Backend/gunicorn.conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/gunicorn.conf.py -------------------------------------------------------------------------------- /Backend/loadenv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/loadenv.py -------------------------------------------------------------------------------- /Backend/migrate-and-start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/migrate-and-start.sh -------------------------------------------------------------------------------- /Backend/migrations/alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/migrations/alembic.ini -------------------------------------------------------------------------------- /Backend/migrations/alembic/README: -------------------------------------------------------------------------------- 1 | Generic single-database configuration. -------------------------------------------------------------------------------- /Backend/migrations/alembic/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/migrations/alembic/env.py -------------------------------------------------------------------------------- /Backend/migrations/alembic/loadenv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/migrations/alembic/loadenv.py -------------------------------------------------------------------------------- /Backend/migrations/alembic/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/migrations/alembic/script.py.mako -------------------------------------------------------------------------------- /Backend/migrations/alembic/versions/00a7bf4dae6c_create_germany_materialized_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/migrations/alembic/versions/00a7bf4dae6c_create_germany_materialized_view.py -------------------------------------------------------------------------------- /Backend/migrations/alembic/versions/1656532dd2a4_create_vg250_rbz_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/migrations/alembic/versions/1656532dd2a4_create_vg250_rbz_table.py -------------------------------------------------------------------------------- /Backend/migrations/alembic/versions/296c837aaf67_create_survstat_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/migrations/alembic/versions/296c837aaf67_create_survstat_table.py -------------------------------------------------------------------------------- /Backend/migrations/alembic/versions/2ea7edb628ac_create_cases_lk_risklayer_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/migrations/alembic/versions/2ea7edb628ac_create_cases_lk_risklayer_table.py -------------------------------------------------------------------------------- /Backend/migrations/alembic/versions/305475aa6432_create_filled_hospital_timeseries_with_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/migrations/alembic/versions/305475aa6432_create_filled_hospital_timeseries_with_.py -------------------------------------------------------------------------------- /Backend/migrations/alembic/versions/30bea01e7bac_create_cases_per_county_and_day_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/migrations/alembic/versions/30bea01e7bac_create_cases_per_county_and_day_.py -------------------------------------------------------------------------------- /Backend/migrations/alembic/versions/347eb1c14bd2_create_email_subs_counties_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/migrations/alembic/versions/347eb1c14bd2_create_email_subs_counties_table.py -------------------------------------------------------------------------------- /Backend/migrations/alembic/versions/3610493d8979_create_cases_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/migrations/alembic/versions/3610493d8979_create_cases_table.py -------------------------------------------------------------------------------- /Backend/migrations/alembic/versions/3d9efa9b90ca_create_landkreise_extended_materialized_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/migrations/alembic/versions/3d9efa9b90ca_create_landkreise_extended_materialized_.py -------------------------------------------------------------------------------- /Backend/migrations/alembic/versions/4fcda072e8c6_create_bed_capacity2landkreise_extended_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/migrations/alembic/versions/4fcda072e8c6_create_bed_capacity2landkreise_extended_.py -------------------------------------------------------------------------------- /Backend/migrations/alembic/versions/50cd32ec9ca7_create_email_subs_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/migrations/alembic/versions/50cd32ec9ca7_create_email_subs_table.py -------------------------------------------------------------------------------- /Backend/migrations/alembic/versions/56a467c77bd8_create_divi_krankenhaus_standorte_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/migrations/alembic/versions/56a467c77bd8_create_divi_krankenhaus_standorte_table.py -------------------------------------------------------------------------------- /Backend/migrations/alembic/versions/59ad7ea918b6_add_survstat_berlin_hack_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/migrations/alembic/versions/59ad7ea918b6_add_survstat_berlin_hack_view.py -------------------------------------------------------------------------------- /Backend/migrations/alembic/versions/5cf8d4366856_create_divi_meldungen_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/migrations/alembic/versions/5cf8d4366856_create_divi_meldungen_table.py -------------------------------------------------------------------------------- /Backend/migrations/alembic/versions/7066fb8c8990_create_regierungsbezirke_materialized_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/migrations/alembic/versions/7066fb8c8990_create_regierungsbezirke_materialized_.py -------------------------------------------------------------------------------- /Backend/migrations/alembic/versions/7347754aab0f_create_vg250_krs_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/migrations/alembic/versions/7347754aab0f_create_vg250_krs_table.py -------------------------------------------------------------------------------- /Backend/migrations/alembic/versions/757ac6b4af83_create_bevoelkerung_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/migrations/alembic/versions/757ac6b4af83_create_bevoelkerung_table.py -------------------------------------------------------------------------------- /Backend/migrations/alembic/versions/8175af65a5b9_create_bundeslaender_materialized_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/migrations/alembic/versions/8175af65a5b9_create_bundeslaender_materialized_view.py -------------------------------------------------------------------------------- /Backend/migrations/alembic/versions/86ec65c533a4_add_survstat_population_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/migrations/alembic/versions/86ec65c533a4_add_survstat_population_data.py -------------------------------------------------------------------------------- /Backend/migrations/alembic/versions/91aca0bccf3f_create_population_rki_agegroup_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/migrations/alembic/versions/91aca0bccf3f_create_population_rki_agegroup_table.py -------------------------------------------------------------------------------- /Backend/migrations/alembic/versions/91c9d723d958_add_population_survstat_agegroups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/migrations/alembic/versions/91c9d723d958_add_population_survstat_agegroups.py -------------------------------------------------------------------------------- /Backend/migrations/alembic/versions/a3a5ae77b6b9_add_columns_to_divi_meldungen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/migrations/alembic/versions/a3a5ae77b6b9_add_columns_to_divi_meldungen.py -------------------------------------------------------------------------------- /Backend/migrations/alembic/versions/a9ca657b90f5_create_cases_per_county_and_day_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/migrations/alembic/versions/a9ca657b90f5_create_cases_per_county_and_day_.py -------------------------------------------------------------------------------- /Backend/migrations/alembic/versions/b84312f6532e_create_cases_current_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/migrations/alembic/versions/b84312f6532e_create_cases_current_view.py -------------------------------------------------------------------------------- /Backend/migrations/alembic/versions/bbaf5488b4fe_update_mv_cases_per_county_and_day.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/migrations/alembic/versions/bbaf5488b4fe_update_mv_cases_per_county_and_day.py -------------------------------------------------------------------------------- /Backend/migrations/alembic/versions/c34d4cef2dad_create_risklayer_prognosis_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/migrations/alembic/versions/c34d4cef2dad_create_risklayer_prognosis_table.py -------------------------------------------------------------------------------- /Backend/migrations/alembic/versions/cea34abda294_add_rki_agegroup2_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/migrations/alembic/versions/cea34abda294_add_rki_agegroup2_table.py -------------------------------------------------------------------------------- /Backend/migrations/alembic/versions/d5d392162842_fix_filled_hospital_timeseries_with_fix_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/migrations/alembic/versions/d5d392162842_fix_filled_hospital_timeseries_with_fix_.py -------------------------------------------------------------------------------- /Backend/migrations/alembic/versions/e34b11198249_create_vg250_lan_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/migrations/alembic/versions/e34b11198249_create_vg250_lan_table.py -------------------------------------------------------------------------------- /Backend/migrations/alembic/versions/f5e4ee3634b1_create_helipads_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/migrations/alembic/versions/f5e4ee3634b1_create_helipads_table.py -------------------------------------------------------------------------------- /Backend/migrations/alembic/versions/f8791d49d830_create_bed_capacity_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/migrations/alembic/versions/f8791d49d830_create_bed_capacity_table.py -------------------------------------------------------------------------------- /Backend/migrations/alembic/versions/f96132b7a0d1_update_materialized_view_cases_per_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/migrations/alembic/versions/f96132b7a0d1_update_materialized_view_cases_per_.py -------------------------------------------------------------------------------- /Backend/migrations/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/migrations/main.py -------------------------------------------------------------------------------- /Backend/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Backend/models/caseDevelopments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/models/caseDevelopments.py -------------------------------------------------------------------------------- /Backend/models/cases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/models/cases.py -------------------------------------------------------------------------------- /Backend/models/counties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/models/counties.py -------------------------------------------------------------------------------- /Backend/models/crawl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/models/crawl.py -------------------------------------------------------------------------------- /Backend/models/dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/models/dashboard.py -------------------------------------------------------------------------------- /Backend/models/divi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/models/divi.py -------------------------------------------------------------------------------- /Backend/models/email_subs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/models/email_subs.py -------------------------------------------------------------------------------- /Backend/models/hospital.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/models/hospital.py -------------------------------------------------------------------------------- /Backend/models/icuDevelopments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/models/icuDevelopments.py -------------------------------------------------------------------------------- /Backend/models/risklayerPrognosis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/models/risklayerPrognosis.py -------------------------------------------------------------------------------- /Backend/prometheus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/prometheus.py -------------------------------------------------------------------------------- /Backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/requirements.txt -------------------------------------------------------------------------------- /Backend/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/server.py -------------------------------------------------------------------------------- /Backend/services/crypt_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/services/crypt_service.py -------------------------------------------------------------------------------- /Backend/services/hash_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/services/hash_service.py -------------------------------------------------------------------------------- /Backend/services/mail_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/services/mail_service.py -------------------------------------------------------------------------------- /Backend/services/token_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/services/token_service.py -------------------------------------------------------------------------------- /Backend/static/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Backend/templates/mail/county_notification_de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/templates/mail/county_notification_de.html -------------------------------------------------------------------------------- /Backend/templates/mail/county_notification_de.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/templates/mail/county_notification_de.txt -------------------------------------------------------------------------------- /Backend/templates/mail/county_notification_en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/templates/mail/county_notification_en.html -------------------------------------------------------------------------------- /Backend/templates/mail/county_notification_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/templates/mail/county_notification_en.txt -------------------------------------------------------------------------------- /Backend/templates/mail/email_verification.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/templates/mail/email_verification.html -------------------------------------------------------------------------------- /Backend/templates/mail/email_verification.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/templates/mail/email_verification.txt -------------------------------------------------------------------------------- /Backend/testing.http: -------------------------------------------------------------------------------- 1 | GET http://localhost:5000/cases-risklayer/development/landkreise -------------------------------------------------------------------------------- /Backend/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Backend/tests/base_case.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/tests/base_case.py -------------------------------------------------------------------------------- /Backend/tests/test_prognosis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/tests/test_prognosis.py -------------------------------------------------------------------------------- /Backend/timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/timer.py -------------------------------------------------------------------------------- /Backend/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Backend/views/cases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/views/cases.py -------------------------------------------------------------------------------- /Backend/views/cases_risklayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/views/cases_risklayer.py -------------------------------------------------------------------------------- /Backend/views/counties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/views/counties.py -------------------------------------------------------------------------------- /Backend/views/dashboards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/views/dashboards.py -------------------------------------------------------------------------------- /Backend/views/divi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/views/divi.py -------------------------------------------------------------------------------- /Backend/views/ebrake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/views/ebrake.py -------------------------------------------------------------------------------- /Backend/views/email_subs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/views/email_subs.py -------------------------------------------------------------------------------- /Backend/views/extent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/views/extent.py -------------------------------------------------------------------------------- /Backend/views/health.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/views/health.py -------------------------------------------------------------------------------- /Backend/views/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/views/helpers.py -------------------------------------------------------------------------------- /Backend/views/hospitals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/views/hospitals.py -------------------------------------------------------------------------------- /Backend/views/osm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/views/osm.py -------------------------------------------------------------------------------- /Backend/views/regions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/views/regions.py -------------------------------------------------------------------------------- /Backend/views/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/views/version.py -------------------------------------------------------------------------------- /Backend/wait_db_rdy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Backend/wait_db_rdy.py -------------------------------------------------------------------------------- /Crawler/.gitignore: -------------------------------------------------------------------------------- 1 | /venv 2 | *.xlsx 3 | *.html 4 | divi*.json 5 | /google.com_cookies.txt 6 | -------------------------------------------------------------------------------- /Crawler/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Crawler/Dockerfile -------------------------------------------------------------------------------- /Crawler/README.md: -------------------------------------------------------------------------------- 1 | # covid-19-rki-crawler -------------------------------------------------------------------------------- /Crawler/crawl_divi_private.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Crawler/crawl_divi_private.py -------------------------------------------------------------------------------- /Crawler/crawl_divi_public.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Crawler/crawl_divi_public.py -------------------------------------------------------------------------------- /Crawler/crawl_risklayer_lk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Crawler/crawl_risklayer_lk.py -------------------------------------------------------------------------------- /Crawler/crawl_rki_bed_capacity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Crawler/crawl_rki_bed_capacity.py -------------------------------------------------------------------------------- /Crawler/crawl_rki_cases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Crawler/crawl_rki_cases.py -------------------------------------------------------------------------------- /Crawler/crawl_rki_incidences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Crawler/crawl_rki_incidences.py -------------------------------------------------------------------------------- /Crawler/crawl_survstat_agegroups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Crawler/crawl_survstat_agegroups.py -------------------------------------------------------------------------------- /Crawler/crawler_rki_dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Crawler/crawler_rki_dashboard.py -------------------------------------------------------------------------------- /Crawler/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Crawler/db.py -------------------------------------------------------------------------------- /Crawler/db_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Crawler/db_config.py -------------------------------------------------------------------------------- /Crawler/decommisioned/crawl_divi_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Crawler/decommisioned/crawl_divi_data.py -------------------------------------------------------------------------------- /Crawler/decommisioned/crawl_rki_bed_capacity_oldimport_once.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Crawler/decommisioned/crawl_rki_bed_capacity_oldimport_once.py -------------------------------------------------------------------------------- /Crawler/divi_private.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Crawler/divi_private.schema.json -------------------------------------------------------------------------------- /Crawler/divi_public.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Crawler/divi_public.schema.json -------------------------------------------------------------------------------- /Crawler/loadenv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Crawler/loadenv.py -------------------------------------------------------------------------------- /Crawler/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Crawler/requirements.txt -------------------------------------------------------------------------------- /Crawler/rki_bed_capacity.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Crawler/rki_bed_capacity.schema.json -------------------------------------------------------------------------------- /Crawler/rki_cases.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Crawler/rki_cases.schema.json -------------------------------------------------------------------------------- /Crawler/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Crawler/utils.py -------------------------------------------------------------------------------- /Database/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Database/Dockerfile -------------------------------------------------------------------------------- /Database/initdb/01_initdb-postgis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Database/initdb/01_initdb-postgis.sh -------------------------------------------------------------------------------- /Database/update-postgis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Database/update-postgis.sh -------------------------------------------------------------------------------- /Frontend/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/.editorconfig -------------------------------------------------------------------------------- /Frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/.gitignore -------------------------------------------------------------------------------- /Frontend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/Dockerfile -------------------------------------------------------------------------------- /Frontend/code-quality-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/code-quality-env.sh -------------------------------------------------------------------------------- /Frontend/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/contributing.md -------------------------------------------------------------------------------- /Frontend/gis/.babelrc: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /Frontend/gis/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/.editorconfig -------------------------------------------------------------------------------- /Frontend/gis/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/.eslintrc.json -------------------------------------------------------------------------------- /Frontend/gis/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/.gitignore -------------------------------------------------------------------------------- /Frontend/gis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/README.md -------------------------------------------------------------------------------- /Frontend/gis/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/angular.json -------------------------------------------------------------------------------- /Frontend/gis/e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/e2e/protractor.conf.js -------------------------------------------------------------------------------- /Frontend/gis/e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /Frontend/gis/e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/e2e/src/app.po.ts -------------------------------------------------------------------------------- /Frontend/gis/e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/e2e/tsconfig.json -------------------------------------------------------------------------------- /Frontend/gis/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/karma.conf.js -------------------------------------------------------------------------------- /Frontend/gis/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/package-lock.json -------------------------------------------------------------------------------- /Frontend/gis/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/package.json -------------------------------------------------------------------------------- /Frontend/gis/src/app/about/about.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/about/about.component.html -------------------------------------------------------------------------------- /Frontend/gis/src/app/about/about.component.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/about/about.component.less -------------------------------------------------------------------------------- /Frontend/gis/src/app/about/about.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/about/about.component.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/app.component.html -------------------------------------------------------------------------------- /Frontend/gis/src/app/app.component.less: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Frontend/gis/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/app.component.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/app.module.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/bed-tooltip/bed-tooltip.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/bed-tooltip/bed-tooltip.component.html -------------------------------------------------------------------------------- /Frontend/gis/src/app/bed-tooltip/bed-tooltip.component.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/bed-tooltip/bed-tooltip.component.less -------------------------------------------------------------------------------- /Frontend/gis/src/app/bed-tooltip/bed-tooltip.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/bed-tooltip/bed-tooltip.component.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/button-panel/button-panel.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/button-panel/button-panel.component.html -------------------------------------------------------------------------------- /Frontend/gis/src/app/button-panel/button-panel.component.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/button-panel/button-panel.component.less -------------------------------------------------------------------------------- /Frontend/gis/src/app/button-panel/button-panel.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/button-panel/button-panel.component.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/cases-dod/case-dialog/case-dialog.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/cases-dod/case-dialog/case-dialog.component.html -------------------------------------------------------------------------------- /Frontend/gis/src/app/cases-dod/case-dialog/case-dialog.component.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/cases-dod/case-dialog/case-dialog.component.less -------------------------------------------------------------------------------- /Frontend/gis/src/app/cases-dod/case-dialog/case-dialog.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/cases-dod/case-dialog/case-dialog.component.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/cases-dod/case-info/case-info.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/cases-dod/case-info/case-info.component.html -------------------------------------------------------------------------------- /Frontend/gis/src/app/cases-dod/case-info/case-info.component.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/cases-dod/case-info/case-info.component.less -------------------------------------------------------------------------------- /Frontend/gis/src/app/cases-dod/case-info/case-info.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/cases-dod/case-info/case-info.component.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/cases-dod/case-line-chart/case-line-chart.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/cases-dod/case-line-chart/case-line-chart.component.html -------------------------------------------------------------------------------- /Frontend/gis/src/app/cases-dod/case-line-chart/case-line-chart.component.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/cases-dod/case-line-chart/case-line-chart.component.less -------------------------------------------------------------------------------- /Frontend/gis/src/app/cases-dod/case-line-chart/case-line-chart.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/cases-dod/case-line-chart/case-line-chart.component.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/cases-dod/case-tooltip/case-tooltip.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/cases-dod/case-tooltip/case-tooltip.component.html -------------------------------------------------------------------------------- /Frontend/gis/src/app/cases-dod/case-tooltip/case-tooltip.component.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/cases-dod/case-tooltip/case-tooltip.component.less -------------------------------------------------------------------------------- /Frontend/gis/src/app/cases-dod/case-tooltip/case-tooltip.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/cases-dod/case-tooltip/case-tooltip.component.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/cases-dod/cases-dod.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/cases-dod/cases-dod.module.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/cases-dod/covid-chart-options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/cases-dod/covid-chart-options.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/decorators/cache.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/decorators/cache.decorator.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/gdpr/gdpr.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/gdpr/gdpr.component.html -------------------------------------------------------------------------------- /Frontend/gis/src/app/gdpr/gdpr.component.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/gdpr/gdpr.component.less -------------------------------------------------------------------------------- /Frontend/gis/src/app/gdpr/gdpr.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/gdpr/gdpr.component.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/glyph-tooltip/glyph-tooltip.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/glyph-tooltip/glyph-tooltip.component.html -------------------------------------------------------------------------------- /Frontend/gis/src/app/glyph-tooltip/glyph-tooltip.component.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/glyph-tooltip/glyph-tooltip.component.less -------------------------------------------------------------------------------- /Frontend/gis/src/app/glyph-tooltip/glyph-tooltip.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/glyph-tooltip/glyph-tooltip.component.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/help/help-dialog-beds/help-dialog-beds.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/help/help-dialog-beds/help-dialog-beds.component.html -------------------------------------------------------------------------------- /Frontend/gis/src/app/help/help-dialog-beds/help-dialog-beds.component.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/help/help-dialog-beds/help-dialog-beds.component.less -------------------------------------------------------------------------------- /Frontend/gis/src/app/help/help-dialog-beds/help-dialog-beds.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/help/help-dialog-beds/help-dialog-beds.component.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/help/help-dialog-cases/help-dialog-cases.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/help/help-dialog-cases/help-dialog-cases.component.html -------------------------------------------------------------------------------- /Frontend/gis/src/app/help/help-dialog-cases/help-dialog-cases.component.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/help/help-dialog-cases/help-dialog-cases.component.less -------------------------------------------------------------------------------- /Frontend/gis/src/app/help/help-dialog-cases/help-dialog-cases.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/help/help-dialog-cases/help-dialog-cases.component.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/help/help-dialog-live-view/help-dialog-live-view.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/help/help-dialog-live-view/help-dialog-live-view.component.html -------------------------------------------------------------------------------- /Frontend/gis/src/app/help/help-dialog-live-view/help-dialog-live-view.component.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/help/help-dialog-live-view/help-dialog-live-view.component.less -------------------------------------------------------------------------------- /Frontend/gis/src/app/help/help-dialog-live-view/help-dialog-live-view.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/help/help-dialog-live-view/help-dialog-live-view.component.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/help/help-dialog-theproject/help-dialog-theproject.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/help/help-dialog-theproject/help-dialog-theproject.component.html -------------------------------------------------------------------------------- /Frontend/gis/src/app/help/help-dialog-theproject/help-dialog-theproject.component.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/help/help-dialog-theproject/help-dialog-theproject.component.less -------------------------------------------------------------------------------- /Frontend/gis/src/app/help/help-dialog-theproject/help-dialog-theproject.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/help/help-dialog-theproject/help-dialog-theproject.component.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/help/help-dialog/help-dialog.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/help/help-dialog/help-dialog.component.html -------------------------------------------------------------------------------- /Frontend/gis/src/app/help/help-dialog/help-dialog.component.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/help/help-dialog/help-dialog.component.less -------------------------------------------------------------------------------- /Frontend/gis/src/app/help/help-dialog/help-dialog.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/help/help-dialog/help-dialog.component.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/help/help.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/help/help.module.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/hospital-info-dialog/hospital-info-dialog.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/hospital-info-dialog/hospital-info-dialog.component.html -------------------------------------------------------------------------------- /Frontend/gis/src/app/hospital-info-dialog/hospital-info-dialog.component.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/hospital-info-dialog/hospital-info-dialog.component.less -------------------------------------------------------------------------------- /Frontend/gis/src/app/hospital-info-dialog/hospital-info-dialog.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/hospital-info-dialog/hospital-info-dialog.component.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/hospital-info/hospital-info.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/hospital-info/hospital-info.component.html -------------------------------------------------------------------------------- /Frontend/gis/src/app/hospital-info/hospital-info.component.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/hospital-info/hospital-info.component.less -------------------------------------------------------------------------------- /Frontend/gis/src/app/hospital-info/hospital-info.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/hospital-info/hospital-info.component.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/impressum/impressum.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/impressum/impressum.component.html -------------------------------------------------------------------------------- /Frontend/gis/src/app/impressum/impressum.component.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/impressum/impressum.component.less -------------------------------------------------------------------------------- /Frontend/gis/src/app/impressum/impressum.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/impressum/impressum.component.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/infobox/infobox.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/infobox/infobox.component.html -------------------------------------------------------------------------------- /Frontend/gis/src/app/infobox/infobox.component.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/infobox/infobox.component.less -------------------------------------------------------------------------------- /Frontend/gis/src/app/infobox/infobox.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/infobox/infobox.component.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/legend/legend.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/legend/legend.component.html -------------------------------------------------------------------------------- /Frontend/gis/src/app/legend/legend.component.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/legend/legend.component.less -------------------------------------------------------------------------------- /Frontend/gis/src/app/legend/legend.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/legend/legend.component.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/map-root/map-root.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/map-root/map-root.component.html -------------------------------------------------------------------------------- /Frontend/gis/src/app/map-root/map-root.component.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/map-root/map-root.component.less -------------------------------------------------------------------------------- /Frontend/gis/src/app/map-root/map-root.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/map-root/map-root.component.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/map/events/fly-to.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/map/events/fly-to.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/map/map.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/map/map.component.html -------------------------------------------------------------------------------- /Frontend/gis/src/app/map/map.component.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/map/map.component.less -------------------------------------------------------------------------------- /Frontend/gis/src/app/map/map.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/map/map.component.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/map/options/aggregation-level.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/map/options/aggregation-level.enum.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/map/options/bed-background-options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/map/options/bed-background-options.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/map/options/bed-glyph-options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/map/options/bed-glyph-options.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/map/options/bed-type.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/map/options/bed-type.enum.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/map/options/covid-number-case-options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/map/options/covid-number-case-options.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/map/options/map-location-settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/map/options/map-location-settings.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/map/options/map-options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/map/options/map-options.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/map/overlays/GlyphLayer.ts: -------------------------------------------------------------------------------- 1 | export interface GlyphLayer { 2 | setVisibility(v: boolean); 3 | } 4 | -------------------------------------------------------------------------------- /Frontend/gis/src/app/map/overlays/abstract-glyph-canvas.layer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/map/overlays/abstract-glyph-canvas.layer.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/map/overlays/aggregated-glyph-canvas.layer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/map/overlays/aggregated-glyph-canvas.layer.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/map/overlays/bedstatuschoropleth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/map/overlays/bedstatuschoropleth.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/map/overlays/case-trend-canvas.layer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/map/overlays/case-trend-canvas.layer.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/map/overlays/casechoropleth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/map/overlays/casechoropleth.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/map/overlays/helipads.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/map/overlays/helipads.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/map/overlays/hospital.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/map/overlays/hospital.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/map/overlays/label-canvas.layer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/map/overlays/label-canvas.layer.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/map/overlays/landkreishospitals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/map/overlays/landkreishospitals.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/map/overlays/overlay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/map/overlays/overlay.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/map/overlays/single-glyph-canvas.layer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/map/overlays/single-glyph-canvas.layer.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/osm-tooltip/osm-tooltip.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/osm-tooltip/osm-tooltip.component.html -------------------------------------------------------------------------------- /Frontend/gis/src/app/osm-tooltip/osm-tooltip.component.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/osm-tooltip/osm-tooltip.component.less -------------------------------------------------------------------------------- /Frontend/gis/src/app/osm-tooltip/osm-tooltip.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/osm-tooltip/osm-tooltip.component.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/overlay-brand/overlay-brand.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/overlay-brand/overlay-brand.component.html -------------------------------------------------------------------------------- /Frontend/gis/src/app/overlay-brand/overlay-brand.component.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/overlay-brand/overlay-brand.component.less -------------------------------------------------------------------------------- /Frontend/gis/src/app/overlay-brand/overlay-brand.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/overlay-brand/overlay-brand.component.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/overview/d3-choropleth-map/d3-choropleth-map.component.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/overview/d3-choropleth-map/d3-choropleth-map.component.less -------------------------------------------------------------------------------- /Frontend/gis/src/app/overview/d3-choropleth-map/d3-choropleth-map.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/overview/d3-choropleth-map/d3-choropleth-map.component.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/overview/dashboard/dashboard.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/overview/dashboard/dashboard.module.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/overview/dashboard/dashboard/dashboard.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/overview/dashboard/dashboard/dashboard.component.html -------------------------------------------------------------------------------- /Frontend/gis/src/app/overview/dashboard/dashboard/dashboard.component.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/overview/dashboard/dashboard/dashboard.component.less -------------------------------------------------------------------------------- /Frontend/gis/src/app/overview/dashboard/dashboard/dashboard.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/overview/dashboard/dashboard/dashboard.component.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/overview/dashboard/dashboards-overview/dashboards-overview.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/overview/dashboard/dashboards-overview/dashboards-overview.component.html -------------------------------------------------------------------------------- /Frontend/gis/src/app/overview/dashboard/dashboards-overview/dashboards-overview.component.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/overview/dashboard/dashboards-overview/dashboards-overview.component.less -------------------------------------------------------------------------------- /Frontend/gis/src/app/overview/dashboard/dashboards-overview/dashboards-overview.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/overview/dashboard/dashboards-overview/dashboards-overview.component.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/overview/dashboard/dashboards-table/dashboards-table.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/overview/dashboard/dashboards-table/dashboards-table.component.html -------------------------------------------------------------------------------- /Frontend/gis/src/app/overview/dashboard/dashboards-table/dashboards-table.component.less: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Frontend/gis/src/app/overview/dashboard/dashboards-table/dashboards-table.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/overview/dashboard/dashboards-table/dashboards-table.component.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/overview/dashboard/multi-line-chart/multi-line-chart.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/overview/dashboard/multi-line-chart/multi-line-chart.component.html -------------------------------------------------------------------------------- /Frontend/gis/src/app/overview/dashboard/multi-line-chart/multi-line-chart.component.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/overview/dashboard/multi-line-chart/multi-line-chart.component.less -------------------------------------------------------------------------------- /Frontend/gis/src/app/overview/dashboard/multi-line-chart/multi-line-chart.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/overview/dashboard/multi-line-chart/multi-line-chart.component.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/overview/dashboard/settings/settings.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/overview/dashboard/settings/settings.component.html -------------------------------------------------------------------------------- /Frontend/gis/src/app/overview/dashboard/settings/settings.component.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/overview/dashboard/settings/settings.component.less -------------------------------------------------------------------------------- /Frontend/gis/src/app/overview/dashboard/settings/settings.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/overview/dashboard/settings/settings.component.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/overview/dashboard/title-edit-dialog/title-edit-dialog.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/overview/dashboard/title-edit-dialog/title-edit-dialog.component.html -------------------------------------------------------------------------------- /Frontend/gis/src/app/overview/dashboard/title-edit-dialog/title-edit-dialog.component.less: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Frontend/gis/src/app/overview/dashboard/title-edit-dialog/title-edit-dialog.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/overview/dashboard/title-edit-dialog/title-edit-dialog.component.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/overview/ebrake/ebrake-share-dialog/ebrake-share-dialog.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/overview/ebrake/ebrake-share-dialog/ebrake-share-dialog.component.html -------------------------------------------------------------------------------- /Frontend/gis/src/app/overview/ebrake/ebrake-share-dialog/ebrake-share-dialog.component.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/overview/ebrake/ebrake-share-dialog/ebrake-share-dialog.component.less -------------------------------------------------------------------------------- /Frontend/gis/src/app/overview/ebrake/ebrake-share-dialog/ebrake-share-dialog.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/overview/ebrake/ebrake-share-dialog/ebrake-share-dialog.component.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/overview/ebrake/ebrake-tooltip/ebrake-tooltip.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/overview/ebrake/ebrake-tooltip/ebrake-tooltip.component.html -------------------------------------------------------------------------------- /Frontend/gis/src/app/overview/ebrake/ebrake-tooltip/ebrake-tooltip.component.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/overview/ebrake/ebrake-tooltip/ebrake-tooltip.component.less -------------------------------------------------------------------------------- /Frontend/gis/src/app/overview/ebrake/ebrake-tooltip/ebrake-tooltip.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/overview/ebrake/ebrake-tooltip/ebrake-tooltip.component.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/overview/ebrake/ebrake.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/overview/ebrake/ebrake.module.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/overview/ebrake/temporal-overview-chart/temporal-overview-chart.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/overview/ebrake/temporal-overview-chart/temporal-overview-chart.component.html -------------------------------------------------------------------------------- /Frontend/gis/src/app/overview/ebrake/temporal-overview-chart/temporal-overview-chart.component.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/overview/ebrake/temporal-overview-chart/temporal-overview-chart.component.less -------------------------------------------------------------------------------- /Frontend/gis/src/app/overview/ebrake/temporal-overview-chart/temporal-overview-chart.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/overview/ebrake/temporal-overview-chart/temporal-overview-chart.component.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/overview/ebrake/temporal-overview/temporal-overview.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/overview/ebrake/temporal-overview/temporal-overview.component.html -------------------------------------------------------------------------------- /Frontend/gis/src/app/overview/ebrake/temporal-overview/temporal-overview.component.less: -------------------------------------------------------------------------------- 1 | :host { 2 | display: inline-block; 3 | } -------------------------------------------------------------------------------- /Frontend/gis/src/app/overview/ebrake/temporal-overview/temporal-overview.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/overview/ebrake/temporal-overview/temporal-overview.component.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/overview/overview-bed/overview-bed.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/overview/overview-bed/overview-bed.component.html -------------------------------------------------------------------------------- /Frontend/gis/src/app/overview/overview-bed/overview-bed.component.less: -------------------------------------------------------------------------------- 1 | @import '../overview.component.less'; -------------------------------------------------------------------------------- /Frontend/gis/src/app/overview/overview-bed/overview-bed.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/overview/overview-bed/overview-bed.component.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/overview/overview-case/overview-case.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/overview/overview-case/overview-case.component.html -------------------------------------------------------------------------------- /Frontend/gis/src/app/overview/overview-case/overview-case.component.less: -------------------------------------------------------------------------------- 1 | @import '../overview.component.less'; -------------------------------------------------------------------------------- /Frontend/gis/src/app/overview/overview-case/overview-case.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/overview/overview-case/overview-case.component.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/overview/overview-introduction/overview-introduction.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/overview/overview-introduction/overview-introduction.component.html -------------------------------------------------------------------------------- /Frontend/gis/src/app/overview/overview-introduction/overview-introduction.component.less: -------------------------------------------------------------------------------- 1 | .container { 2 | padding: 20px; 3 | } -------------------------------------------------------------------------------- /Frontend/gis/src/app/overview/overview-introduction/overview-introduction.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/overview/overview-introduction/overview-introduction.component.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/overview/overview-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/overview/overview-routing.module.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/overview/overview.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/overview/overview.component.html -------------------------------------------------------------------------------- /Frontend/gis/src/app/overview/overview.component.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/overview/overview.component.less -------------------------------------------------------------------------------- /Frontend/gis/src/app/overview/overview.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/overview/overview.component.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/overview/overview.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/overview/overview.module.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/overview/subscription/subscription.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/overview/subscription/subscription.component.html -------------------------------------------------------------------------------- /Frontend/gis/src/app/overview/subscription/subscription.component.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/overview/subscription/subscription.component.less -------------------------------------------------------------------------------- /Frontend/gis/src/app/overview/subscription/subscription.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/overview/subscription/subscription.component.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/repositories/cached.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/repositories/cached.repository.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/repositories/case-development.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/repositories/case-development.repository.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/repositories/county.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/repositories/county.repository.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/repositories/dashboard.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/repositories/dashboard.repository.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/repositories/ebrake.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/repositories/ebrake.repository.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/repositories/email-subscription.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/repositories/email-subscription.repository.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/repositories/extent.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/repositories/extent.repository.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/repositories/osm.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/repositories/osm.repository.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/repositories/qualitative-divi-development.respository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/repositories/qualitative-divi-development.respository.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/repositories/quantitative-divi-development.respository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/repositories/quantitative-divi-development.respository.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/repositories/region.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/repositories/region.repository.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/repositories/types/in/county.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/repositories/types/in/county.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/repositories/types/in/dashboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/repositories/types/in/dashboard.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/repositories/types/in/email-subscription.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/repositories/types/in/email-subscription.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/repositories/types/in/general-development.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/repositories/types/in/general-development.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/repositories/types/in/osm-helipads.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/repositories/types/in/osm-helipads.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/repositories/types/in/osm-hospitals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/repositories/types/in/osm-hospitals.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/repositories/types/in/qualitative-aggregated-bed-states.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/repositories/types/in/qualitative-aggregated-bed-states.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/repositories/types/in/qualitative-hospitals-development.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/repositories/types/in/qualitative-hospitals-development.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/repositories/types/in/quantitative-hospitals-development.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/repositories/types/in/quantitative-hospitals-development.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/repositories/types/in/quantitative-rki-case-development.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/repositories/types/in/quantitative-rki-case-development.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/repositories/types/in/region.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/repositories/types/in/region.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/repositories/types/in/risklayer-prognosis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/repositories/types/in/risklayer-prognosis.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/repositories/types/in/timestamped-value.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/repositories/types/in/timestamped-value.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/repositories/types/out/abstract-hospital-out.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/repositories/types/out/abstract-hospital-out.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/repositories/types/out/aggregated-hospital-out.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/repositories/types/out/aggregated-hospital-out.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/repositories/types/out/quantitative-timed-status.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/repositories/types/out/quantitative-timed-status.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/repositories/types/out/single-hospital-out.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/repositories/types/out/single-hospital-out.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/repositories/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/repositories/utils.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/sentry-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/sentry-config.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/services/bed-choropleth-layer.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/services/bed-choropleth-layer.service.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/services/case-choropleth-colormap.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/services/case-choropleth-colormap.service.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/services/case-choropleth-layer.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/services/case-choropleth-layer.service.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/services/case-util.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/services/case-util.service.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/services/cases-region-aggregator.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/services/cases-region-aggregator.service.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/services/chart.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/services/chart.service.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/services/config.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/services/config.service.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/services/country-aggregator.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/services/country-aggregator.service.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/services/d3-choropleth-data.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/services/d3-choropleth-data.service.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/services/dashboard.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/services/dashboard.service.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/services/export-csv.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/services/export-csv.service.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/services/geojson-util.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/services/geojson-util.service.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/services/glyph-layer.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/services/glyph-layer.service.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/services/hospital-util.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/services/hospital-util.service.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/services/i18n.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/services/i18n.service.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/services/icon.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/services/icon.service.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/services/my-local-storage.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/services/my-local-storage.service.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/services/osm-layer.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/services/osm-layer.service.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/services/qualitative-colormap.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/services/qualitative-colormap.service.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/services/quantitative-colormap.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/services/quantitative-colormap.service.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/services/table-overview.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/services/table-overview.service.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/services/tooltip.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/services/tooltip.service.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/services/translation.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/services/translation.service.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/services/types/bed-status-summary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/services/types/bed-status-summary.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/services/url-handler.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/services/url-handler.service.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/services/vega-barchart.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/services/vega-barchart.service.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/services/vega-dashboard-history.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/services/vega-dashboard-history.service.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/services/vega-linechart.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/services/vega-linechart.service.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/services/vega-multilinechart.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/services/vega-multilinechart.service.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/services/vega-pixelchart.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/services/vega-pixelchart.service.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/services/vega-stacked-area-icu-categories.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/services/vega-stacked-area-icu-categories.service.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/share-dialog/share-dialog.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/share-dialog/share-dialog.component.html -------------------------------------------------------------------------------- /Frontend/gis/src/app/share-dialog/share-dialog.component.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/share-dialog/share-dialog.component.less -------------------------------------------------------------------------------- /Frontend/gis/src/app/share-dialog/share-dialog.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/share-dialog/share-dialog.component.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/shared/bed-inline-legend/bed-inline-legend.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/shared/bed-inline-legend/bed-inline-legend.component.html -------------------------------------------------------------------------------- /Frontend/gis/src/app/shared/bed-inline-legend/bed-inline-legend.component.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/shared/bed-inline-legend/bed-inline-legend.component.less -------------------------------------------------------------------------------- /Frontend/gis/src/app/shared/bed-inline-legend/bed-inline-legend.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/shared/bed-inline-legend/bed-inline-legend.component.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/shared/data-source/data-source.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/shared/data-source/data-source.component.html -------------------------------------------------------------------------------- /Frontend/gis/src/app/shared/data-source/data-source.component.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/shared/data-source/data-source.component.less -------------------------------------------------------------------------------- /Frontend/gis/src/app/shared/data-source/data-source.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/shared/data-source/data-source.component.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/shared/ebrake-snackbar/ebrake-snackbar.component.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/shared/ebrake-snackbar/ebrake-snackbar.component.less -------------------------------------------------------------------------------- /Frontend/gis/src/app/shared/ebrake-snackbar/ebrake-snackbar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/shared/ebrake-snackbar/ebrake-snackbar.component.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/shared/footer/footer.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/shared/footer/footer.component.html -------------------------------------------------------------------------------- /Frontend/gis/src/app/shared/footer/footer.component.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/shared/footer/footer.component.less -------------------------------------------------------------------------------- /Frontend/gis/src/app/shared/footer/footer.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/shared/footer/footer.component.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/shared/hospital-search/hospital-search.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/shared/hospital-search/hospital-search.component.html -------------------------------------------------------------------------------- /Frontend/gis/src/app/shared/hospital-search/hospital-search.component.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/shared/hospital-search/hospital-search.component.less -------------------------------------------------------------------------------- /Frontend/gis/src/app/shared/hospital-search/hospital-search.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/shared/hospital-search/hospital-search.component.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/shared/language-switcher/language-switcher.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/shared/language-switcher/language-switcher.component.html -------------------------------------------------------------------------------- /Frontend/gis/src/app/shared/language-switcher/language-switcher.component.less: -------------------------------------------------------------------------------- 1 | .locale { 2 | width: 50px; 3 | } 4 | -------------------------------------------------------------------------------- /Frontend/gis/src/app/shared/language-switcher/language-switcher.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/shared/language-switcher/language-switcher.component.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/shared/pixel-chart/pixel-chart.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/shared/pixel-chart/pixel-chart.component.html -------------------------------------------------------------------------------- /Frontend/gis/src/app/shared/pixel-chart/pixel-chart.component.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/shared/pixel-chart/pixel-chart.component.less -------------------------------------------------------------------------------- /Frontend/gis/src/app/shared/pixel-chart/pixel-chart.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/shared/pixel-chart/pixel-chart.component.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/shared/plusminus.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/shared/plusminus.pipe.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/shared/region-selector/region-selector.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/shared/region-selector/region-selector.component.html -------------------------------------------------------------------------------- /Frontend/gis/src/app/shared/region-selector/region-selector.component.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/shared/region-selector/region-selector.component.less -------------------------------------------------------------------------------- /Frontend/gis/src/app/shared/region-selector/region-selector.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/shared/region-selector/region-selector.component.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/shared/resize.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/shared/resize.directive.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/shared/resized-event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/shared/resized-event.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/shared/shared.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/shared/shared.module.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/shared/stacked-area-icu-chart/stacked-area-icu-chart.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/shared/stacked-area-icu-chart/stacked-area-icu-chart.component.html -------------------------------------------------------------------------------- /Frontend/gis/src/app/shared/stacked-area-icu-chart/stacked-area-icu-chart.component.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/shared/stacked-area-icu-chart/stacked-area-icu-chart.component.less -------------------------------------------------------------------------------- /Frontend/gis/src/app/shared/stacked-area-icu-chart/stacked-area-icu-chart.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/shared/stacked-area-icu-chart/stacked-area-icu-chart.component.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/shared/table-overview/table-overview.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/shared/table-overview/table-overview.component.html -------------------------------------------------------------------------------- /Frontend/gis/src/app/shared/table-overview/table-overview.component.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/shared/table-overview/table-overview.component.less -------------------------------------------------------------------------------- /Frontend/gis/src/app/shared/table-overview/table-overview.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/shared/table-overview/table-overview.component.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/shared/translate.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/shared/translate.pipe.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/shared/vega/vega.component.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/shared/vega/vega.component.less -------------------------------------------------------------------------------- /Frontend/gis/src/app/shared/vega/vega.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/shared/vega/vega.component.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/shared/with-loading.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/shared/with-loading.pipe.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/timeslider/timeslider.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/timeslider/timeslider.component.html -------------------------------------------------------------------------------- /Frontend/gis/src/app/timeslider/timeslider.component.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/timeslider/timeslider.component.less -------------------------------------------------------------------------------- /Frontend/gis/src/app/timeslider/timeslider.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/timeslider/timeslider.component.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/util/aggregation-level.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/util/aggregation-level.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/util/date-util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/util/date-util.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/util/force-directed-layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/util/force-directed-layout.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/util/forceDirectedLayout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/util/forceDirectedLayout.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/util/locales/en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/util/locales/en.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/util/rect-collide.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/util/rect-collide.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/util/regression.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/util/regression.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/util/safe-debounce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/util/safe-debounce.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/util/touch-hack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/util/touch-hack.ts -------------------------------------------------------------------------------- /Frontend/gis/src/app/util/ts-canvas-layer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/app/util/ts-canvas-layer.ts -------------------------------------------------------------------------------- /Frontend/gis/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Frontend/gis/src/assets/Daniel_Keim.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/assets/Daniel_Keim.jpg -------------------------------------------------------------------------------- /Frontend/gis/src/assets/Helipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/assets/Helipad.png -------------------------------------------------------------------------------- /Frontend/gis/src/assets/Krankenhaus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/assets/Krankenhaus.png -------------------------------------------------------------------------------- /Frontend/gis/src/assets/Legende.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/assets/Legende.png -------------------------------------------------------------------------------- /Frontend/gis/src/assets/Legende.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/assets/Legende.psd -------------------------------------------------------------------------------- /Frontend/gis/src/assets/Legende2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/assets/Legende2.png -------------------------------------------------------------------------------- /Frontend/gis/src/assets/Legende2.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/assets/Legende2.psd -------------------------------------------------------------------------------- /Frontend/gis/src/assets/Menna.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/assets/Menna.jpg -------------------------------------------------------------------------------- /Frontend/gis/src/assets/agg_b1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/assets/agg_b1.png -------------------------------------------------------------------------------- /Frontend/gis/src/assets/agg_b2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/assets/agg_b2.png -------------------------------------------------------------------------------- /Frontend/gis/src/assets/agg_b3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/assets/agg_b3.png -------------------------------------------------------------------------------- /Frontend/gis/src/assets/agg_b4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/assets/agg_b4.png -------------------------------------------------------------------------------- /Frontend/gis/src/assets/cakmak.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/assets/cakmak.jpg -------------------------------------------------------------------------------- /Frontend/gis/src/assets/cgmi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/assets/cgmi.png -------------------------------------------------------------------------------- /Frontend/gis/src/assets/coronavislogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/assets/coronavislogo.png -------------------------------------------------------------------------------- /Frontend/gis/src/assets/coronavislogo300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/assets/coronavislogo300.png -------------------------------------------------------------------------------- /Frontend/gis/src/assets/covisexpl1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/assets/covisexpl1.png -------------------------------------------------------------------------------- /Frontend/gis/src/assets/covisexpl2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/assets/covisexpl2.png -------------------------------------------------------------------------------- /Frontend/gis/src/assets/dbvis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/assets/dbvis.png -------------------------------------------------------------------------------- /Frontend/gis/src/assets/dbviscube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/assets/dbviscube.png -------------------------------------------------------------------------------- /Frontend/gis/src/assets/fabian.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/assets/fabian.jpg -------------------------------------------------------------------------------- /Frontend/gis/src/assets/fischer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/assets/fischer.jpg -------------------------------------------------------------------------------- /Frontend/gis/src/assets/fstoffel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/assets/fstoffel.jpg -------------------------------------------------------------------------------- /Frontend/gis/src/assets/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/assets/github.svg -------------------------------------------------------------------------------- /Frontend/gis/src/assets/help-dialog-beds-de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/assets/help-dialog-beds-de.png -------------------------------------------------------------------------------- /Frontend/gis/src/assets/help-dialog-beds-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/assets/help-dialog-beds-en.png -------------------------------------------------------------------------------- /Frontend/gis/src/assets/help-dialog-cases-de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/assets/help-dialog-cases-de.png -------------------------------------------------------------------------------- /Frontend/gis/src/assets/help-dialog-cases-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/assets/help-dialog-cases-en.png -------------------------------------------------------------------------------- /Frontend/gis/src/assets/icons/apple-touch-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/assets/icons/apple-touch-icon-114x114.png -------------------------------------------------------------------------------- /Frontend/gis/src/assets/icons/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/assets/icons/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /Frontend/gis/src/assets/icons/apple-touch-icon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/assets/icons/apple-touch-icon-128x128.png -------------------------------------------------------------------------------- /Frontend/gis/src/assets/icons/apple-touch-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/assets/icons/apple-touch-icon-144x144.png -------------------------------------------------------------------------------- /Frontend/gis/src/assets/icons/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/assets/icons/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /Frontend/gis/src/assets/icons/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/assets/icons/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /Frontend/gis/src/assets/icons/apple-touch-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/assets/icons/apple-touch-icon-57x57.png -------------------------------------------------------------------------------- /Frontend/gis/src/assets/icons/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/assets/icons/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /Frontend/gis/src/assets/icons/apple-touch-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/assets/icons/apple-touch-icon-72x72.png -------------------------------------------------------------------------------- /Frontend/gis/src/assets/icons/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/assets/icons/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /Frontend/gis/src/assets/icons/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/assets/icons/apple-touch-icon-precomposed.png -------------------------------------------------------------------------------- /Frontend/gis/src/assets/icons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/assets/icons/apple-touch-icon.png -------------------------------------------------------------------------------- /Frontend/gis/src/assets/icons/favicon-160x160.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/assets/icons/favicon-160x160.png -------------------------------------------------------------------------------- /Frontend/gis/src/assets/icons/favicon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/assets/icons/favicon-192x192.png -------------------------------------------------------------------------------- /Frontend/gis/src/assets/icons/favicon-196x196.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/assets/icons/favicon-196x196.png -------------------------------------------------------------------------------- /Frontend/gis/src/assets/icons/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/assets/icons/favicon-96x96.png -------------------------------------------------------------------------------- /Frontend/gis/src/assets/icons/favicon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/assets/icons/favicon.gif -------------------------------------------------------------------------------- /Frontend/gis/src/assets/icons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/assets/icons/favicon.ico -------------------------------------------------------------------------------- /Frontend/gis/src/assets/icons/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/assets/icons/favicon.png -------------------------------------------------------------------------------- /Frontend/gis/src/assets/jentner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/assets/jentner.jpg -------------------------------------------------------------------------------- /Frontend/gis/src/assets/jochen_goertler.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/assets/jochen_goertler.jpg -------------------------------------------------------------------------------- /Frontend/gis/src/assets/juri.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/assets/juri.jpg -------------------------------------------------------------------------------- /Frontend/gis/src/assets/kabitz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/assets/kabitz.jpg -------------------------------------------------------------------------------- /Frontend/gis/src/assets/kraus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/assets/kraus.jpg -------------------------------------------------------------------------------- /Frontend/gis/src/assets/matt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/assets/matt.jpg -------------------------------------------------------------------------------- /Frontend/gis/src/assets/meschenmoser.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/assets/meschenmoser.jpg -------------------------------------------------------------------------------- /Frontend/gis/src/assets/miller.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/assets/miller.jpg -------------------------------------------------------------------------------- /Frontend/gis/src/assets/oliver.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/assets/oliver.jpg -------------------------------------------------------------------------------- /Frontend/gis/src/assets/robots.txt: -------------------------------------------------------------------------------- 1 | User-Agent: * 2 | Allow: / -------------------------------------------------------------------------------- /Frontend/gis/src/assets/seebacher.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/assets/seebacher.jpg -------------------------------------------------------------------------------- /Frontend/gis/src/assets/sevastjanova.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/assets/sevastjanova.jpg -------------------------------------------------------------------------------- /Frontend/gis/src/assets/solution-enabler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/assets/solution-enabler.png -------------------------------------------------------------------------------- /Frontend/gis/src/assets/streeb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/assets/streeb.jpg -------------------------------------------------------------------------------- /Frontend/gis/src/assets/thilo-spinner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/assets/thilo-spinner.jpg -------------------------------------------------------------------------------- /Frontend/gis/src/assets/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/assets/twitter.svg -------------------------------------------------------------------------------- /Frontend/gis/src/assets/udo-schlegel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/assets/udo-schlegel.jpg -------------------------------------------------------------------------------- /Frontend/gis/src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/constants.ts -------------------------------------------------------------------------------- /Frontend/gis/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/environments/environment.prod.ts -------------------------------------------------------------------------------- /Frontend/gis/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/environments/environment.ts -------------------------------------------------------------------------------- /Frontend/gis/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/favicon.ico -------------------------------------------------------------------------------- /Frontend/gis/src/i18n/messages.de.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/i18n/messages.de.xlf -------------------------------------------------------------------------------- /Frontend/gis/src/i18n/messages.en.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/i18n/messages.en.xlf -------------------------------------------------------------------------------- /Frontend/gis/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/index.html -------------------------------------------------------------------------------- /Frontend/gis/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/main.ts -------------------------------------------------------------------------------- /Frontend/gis/src/media-queryies.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/media-queryies.less -------------------------------------------------------------------------------- /Frontend/gis/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/polyfills.ts -------------------------------------------------------------------------------- /Frontend/gis/src/styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/styles.less -------------------------------------------------------------------------------- /Frontend/gis/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/src/test.ts -------------------------------------------------------------------------------- /Frontend/gis/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/tsconfig.app.json -------------------------------------------------------------------------------- /Frontend/gis/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/tsconfig.json -------------------------------------------------------------------------------- /Frontend/gis/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/tsconfig.spec.json -------------------------------------------------------------------------------- /Frontend/gis/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/webpack.config.js -------------------------------------------------------------------------------- /Frontend/gis/xliffmerge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/gis/xliffmerge.json -------------------------------------------------------------------------------- /Frontend/mysite.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/mysite.conf -------------------------------------------------------------------------------- /Frontend/replace-environment-urls.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Frontend/replace-environment-urls.sh -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/SECURITY.md -------------------------------------------------------------------------------- /Tiles/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Tiles/Dockerfile -------------------------------------------------------------------------------- /Tiles/mysite.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/Tiles/mysite.conf -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /k8/backend-new/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/k8/backend-new/Chart.yaml -------------------------------------------------------------------------------- /k8/backend-new/templates/Deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/k8/backend-new/templates/Deployment.yaml -------------------------------------------------------------------------------- /k8/backend-new/templates/Ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/k8/backend-new/templates/Ingress.yaml -------------------------------------------------------------------------------- /k8/backend-new/templates/Service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/k8/backend-new/templates/Service.yaml -------------------------------------------------------------------------------- /k8/backend-new/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/k8/backend-new/templates/_helpers.tpl -------------------------------------------------------------------------------- /k8/backend-new/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/k8/backend-new/values.yaml -------------------------------------------------------------------------------- /k8/crawler-new/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/k8/crawler-new/Chart.yaml -------------------------------------------------------------------------------- /k8/crawler-new/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/k8/crawler-new/templates/_helpers.tpl -------------------------------------------------------------------------------- /k8/crawler-new/templates/cron-crawler-bed-capacity-lk.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/k8/crawler-new/templates/cron-crawler-bed-capacity-lk.yaml -------------------------------------------------------------------------------- /k8/crawler-new/templates/cron-crawler-divi_private.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/k8/crawler-new/templates/cron-crawler-divi_private.yaml -------------------------------------------------------------------------------- /k8/crawler-new/templates/cron-crawler-divi_public.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/k8/crawler-new/templates/cron-crawler-divi_public.yaml -------------------------------------------------------------------------------- /k8/crawler-new/templates/cron-crawler-patient-cases.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/k8/crawler-new/templates/cron-crawler-patient-cases.yaml -------------------------------------------------------------------------------- /k8/crawler-new/templates/cron-crawler-risklayer-lk.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/k8/crawler-new/templates/cron-crawler-risklayer-lk.yaml -------------------------------------------------------------------------------- /k8/crawler-new/templates/cron-crawler-rki-lk-bl-cases.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/k8/crawler-new/templates/cron-crawler-rki-lk-bl-cases.yaml -------------------------------------------------------------------------------- /k8/crawler-new/templates/cron-crawler-rki_incidences.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/k8/crawler-new/templates/cron-crawler-rki_incidences.yaml -------------------------------------------------------------------------------- /k8/crawler-new/templates/cron-crawler-survstat-agegroups.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/k8/crawler-new/templates/cron-crawler-survstat-agegroups.yaml -------------------------------------------------------------------------------- /k8/crawler-new/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/k8/crawler-new/values.yaml -------------------------------------------------------------------------------- /k8/frontend-new/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/k8/frontend-new/Chart.yaml -------------------------------------------------------------------------------- /k8/frontend-new/templates/Deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/k8/frontend-new/templates/Deployment.yaml -------------------------------------------------------------------------------- /k8/frontend-new/templates/Ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/k8/frontend-new/templates/Ingress.yaml -------------------------------------------------------------------------------- /k8/frontend-new/templates/Service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/k8/frontend-new/templates/Service.yaml -------------------------------------------------------------------------------- /k8/frontend-new/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/k8/frontend-new/templates/_helpers.tpl -------------------------------------------------------------------------------- /k8/frontend-new/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/k8/frontend-new/values.yaml -------------------------------------------------------------------------------- /k8/tiles-new/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/k8/tiles-new/Chart.yaml -------------------------------------------------------------------------------- /k8/tiles-new/templates/Deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/k8/tiles-new/templates/Deployment.yaml -------------------------------------------------------------------------------- /k8/tiles-new/templates/Ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/k8/tiles-new/templates/Ingress.yaml -------------------------------------------------------------------------------- /k8/tiles-new/templates/Service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/k8/tiles-new/templates/Service.yaml -------------------------------------------------------------------------------- /k8/tiles-new/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/k8/tiles-new/templates/_helpers.tpl -------------------------------------------------------------------------------- /k8/tiles-new/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/k8/tiles-new/values.yaml -------------------------------------------------------------------------------- /misc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/misc/.gitignore -------------------------------------------------------------------------------- /misc/notebooks/.ipynb_checkpoints/ebrake-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/misc/notebooks/.ipynb_checkpoints/ebrake-checkpoint.ipynb -------------------------------------------------------------------------------- /misc/notebooks/.ipynb_checkpoints/queries_helper-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/misc/notebooks/.ipynb_checkpoints/queries_helper-checkpoint.ipynb -------------------------------------------------------------------------------- /misc/notebooks/.ipynb_checkpoints/rki-de-inzidenzen-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/misc/notebooks/.ipynb_checkpoints/rki-de-inzidenzen-checkpoint.ipynb -------------------------------------------------------------------------------- /misc/notebooks/.ipynb_checkpoints/survestat-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/misc/notebooks/.ipynb_checkpoints/survestat-checkpoint.ipynb -------------------------------------------------------------------------------- /misc/notebooks/Fallzahlen_Kum_Tab.xlsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/misc/notebooks/Fallzahlen_Kum_Tab.xlsm -------------------------------------------------------------------------------- /misc/notebooks/Fallzahlen_Kum_Tab.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/misc/notebooks/Fallzahlen_Kum_Tab.xlsx -------------------------------------------------------------------------------- /misc/notebooks/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/misc/notebooks/db.py -------------------------------------------------------------------------------- /misc/notebooks/ebrake.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/misc/notebooks/ebrake.ipynb -------------------------------------------------------------------------------- /misc/notebooks/loadenv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/misc/notebooks/loadenv.py -------------------------------------------------------------------------------- /misc/notebooks/queries_helper.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/misc/notebooks/queries_helper.ipynb -------------------------------------------------------------------------------- /misc/notebooks/rki-de-inzidenzen.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/misc/notebooks/rki-de-inzidenzen.ipynb -------------------------------------------------------------------------------- /misc/notebooks/survestat.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/misc/notebooks/survestat.ipynb -------------------------------------------------------------------------------- /misc/requirements.txt: -------------------------------------------------------------------------------- 1 | jupyter 2 | pandas 3 | psycopg2-binary 4 | zeep 5 | python-dotenv 6 | holidays -------------------------------------------------------------------------------- /misc/survstat_bug_after.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/misc/survstat_bug_after.PNG -------------------------------------------------------------------------------- /misc/survstat_bug_before.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/misc/survstat_bug_before.PNG -------------------------------------------------------------------------------- /mockups/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mockups/capacities_area.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/mockups/capacities_area.md -------------------------------------------------------------------------------- /mockups/capacities_area.md.7347.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/mockups/capacities_area.md.7347.png -------------------------------------------------------------------------------- /mockups/capacities_hospital.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/mockups/capacities_hospital.md -------------------------------------------------------------------------------- /mockups/capacities_hospital.md.6091.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/mockups/capacities_hospital.md.6091.png -------------------------------------------------------------------------------- /mockups/hospital_glyph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/mockups/hospital_glyph.md -------------------------------------------------------------------------------- /mockups/hospital_glyph.md.7453.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/mockups/hospital_glyph.md.7453.png -------------------------------------------------------------------------------- /mockups/hospital_tooltip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/mockups/hospital_tooltip.md -------------------------------------------------------------------------------- /mockups/hospital_tooltip.md.4534.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/mockups/hospital_tooltip.md.4534.png -------------------------------------------------------------------------------- /mockups/hospital_tooltip.md.6702.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/mockups/hospital_tooltip.md.6702.png -------------------------------------------------------------------------------- /mockups/landkreis_tooltip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/mockups/landkreis_tooltip.md -------------------------------------------------------------------------------- /mockups/landkreis_tooltip.md.6702.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/mockups/landkreis_tooltip.md.6702.png -------------------------------------------------------------------------------- /mockups/main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/mockups/main.md -------------------------------------------------------------------------------- /mockups/main.md.5333.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/mockups/main.md.5333.png -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/renovate.json -------------------------------------------------------------------------------- /risklayer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/risklayer.md -------------------------------------------------------------------------------- /survstat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbvis-ukon/coronavis/HEAD/survstat.md --------------------------------------------------------------------------------