JSON API for DWD's open weather data.
Project description
Bright Sky
JSON API 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.
Bright Sky is an open-source project aiming to make some of the more popular data — in particular weather observations from the DWD station network and weather forecasts from the MOSMIX model — available in a free, simple JSON API.
Looking for something specific?
I just want to retrieve some weather data
You can use the free public Bright Sky instance!
I want to run my own instance of Bright Sky
Check out the infrastructure repo!
I want to parse DWD weather files or contribute to Bright Sky's source code
Read on. :)
Quickstart
There are three main ways to use this package:
- parsing DWD files from the command line,
- parsing DWD files from Python code, or
- running a complete API instance.
Stand-alone DWD file parsing
-
Install the
brightskypackage from PyPI:pip install brightsky -
Call Bright Sky's
parsecommand, providing your target file either via--path(if it is a local file):python -m brightsky parse --path stundenwerte_TU_01766_akt.zipor
--url(if the file should be downloaded first):python -m brightsky parse --url https://opendata.dwd.de/climate_environment/CDC/observations_germany/climate/hourly/air_temperature/recent/stundenwerte_TU_01766_akt.zip
This will output a newline-separated list of JSON records. Note that all numerical weather data will be converted to SI units.
Parsing DWD files from Python code
-
Install the
brightskypackage from PyPI:pip install brightsky -
In Python, import one of the
brightskyparsers (or theget_parserutility function) frombrightsky.parsers, initialize it withpathorurl, and call it'sparse()method. This will return an iterable over weather records:DWD_FILE_URL = ( 'https://opendata.dwd.de/climate_environment/CDC/observations_germany/' 'climate/hourly/air_temperature/recent/stundenwerte_TU_01766_akt.zip') # Either auto-detect the correct parser from the filename from brightsky.parsers import get_parser parser_class = get_parser(DWD_FILE_URL.split('/')[-1]) parser = parser_class(url=DWD_FILE_URL) # Or pick the parser class yourself from brightsky.parsers import TemperatureObservationsParser parser = TemperatureObservationsParser(url=DWD_FILE_URL) parser.download() # Not necessary if you supply a local path for record in parser.parse(): print(record) parser.cleanup() # If you wish to delete any downloaded files
Running a full-fledged instance
Note: These instructions are aimed at running a Bright Sky instance for development and testing. Check out our infrastructure repository if you want to set up a production-level API instance.
Just run docker-compose up and you should be good to go. This will set up a
PostgreSQL database (with persistent storage in .data), run a Redis server,
and start the Bright Sky worker and webserver. The worker periodically polls
the DWD Open Data Server for updates, parses them, and stores them in the
database. The webserver will be listening to API requests on port 5000.
Architecture
Bright Sky is a rather simple project consisting of four components:
-
The
brightskyworker, which leverages the logic contained in thebrightskyPython package to retrieve weather records from the DWD server, parse them, and store them in a database. It will periodically poll the DWD servers for new data. -
The
brightskywebserver (API), which serves as gate to our database and processes all queries for weather records coming from the outside world. -
A PostgreSQL database consisting of two relevant tables:
sourcescontains information on the locations for which we hold weather records, andweathercontains the history of actual meteorological measurements (or forecasts) for these locations.
The database structure can be set up by running the
migratecommand, which will simply apply all.sqlfiles found in themigrationsfolder. -
A Redis server, which is used as the backend of the worker's task queue.
Most of the tasks performed by the worker and webserver can also be performed
independently. Run docker-compose run --rm brightsky to get a list of
available commands.
Hacking
Constantly rebuilding the brightsky container while working on the code can
become cumbersome, and the default setting of parsing records dating all the
way back to 2010 will make your development database unnecessarily large. You
can set up a more lightweight development environment as follows:
-
Create a virtual environment and install our dependencies:
python -m virtualenv .venv && source .venv/bin/activate && pip install -r requirements.txt && pip install -e . -
Start a PostgreSQL container:
docker-compose run --rm -p 5432:5432 postgres -
Start a Redis container:
docker-compose run --rm -p 6379:6379 redis -
Point
brightskyto your containers, and configure a tighter date threshold for parsing DWD data, by adding the following.envfile:BRIGHTSKY_DATABASE_URL=postgres://postgres:pgpass@localhost BRIGHTSKY_BENCHMARK_DATABASE_URL=postgres://postgres:pgpass@localhost/benchmark BRIGHTSKY_REDIS_URL=redis://localhost BRIGHTSKY_MIN_DATE=2020-01-01
You should now be able to directly run brightsky commands via python -m brightsky, and changes to the source code should be effective immediately.
Tests
Large parts of our test suite run against a real Postgres database. By default,
these tests will be skipped. To enable them, make sure the
BRIGHTSKY_TEST_DATABASE_URL environment variable is set when calling tox,
e.g. via:
BRIGHTSKY_TEST_DATABASE_URL=postgres://postgres:pgpass@localhost/brightsky_test tox
Beware that adding this environment variable to your .env file will not work
as that file is not read by tox. The database will be dropped and
recreated on every test run, so don't use your normal Bright Sky database. ;)
Acknowledgements
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file brightsky-1.0.17.tar.gz.
File metadata
- Download URL: brightsky-1.0.17.tar.gz
- Upload date:
- Size: 30.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1f48d11c0b27736a57df2a6ca8297a3da8e4a0980a7649caa784242f7118ea51
|
|
| MD5 |
a9467b519fea6d0e4c8377ed21040a90
|
|
| BLAKE2b-256 |
64fe7e1dd781a0ab1a5ba3f19cb5b5caab2460961deb270ef884b0439d8e5ce0
|
File details
Details for the file brightsky-1.0.17-py3-none-any.whl.
File metadata
- Download URL: brightsky-1.0.17-py3-none-any.whl
- Upload date:
- Size: 31.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ace514a4c80f4eca14a7e4eed4027689f78f8fb58c45c2423b1f4ad63a11cd48
|
|
| MD5 |
c958913286ac92cd34289ece8c4502be
|
|
| BLAKE2b-256 |
0e37ba863f94ed54ccd49cfc927e3d37f4318321414007ebfd29e303f86eaf67
|