Parsers for DWD's open weather data.
Project description
dwdparse
Parsers for DWD's open weather data.
The DWD (Deutscher Wetterdienst), as Germany's meteorological service, publishes a myriad of meteorological observations and calculations as part of their Open Data program.
dwdparse
is a Python library for parsing the various formats that this data
is published in, with no dependencies outside the standard library. It serves
as the parsing backend for Bright Sky.
Our development effort focuses mainly on the data that is made available
through Bright Sky, although we are very open to requests or contributions
regarding other parsing targets. If you are looking for a more complete set of
parsers - including for data from other weather agencies - and you don't mind
the extra dependencies, take a look at the excellent
wetterdienst
.
Looking for something specific?
I just want to retrieve some weather data
You can use the free public Bright Sky instance!
I want to parse DWD weather files or contribute to dwdparse's source code
Read on. :)
Quickstart
You can use this package both as a stand-alone command-line tool or as a Python library.
Stand-alone DWD file parsing
-
Install the
dwdparse
package from PyPI:$ pip install dwdparse
-
Call
dwdparse
, providing your target file (or URL) as argument:$ dwdparse stundenwerte_TU_01766_akt.zip
This will output a newline-separated list of JSON records. Note that all
numerical weather data is converted to SI units. If you wish to use DWD
units, or if you need both DWD and WMO station IDs, check out the --units
option and the example section with dwdparse --help
.
Parsing DWD files from Python code
-
Install the
dwdparse
package from PyPI:$ pip install dwdparse
-
In Python, import one of the
dwdparse
parsers (or theget_parser
utility function) fromdwdparse
, then call it'sparse()
method with the path of the file you would like to parse. This will return an iterable over weather records:from brightsky import get_parser DWD_FILE_PATH = 'stundenwerte_TU_01766_akt.zip' parser_class = get_parser(DWD_FILE_PATH) parser = parser_class() for record in parser.parse(DWD_FILE_PATH): print(record)
Acknowledgements
dwdparse
is developed as the main parsing core for Bright
Sky. Bright Sky's development is
boosted by the priceless guidance and support of the Open Knowledge
Foundation's Prototype Fund
program, and is generously funded by Germany's Federal Ministry of Education
and Research. Obvious as it may be, it should be
mentioned that none of this would be possible without the painstaking,
never-ending effort of the Deutscher Wetterdienst.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file dwdparse-0.9.0.tar.gz
.
File metadata
- Download URL: dwdparse-0.9.0.tar.gz
- Upload date:
- Size: 17.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 75ecd75b244520697707eefc176ba8adc1bb034f3acaf03b48f7d691afd12cc6 |
|
MD5 | f45a1e7853e6431e55422373b1241a99 |
|
BLAKE2b-256 | 1b1f909defdda33e06d7696e95d3a4b2ee72dd883762bc464d8ee1d93fea9212 |
Provenance
File details
Details for the file dwdparse-0.9.0-py3-none-any.whl
.
File metadata
- Download URL: dwdparse-0.9.0-py3-none-any.whl
- Upload date:
- Size: 15.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ca41cd24fbfa651e27a9b2c327587cc3526f715d41c3e1b7b4c5dc02a7821d6d |
|
MD5 | 3d7cb8c0c32fe88f5a4c31e153f505e6 |
|
BLAKE2b-256 | ddfe00eb35a6a6ddd4ff4ead26c865d2526becd5b49589ef10eba396b1e32f4e |