1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 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 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392
|
# dwdwfsapi
Python client to retrieve data provided by DWD via their geoserver WFS API
The DWD (Deutscher Wetterdienst) publishes various weather information for Germany.
The data is published via their [Geoserver](https://maps.dwd.de). For a more information have a look [here](https://www.dwd.de/DE/leistungen/geodienste/geodienste.html) and [here](https://maps.dwd.de/geoserver/wfs?SERVICE=WFS&VERSION=2.0.0&REQUEST=GetCapabilities).
## Install
```
pip install dwdwfsapi
```
## Usage
The WFS API currently consists of three modules. One for retrieving the current weather warnings, one for retrieving the bio weather forecast and one for retrieving the pollen flight forecast.
### Weather warnings module
#### Quickstart example
Python code
```
from dwdwfsapi import DwdWeatherWarningsAPI
dwd = DwdWeatherWarningsAPI('813073088')
if dwd.data_valid:
print(f"Warncell id: {dwd.warncell_id}")
print(f"Warncell name: {dwd.warncell_name}")
print(f"Number of current warnings: {len(dwd.current_warnings)}")
print(f"Current warning level: {dwd.current_warning_level}")
print(f"Number of expected warnings: {len(dwd.expected_warnings)}")
print(f"Expected warning level: {dwd.expected_warning_level}")
print(f"Last update: {dwd.last_update}")
print('-----------')
for warning in dwd.current_warnings:
print(warning)
print('-----------')
for warning in dwd.expected_warnings:
print(warning)
print('-----------')
```
Result (formatted for better readability)
```
Warncell id: 813073088
Warncell name: Stadt Stralsund
Number of current warnings: 0
Current warning level: 0
Number of expected warnings: 1
Expected warning level: 1
Last update: 2020-04-18 17:57:29.274000+00:00
-----------
{
'start_time': datetime.datetime(2020, 4, 18, 23, 0, tzinfo=datetime.timezone.utc),
'end_time': datetime.datetime(2020, 4, 19, 5, 0, tzinfo=datetime.timezone.utc),
'event': 'FROST',
'event_code': 22,
'headline': 'Amtliche WARNUNG vor FROST',
'description': 'Es tritt leichter Frost um 0 °C auf. In Bodennähe wird leichter Frost bis -4 °C erwartet.',
'instruction': None, 'level': 1,
'parameters':
{
'Lufttemperatur': '~0 [°C]',
'Bodentemperatur': '>-4 [°C]'
},
'color': '#ffff00'
}
-----------
```
#### Detailed description
**Methods:**
- **`__init__(identifier)`**
Create a new weather warnings API class instance
The `identifier` can either be a so called `warncell id` (int), a `warncell name` (str) or a `gps location` (tuple).
It is heavily advised to use `warncell id` over `warncell name` because the name is not unique in some cases. The
`gps location` consists of the latitude and longitude in this order. Keeping this order for the tuple is important for
the query to work correctly.
A list of valid warncell ids and names can be found in [warncells.md](https://github.com/stephan192/dwdwfsapi/blob/master/docs/warncells.md).
Method `update()` is automatically called at the end of a successfull init.
- **`update()`**
Update data by querying DWD server and parsing result
Function should be called regularly, e.g. every 15minutes, to update the data stored in the class attributes.
**Attributes (read only):**
- **`data_valid : bool`**
A flag wether or not the other attributes contain valid values
- **`warncell_id : int`**
The id of the selected warncell
- **`warncell_name : str`**
The name of the selected warncell
If the name is not unique `" (not unique use ID!)"` will be added to the name
- **`last_update : datetime`**
Timestamp of the last update
- **`current_warning_level : int`**
Highest currently active warning level
Range: 0 (=no warning) to 4 (=extreme weather)
- **`current_warnings : list of dicts`**
Dictionary containing all currently active warnings ("Wetterwarnungen", urgency="immediate")
See section warning dictionary for more details
- **`expected_warning_level : int`**
Highest expected warning level
Range: 0 (=no warning) to 4 (=extreme weather)
- **`expected_warnings : list of dicts`**
Dictionary containing all expected warnings ("Vorabinformationen", urgency="future")
See section warning dictionary for more details
**Warning dictionary**
- **`start_time : datetime`**
Timestamp when the warning starts
- **`end_time : datetime`**
Timestamp when the warning ends
- **`event: str`**
String representation of the warning event
- **`event_code: int`**
Integer representation of the warning event
- **`headline : str`**
The official warning headline
- **`description : str`**
A details warning description
- **`instruction : str`**
Instructions and safety notices
- **`urgency : str`**
Warning urgency (either "immediate" or "future")
- **`level : int`**
Warning level
Range: 0 (=no warning) to 4 (=extreme weather)
- **`parameters : dict`**
Dictionary containing warning specific parameters
- **`color : str`**
Warning color formatted #rrggbb
### Bio weather module
#### Quickstart example
Python code
```
from dwdwfsapi import DwdBioWeatherAPI
dwd = DwdBioWeatherAPI(8)
if dwd.data_valid:
for k, v in dwd.forecast_data.items():
print(f"{k} - {v['name']}")
for entry in v["forecast"]:
print(f"\t{entry['start_time']} : {entry['color']} - {entry['level']} = {entry['impact']}")
```
Result
```
1 - allgemeine Befindensbeeinträchtigungen
2024-03-15 00:00:00+00:00 : #ffff00 - 2 = geringe Gefährdung
2024-03-15 12:00:00+00:00 : #37ba29 - 1 = kein Einfluss
2024-03-16 00:00:00+00:00 : #ffff00 - 2 = geringe Gefährdung
2024-03-16 12:00:00+00:00 : #006eff - 0 = positiver Einfluss
2024-03-17 00:00:00+00:00 : #ffff00 - 2 = geringe Gefährdung
2024-03-17 12:00:00+00:00 : #ffff00 - 2 = geringe Gefährdung
2 - Asthma
2024-03-15 00:00:00+00:00 : #ffff00 - 2 = geringe Gefährdung
2024-03-15 12:00:00+00:00 : #37ba29 - 1 = kein Einfluss
2024-03-16 00:00:00+00:00 : #ffff00 - 2 = geringe Gefährdung
2024-03-16 12:00:00+00:00 : #37ba29 - 1 = kein Einfluss
2024-03-17 00:00:00+00:00 : #ffff00 - 2 = geringe Gefährdung
2024-03-17 12:00:00+00:00 : #37ba29 - 1 = kein Einfluss
3 - Herz- und Kreislaufgeschehen (hypotone Form)
2024-03-15 00:00:00+00:00 : #ffff00 - 2 = geringe Gefährdung
2024-03-15 12:00:00+00:00 : #37ba29 - 1 = kein Einfluss
2024-03-16 00:00:00+00:00 : #ffff00 - 2 = geringe Gefährdung
2024-03-16 12:00:00+00:00 : #37ba29 - 1 = kein Einfluss
2024-03-17 00:00:00+00:00 : #ffff00 - 2 = geringe Gefährdung
2024-03-17 12:00:00+00:00 : #ffff00 - 2 = geringe Gefährdung
4 - Herz- und Kreislaufgeschehen (hypertone Form)
2024-03-15 00:00:00+00:00 : #ffff00 - 2 = geringe Gefährdung
2024-03-15 12:00:00+00:00 : #37ba29 - 1 = kein Einfluss
2024-03-16 00:00:00+00:00 : #ffff00 - 2 = geringe Gefährdung
2024-03-16 12:00:00+00:00 : #ffff00 - 2 = geringe Gefährdung
2024-03-17 00:00:00+00:00 : #ffff00 - 2 = geringe Gefährdung
2024-03-17 12:00:00+00:00 : #37ba29 - 1 = kein Einfluss
5 - rheumatische Beschwerden (degenerativ)
2024-03-15 00:00:00+00:00 : #ffff00 - 2 = geringe Gefährdung
2024-03-15 12:00:00+00:00 : #37ba29 - 1 = kein Einfluss
2024-03-16 00:00:00+00:00 : #ffff00 - 2 = geringe Gefährdung
2024-03-16 12:00:00+00:00 : #ffff00 - 2 = geringe Gefährdung
2024-03-17 00:00:00+00:00 : #ffff00 - 2 = geringe Gefährdung
2024-03-17 12:00:00+00:00 : #37ba29 - 1 = kein Einfluss
6 - rheumatische Beschwerden (entzündlich)
2024-03-15 00:00:00+00:00 : #ffff00 - 2 = geringe Gefährdung
2024-03-15 12:00:00+00:00 : #37ba29 - 1 = kein Einfluss
2024-03-16 00:00:00+00:00 : #ffff00 - 2 = geringe Gefährdung
2024-03-16 12:00:00+00:00 : #37ba29 - 1 = kein Einfluss
2024-03-17 00:00:00+00:00 : #ffff00 - 2 = geringe Gefährdung
2024-03-17 12:00:00+00:00 : #ffff00 - 2 = geringe Gefährdung
```
#### Detailed description
**Methods:**
- **`__init__(identifier)`**
Create a new bio weather API class instance
The `identifier` can either be a so called `cell id` (int) or a `cell name` (str).
It is heavily advised to use `cell id` over `cell name` because the name is not unique in some cases.
A list of valid cell ids and names can be found in [biocells.md](https://github.com/stephan192/dwdwfsapi/blob/master/docs/biocells.md).
Method `update()` is automatically called at the end of a successfull init.
- **`update()`**
Update data by querying DWD server and parsing result
Function should be called regularly, e.g. every 12hours, to update the data stored in the class attributes.
**Attributes (read only):**
- **`data_valid : bool`**
A flag wether or not the other attributes contain valid values
- **`cell_id : int`**
The id of the selected cell
- **`cell_name : str`**
The name of the selected ncell
If the name is not unique `" (not unique use ID!)"` will be added to the name
- **`last_update : datetime`**
Timestamp of the last update
- **`forecast_data : dict`**
Dictionary containing all forecast data
See section forecast data dictionary for more details
**Forecast data dictionary**
- **`key : int`**
Data type
- **`name : str`**
String representation of the data type
- **`forecast : list of dicts`**
List containing the forecast data
See section forecast dictionary for more details
**Forecast dictionary**
- **`start_time : datetime`**
Timestamp when the forecast starts
- **`level : int`**
Impact level (0 - 3)
- **`impact : str`**
String representation of the impact level
- **`color : str`**
Forecast color formatted #rrggbb
### Pollen flight module
#### Quickstart example
Python code
```
from dwdwfsapi import DwdPollenFlightAPI
dwd = DwdPollenFlightAPI(41)
if dwd.data_valid:
for k, v in dwd.forecast_data.items():
print(f"{k} - {v['name']}")
for entry in v["forecast"]:
print(f"\t{entry['start_time']} : {entry['color']} - {entry['level']} = {entry['impact']}")
```
Result
```
1 - Hasel
2024-03-15 00:00:00+00:00 : #ffffff - 0 = keine
2024-03-16 00:00:00+00:00 : #ffffff - 0 = keine
2024-03-17 00:00:00+00:00 : #ffffff - 0 = keine
2 - Erle
2024-03-15 00:00:00+00:00 : #fee391 - 2 = gering
2024-03-16 00:00:00+00:00 : #fee391 - 3 = gering bis mittel
2024-03-17 00:00:00+00:00 : #fee391 - 3 = gering bis mittel
8 - Esche
2024-03-15 00:00:00+00:00 : #fee391 - 2 = gering
2024-03-16 00:00:00+00:00 : #fee391 - 2 = gering
2024-03-17 00:00:00+00:00 : #fee391 - 3 = gering bis mittel
3 - Birke
2024-03-15 00:00:00+00:00 : #ffffff - 0 = keine
2024-03-16 00:00:00+00:00 : #ffffff - 0 = keine
2024-03-17 00:00:00+00:00 : #ffffff - 2 = gering
4 - Gräser
2024-03-15 00:00:00+00:00 : #ffffff - 0 = keine
2024-03-16 00:00:00+00:00 : #ffffff - 0 = keine
2024-03-17 00:00:00+00:00 : #ffffff - 0 = keine
5 - Roggen
2024-03-15 00:00:00+00:00 : #ffffff - 0 = keine
2024-03-16 00:00:00+00:00 : #ffffff - 0 = keine
2024-03-17 00:00:00+00:00 : #ffffff - 0 = keine
6 - Beifuß
2024-03-15 00:00:00+00:00 : #ffffff - 0 = keine
2024-03-16 00:00:00+00:00 : #ffffff - 0 = keine
2024-03-17 00:00:00+00:00 : #ffffff - 0 = keine
7 - Ambrosia
2024-03-15 00:00:00+00:00 : #ffffff - 0 = keine
2024-03-16 00:00:00+00:00 : #ffffff - 0 = keine
2024-03-17 00:00:00+00:00 : #ffffff - 0 = keine
```
#### Detailed description
**Methods:**
- **`__init__(identifier)`**
Create a new pollen flight API class instance
The `identifier` can either be a so called `cell id` (int) or a `cell name` (str).
It is heavily advised to use `cell id` over `cell name` because the name is not unique in some cases.
A list of valid cell ids and names can be found in [pollencells.md](https://github.com/stephan192/dwdwfsapi/blob/master/docs/pollencells.md).
Method `update()` is automatically called at the end of a successfull init.
- **`update()`**
Update data by querying DWD server and parsing result
Function should be called regularly, e.g. every 12hours, to update the data stored in the class attributes.
**Attributes (read only):**
- **`data_valid : bool`**
A flag wether or not the other attributes contain valid values
- **`cell_id : int`**
The id of the selected cell
- **`cell_name : str`**
The name of the selected ncell
If the name is not unique `" (not unique use ID!)"` will be added to the name
- **`last_update : datetime`**
Timestamp of the last update
- **`forecast_data : dict`**
Dictionary containing all forecast data
See section forecast data dictionary for more details
**Forecast data dictionary**
- **`key : int`**
Data type
- **`name : str`**
String representation of the data type
- **`forecast : list of dicts`**
List containing the forecast data
See section forecast dictionary for more details
**Forecast dictionary**
- **`start_time : datetime`**
Timestamp when the forecast starts
- **`level : int`**
Impact level (0 - 6)
- **`impact : str`**
String representation of the impact level
- **`color : str`**
Forecast color formatted #rrggbb
|