Skip to content

Commit

Permalink
Merge pull request #2 from robert-koch-institut/frictionless_data
Browse files Browse the repository at this point in the history
Added Frictionless Data
  • Loading branch information
HannesWuensche authored Dec 4, 2024
2 parents 61a60f5 + e566a11 commit ca8ad68
Show file tree
Hide file tree
Showing 3 changed files with 65 additions and 5 deletions.
33 changes: 33 additions & 0 deletions Metadaten/schemas/tableschema_COVID-ARE-Konsultationsinzidenz.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"fields": [
{
"name": "date",
"type": "date",
"description": "Berichtswoche des RKI im IS0-8601 Format",
"format": "%Y-W%W"
},
{
"name": "agegroup",
"type": "string",
"description": "Altersgruppen in Jahren, `00+` gibt die Gesamtinzidenz über alle Altersgruppen an.",
"constraints": {
"enum": [
"00-04",
"05-14",
"15-34",
"35-59",
"60+",
"00+"
]
}
},
{
"name": "are_covid19_incidence",
"type": "number",
"description": "Konsultationsinzidenz akuter respiratorischer Erkrankungen mit COVID-19",
"constraints": {
"minimum": 0
}
}
]
}
20 changes: 15 additions & 5 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,12 +81,22 @@ Die Daten werden dienstags im Rahmen der wöchentlichen Berichterstattung ausgew
### Variablen und Variablenausprägungen

<!-- DATA_SCHEMA_SPECIFICATION_START: {"id": "COVID-ARE-Konsultationsinzidenz", "lang": "de"} -->

Die Datei [COVID-ARE-Konsultationsinzidenz.csv](https://github.com/robert-koch-institut/COVID-ARE-Konsultationsinzidenz/blob/main/COVID-ARE-Konsultationsinzidenz.csv) enthält die in der folgenden Tabelle abgebildeten Variablen und deren Ausprägungen. Ein maschinenlesbares Datenschema ist im [Data Package Standard](https://datapackage.org/) in [tableschema_COVID-ARE-Konsultationsinzidenz.json](https://github.com/robert-koch-institut/COVID-ARE-Konsultationsinzidenz/blob/main/Metadaten/schemas/tableschema_COVID-ARE-Konsultationsinzidenz.json) hinterlegt:
> [tableschema_COVID-ARE-Konsultationsinzidenz.json](https://github.com/robert-koch-institut/COVID-ARE-Konsultationsinzidenz/blob/main/Metadaten/schemas/tableschema_COVID-ARE-Konsultationsinzidenz.json)
<!-- DATA_SCHEMA_TABLE_START -->
| Variable | Typ | Ausprägungen | Beschreibung |
|:----------------------|:-------|:--------------------------------------------------------|:-----------------------------------------------------------------------------------|
| date | date | Format: `YYYY-Www` | Berichtswoche des RKI im IS0-8601 Format |
| agegroup | string | Werte: `00-04`, `05-14`, `15-34`, `35-59`, `60+`, `00+` | Altersgruppen in Jahren, `00+` gibt die Gesamtinzidenz über alle Altersgruppen an. |
| are_covid19_incidence | number | Werte: `≥0` | Konsultationsinzidenz akuter respiratorischer Erkrankungen mit COVID-19 |

<!-- DATA_SCHEMA_TABLE_END -->

<!-- DATA_SCHEMA_SPECIFICATION_END -->

|Variable|Typ|Ausprägung|Beschreibung|
| --- | --- | --- | --- |
|date|Datum|`jjjj-Www`|Berichtswoche des RKI im IS0-8601 Format|
|agegroup| Text | `00-04`, `05-14`, `15-34`, `35-59`, `60+`,`00+` | Altersgruppen in Jahren, `00+` gibt die Gesamtinzidenz über alle Altersgruppen an. |
|are_covid19_incidence|Rationale Zahl||Konsultationsinzidenz akuter respiratorischer Erkrankungen mit COVID-19|

### Formatierung

Expand Down
17 changes: 17 additions & 0 deletions datapackage.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"name": "10.5281/zenodo.7221096",
"title": "COVID-ARE-Konsultationsinzidenz",
"description": "Diese Datei gibt eine Übersicht über die im Datensatz enthaltenen Daten im Data Package Standard (https://datapackage.org). Der dokumentierte Datensatz ist auf den Plattformen Zenodo (https://doi.org/10.5281/zenodo.7221096) und Github (https://github.com/robert-koch-institut/COVID-ARE-Konsultationsinzidenz) verfügbar.",
"homepage": "https://doi.org/10.5281/zenodo.7221096",
"resources": [
{
"name": "covid-are-konsultationsinzidenz",
"type": "table",
"path": "COVID-ARE-Konsultationsinzidenz.csv",
"scheme": "file",
"format": "csv",
"mediatype": "text/csv",
"schema": "Metadaten/schemas/tableschema_COVID-ARE-Konsultationsinzidenz.json"
}
]
}

0 comments on commit ca8ad68

Please sign in to comment.