Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Frictionless Data #3

Open
wants to merge 13 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions Metadaten/frictionless_data_package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"name": "10.5281/zenodo.7189871",
"title": "Daten der Notaufnahmesurveillance",
"description": "Diese Datei gibt eine Übersicht über alle Datensätze in diesem Open Data Repository. Informationen zum Frictionless Data Standard finden Sie unter https://specs.frictionlessdata.io/ und https://framework.frictionlessdata.io/. Mehr Information über diesen Datensatz finden sie auf Zenodo (https://doi.org/10.5281/zenodo.7189871) oder Github (https://github.com/robert-koch-institut/Daten_der_Notaufnahmesurveillance)",
"homepage": "https://doi.org/10.5281/zenodo.7189871",
"resources": [
{
"name": "notaufnahmesurveillance_standorte",
"type": "table",
"path": "../Notaufnahmesurveillance_Standorte.tsv",
"scheme": "file",
"format": "tsv",
"mediatype": "text/csv",
"schema": "schemas/frictionless_data_schema_Notaufnahmesurveillance_Standorte.json"
},
{
"name": "notaufnahmesurveillance_zeitreihen_syndrome",
"type": "table",
"path": "../Notaufnahmesurveillance_Zeitreihen_Syndrome.tsv",
"scheme": "file",
"format": "tsv",
"mediatype": "text/csv",
"schema": "schemas/frictionless_data_schema_Notaufnahmesurveillance_Zeitreihen_Syndrome.json"
}
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,106 @@
{
"fields": [
{
"name": "ik_number",
"type": "string",
"description": "ID der Notaufnahme"
},
{
"name": "ed_name",
"type": "string",
"description": "Name der Notaufnahme",
"constraints": {
"required": true
}
},
{
"name": "ed_type",
"type": "string",
"description": "Notaufnahmetyp (`central`: Zentrale Notaufnahme, `pediatric`: Kindernotaufnahme)",
"constraints": {
"enum": [
"central",
"pediatric"
]
}
},
{
"name": "level_of_care",
"type": "string",
"description": "[Versorgungsstufe](https://www.g-ba.de/downloads/62-492-2340/Not-Kra-R_2020-11-20_iK-2020-11-01.pdf) der Notaufnahme (deutsch)",
"constraints": {
"enum": [
"Basisnotfallversorgung",
"Erweiterte Versorgung",
"Umfassende Versorgung"
]
}
},
{
"name": "state",
"type": "string",
"description": "Bundesland (deutsch)",
"constraints": {
"enum": [
"Baden-Württemberg",
"Bayern",
"Berlin",
"Brandenburg",
"Bremen",
"Hamburg",
"Hessen",
"Mecklenburg-Vorpommern",
"Niedersachsen",
"Nordrhein-Westfalen",
"Rheinland-Pfalz",
"Saarland",
"Sachsen",
"Sachsen-Anhalt",
"Schleswig-Holstein",
"Thüringen"
]
}
},
{
"name": "state_id",
"type": "string",
"description": "[Länderschlüssel](https://de.wikipedia.org/wiki/Amtlicher_Gemeindeschl%C3%BCssel) des Bundeslandes",
"constraints": {
"enum": [
"01",
"02",
"03",
"04",
"05",
"06",
"07",
"08",
"09",
"10",
"11",
"12",
"13",
"14",
"15",
"16"
]
}
},
{
"name": "latitude",
"type": "number",
"description": "Breitengrad des Standorts der Notaufnahme",
"constraints": {
"minimum": 0
}
},
{
"name": "longitude",
"type": "number",
"description": "Längengrad des Standorts der Notaufnahme",
"constraints": {
"minimum": 0
}
}
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,114 @@
{
"fields": [
{
"name": "date",
"type": "date",
"description": "Datum; JJJJ entspricht dem Jahr, MM dem Monat und TT dem Tag",
"format": "%Y-%m-%d"
},
{
"name": "ed_type",
"type": "string",
"description": "Notaufnahmetyp (`all`: alle Notaufnahmen, `central`: Zentrale Notaufnahme, _pediatric_: Kindernotaufnahme)",
"constraints": {
"enum": [
"all",
"central",
"pediatric"
]
}
},
{
"name": "age_group",
"type": "string",
"description": "Altersgruppe (`00+`: alle Altersgruppen, `0-4`: 0-4 Jahre, ...)",
"constraints": {
"enum": [
"00+",
"0-4",
"5-9",
"10-14",
"15-19",
"20-39",
"40-59",
"60-79",
"80+"
]
}
},
{
"name": "syndrome",
"type": "string",
"description": "Syndromdefinitionen für akute respiratorische Erkrankungen (ARE/ARI), schwere akute respiratorische Infektionen (SARI) und grippeähnliche Erkrankungen (Influenza-like-illness, ILI), siehe [Boender et al. 2022](https://www.eurosurveillance.org/content/10.2807/1560-7917.ES.2022.27.27.2100865?TRACK=RSS). Für gastrointestinale Infektionen (GI) siehe [Baum et al. 2023](https://doi.org/10.1101/2023.11.28.23298985).",
"constraints": {
"enum": [
"ARI",
"SARI",
"ILI",
"COVID",
"GI"
]
}
},
{
"name": "relative_cases",
"type": "number",
"description": "Relativer Anteil Notaufnahmevorstellungen an diesem Tag mit gegebenem Syndrom an allen Notaufnahmevorstellungen in gegebenen Notaufnahmen von gegebenem Typ",
"constraints": {
"minimum": 0
}
},
{
"name": "relative_cases_7day_ma",
"type": "number",
"description": "Gleitender 7-Tage Durchschnitt des relativen Anteil von Fällen des Syndroms an den Gesamtvorstellungen",
"missingValues": [
"NA"
],
"constraints": {
"minimum": 0
}
},
{
"name": "expected_value",
"type": "number",
"description": "Erwartungswert des relativen Anteils von Fällen des Syndroms an den Gesamtvorstellungen",
"missingValues": [
"NA"
],
"constraints": {
"minimum": 0
}
},
{
"name": "expected_lowerbound",
"type": "number",
"description": "Untere Grenze des 80%-Prädiktionsintervalls des Erwartungswerts",
"missingValues": [
"NA"
],
"constraints": {
"minimum": 0
}
},
{
"name": "expected_upperbound",
"type": "number",
"description": "Obere Grenze des 80%-Prädiktionsintervalls des Erwartungswerts",
"missingValues": [
"NA"
],
"constraints": {
"minimum": 0
}
},
{
"name": "ed_count",
"type": "integer",
"description": "Anzahl von eingeschlossenen Notaufnahmen an diesem Tag in den Notaufnahmen vom gegebenen Notaufnahmetyp",
"constraints": {
"minimum": 0
}
}
]
}
Loading