Datasets:
Refresh dataset README
Browse files
README.md
CHANGED
|
@@ -1,83 +1,71 @@
|
|
| 1 |
-
---
|
| 2 |
-
license:
|
| 3 |
-
tags:
|
| 4 |
-
- weather
|
| 5 |
-
- aarhus
|
| 6 |
-
- denmark
|
| 7 |
-
- forecast
|
| 8 |
-
- observations
|
| 9 |
-
- machine-learning
|
| 10 |
-
---
|
| 11 |
-
|
| 12 |
-
# DMI Aarhus Weather Data
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
##
|
| 17 |
-
|
| 18 |
-
|
|
| 19 |
-
|---
|
| 20 |
-
| `training_matrix.parquet` |
|
| 21 |
-
| `model_registry.json` |
|
| 22 |
-
| `model_meta.json` |
|
| 23 |
-
| `temperature_models.pkl` |
|
| 24 |
-
| `wind_speed_models.pkl` |
|
| 25 |
-
| `wind_gust_models.pkl` |
|
| 26 |
-
| `rain_event_models.pkl` |
|
| 27 |
-
| `rain_amount_models.pkl` |
|
| 28 |
-
|
| 29 |
-
##
|
| 30 |
-
|
| 31 |
-
|
|
| 32 |
-
|---
|
| 33 |
-
| `
|
| 34 |
-
| `
|
| 35 |
-
|
| 36 |
-
|
| 37 |
-
|
| 38 |
-
|
| 39 |
-
|
| 40 |
-
|
| 41 |
-
|
| 42 |
-
|
| 43 |
-
|
| 44 |
-
|
| 45 |
-
|
| 46 |
-
|
| 47 |
-
|
| 48 |
-
|
| 49 |
-
|
| 50 |
-
|
| 51 |
-
|
| 52 |
-
|
| 53 |
-
|
| 54 |
-
|
| 55 |
-
|
| 56 |
-
|
| 57 |
-
|
| 58 |
-
|
| 59 |
-
|
| 60 |
-
|
| 61 |
-
|
| 62 |
-
|
| 63 |
-
|
| 64 |
-
|
| 65 |
-
-
|
| 66 |
-
-
|
| 67 |
-
-
|
| 68 |
-
|
| 69 |
-
##
|
| 70 |
-
|
| 71 |
-
|
| 72 |
-
|
| 73 |
-
## Brug
|
| 74 |
-
|
| 75 |
-
Dette dataset bruges af:
|
| 76 |
-
- **dmi-ml-trainer**: Træner ML-modeller fra træningsdata
|
| 77 |
-
- **dmi-collector**: Loader aktive modeller til predictions
|
| 78 |
-
- **dmi-vs-ml-dashboard**: Loader data til visualisering og evaluering
|
| 79 |
-
|
| 80 |
-
## Opdateringsfrekvens
|
| 81 |
-
|
| 82 |
-
- **training_matrix.parquet**: Dagligt kl. 06:00 (dmi-collector)
|
| 83 |
-
- **Model filer**: Hver søndag kl. 06:30 (dmi-ml-trainer)
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: cc-by-4.0
|
| 3 |
+
tags:
|
| 4 |
+
- weather
|
| 5 |
+
- aarhus
|
| 6 |
+
- denmark
|
| 7 |
+
- forecast
|
| 8 |
+
- observations
|
| 9 |
+
- machine-learning
|
| 10 |
+
---
|
| 11 |
+
|
| 12 |
+
# DMI Aarhus Weather Data
|
| 13 |
+
|
| 14 |
+
Training data and model artifact dataset for the Aarhus weather pipeline. Maintained by `Ciroc0`.
|
| 15 |
+
|
| 16 |
+
## Primary files
|
| 17 |
+
|
| 18 |
+
| File | Purpose | Produced by |
|
| 19 |
+
| --- | --- | --- |
|
| 20 |
+
| `training_matrix.parquet` | Current source of truth for training rows and causal observation context | `dmi-collector` |
|
| 21 |
+
| `model_registry.json` | Active bucket registry per target | `dmi-ml-trainer` |
|
| 22 |
+
| `model_meta.json` | Training timestamp, sample count and training window | `dmi-ml-trainer` |
|
| 23 |
+
| `temperature_models.pkl` | Temperature bundle | `dmi-ml-trainer` |
|
| 24 |
+
| `wind_speed_models.pkl` | Wind speed bundle | `dmi-ml-trainer` |
|
| 25 |
+
| `wind_gust_models.pkl` | Wind gust bundle | `dmi-ml-trainer` |
|
| 26 |
+
| `rain_event_models.pkl` | Rain event bundle | `dmi-ml-trainer` |
|
| 27 |
+
| `rain_amount_models.pkl` | Rain amount bundle | `dmi-ml-trainer` |
|
| 28 |
+
|
| 29 |
+
## Compatibility files
|
| 30 |
+
|
| 31 |
+
| File | Status | Notes |
|
| 32 |
+
| --- | --- | --- |
|
| 33 |
+
| `data.parquet` | Legacy | Still readable by compatibility code |
|
| 34 |
+
| `xgb_model.pkl` | Legacy | Older single-target artifact, not the current multi-target source of truth |
|
| 35 |
+
|
| 36 |
+
## Schema highlights for `training_matrix.parquet`
|
| 37 |
+
|
| 38 |
+
- `target_timestamp`
|
| 39 |
+
- `reference_time`
|
| 40 |
+
- `lead_time_hours`
|
| 41 |
+
- `lead_bucket`
|
| 42 |
+
- `dmi_*_pred`
|
| 43 |
+
- `actual_*`
|
| 44 |
+
- `forecast_wind_u`
|
| 45 |
+
- `forecast_wind_v`
|
| 46 |
+
- `dmi_*_pred_run_delta`
|
| 47 |
+
- `observation_context_timestamp`
|
| 48 |
+
- `obs_*`
|
| 49 |
+
- `temp_correction_target`
|
| 50 |
+
- `wind_speed_correction_target`
|
| 51 |
+
- `wind_gust_correction_target`
|
| 52 |
+
|
| 53 |
+
## Location
|
| 54 |
+
|
| 55 |
+
- Aarhus, Denmark
|
| 56 |
+
- `56.1567`, `10.2108`
|
| 57 |
+
- timezone: `Europe/Copenhagen`
|
| 58 |
+
|
| 59 |
+
## Attribution
|
| 60 |
+
|
| 61 |
+
This dataset is released under `CC BY 4.0`.
|
| 62 |
+
|
| 63 |
+
Please preserve attribution to:
|
| 64 |
+
|
| 65 |
+
- `Ciroc0`
|
| 66 |
+
- `Open-Meteo - https://open-meteo.com`
|
| 67 |
+
- `DMI / DMI HARMONIE`
|
| 68 |
+
|
| 69 |
+
## Note on data rights
|
| 70 |
+
|
| 71 |
+
This dataset contains derived weather data and model artifacts built from upstream services. Attribution requirements from upstream providers still apply.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|