- Gather precipitation data from DWD's radolan data set, for the region of Berlin and connect to the giessdenkiez.de postgres DB
- Uploads trees combined with weather data to Mapbox and uses its API to create vector tiles for use on mobile devices
- Generates CSV and GeoJSON files that contain trees locations and weather data (grid) and uploads them to a Supabase Storage bucket
- Fetch historical weather data via BrightSky API: https://brightsky.dev/
It is recommended to use Python virtual environments to manage and separate Python dependencies:
python -m venv REPO_DIRECTORY
pip install -r requirements.txt
or (if you are on MacOS)
pip install -r requirements-mac.txt
- If installing
psycopg2
on MacOS fails, there nmight be a problem with the ssl-lib linking. Following install resolved the issue:
env LDFLAGS='-L/usr/local/lib -L/usr/local/opt/openssl/lib -L/usr/local/opt/readline/lib' pip install psycopg2
- The project uses the command line tool of GDAL (because the Python bindings are hard to install without dependency conflicts). The GDAL dependency is not listed in the requirements file and must therefore be installed manually on the system: For Mac, use
brew install gdal
: https://formulae.brew.sh/formula/gdal For Linux, follow https://mothergeo-py.readthedocs.io/en/latest/development/how-to/gdal-ubuntu-pkg.html
Copy the sample.env
file and rename to .env
then update all variables:
PG_SERVER=localhost
PG_PORT=54322
PG_USER=postgres
PG_PASS=postsgres
PG_DB=postgres
SUPABASE_URL=http://127.0.0.1:54321
SUPABASE_SERVICE_ROLE=eyJh...
SUPABASE_BUCKET_NAME=data_assets
MAPBOXUSERNAME=your_mapbox_username
MAPBOXTOKEN=your_mapbox
MAPBOXTILESET=your_mapbox_tileset_id
MAPBOXLAYERNAME=your_mapbox_layer_name
SKIP_MAPBOX=False
LIMIT_DAYS=30
SURROUNDING_SHAPE_FILE=./assets/buffer.shp
WEATHER_HARVEST_LAT=52.520008
WEATHER_HARVEST_LNG=13.404954
Starting from an empty database, the complete process of running the DWD harvester consists of three steps:
- Preparing the buffered shapefile
- Creating the grid structure for the
radolan_geometry
table - Harvesting the DWD data
Firstly, a buffered shapefile is needed, which is created with the following commands. This step is utilizing the harvester/assets/berlin.prj
and harvester/assets/berlin.shp
files. Make sure to set the environment variables properly before running this step.
cd harvester/prepare
SHAPE_RESTORE_SHX=YES python create-buffer.py
Secondly, the radolan_geometry
table needs to be populated. You need to have the buffered shapefile (from the previous step) created and available in ../assets
. The radolan_geometry
table contains vector data for the target city. The data is needed by the harvest process to find the rain data for the target city area. This repository contains shape files for Berlin area. To make use of it for another city, replace the harvester/assets/berlin.prj
and harvester/assets/berlin.shp
files. Run the following commands to create the grid structure in the database:
cd harvester/prepare
python create-grid.py
Make sure to set the environment variables properly before running the script. Make sure that you have succesfully ran the previous steps for preparing the buffered shapefile and creating the grid structure for the radolan_geometry
table. The file harvester/src/run_harvester.py
contains the script for running the DWD harvester, it does the following:
- Checks for existens of all required environment variables
- Setup database connection
- Get start end end date of current harvesting run (for incremental harvesting every day)
- Download all daily radolan files from DWD server
- Extracts the daily radolan files into hourly radolan files
- For each hourly radolan file:
- Projects the given data to Mercator, cuts out the area of interest. Using
gdalwarp
library. - Produce a polygon feature layer. Using
gdal_polygonize.py
library. - Extract raw radolan values from generate feature layer.
- Upload extracted radolan values to database
- Projects the given data to Mercator, cuts out the area of interest. Using
- Cleanup old radolan values in database (keep only last 30 days)
- Build a radolan grid holding the hourly radolan values for the last 30 days for each polygon in the grid.
- Updates
radolan_sum
andradolan_values
columns in the databasetrees
table - Updates the Mapbox trees layer:
- Build a trees.csv file based on all trees (with updated radolan values) in the database
- Preprocess trees.csv using
tippecanoe
library. - Start the creation of updated Mapbox layer
For harvesting daily weather data, we use the free and open source BrightSky API. No API key is needed. The script is defined in run_daily_weather.py. Make sure to set all relevant environment variables before running the script, e.g. for a run with local database attached:
PG_SERVER=localhost
PG_PORT=54322
PG_USER=postgres
PG_DB=postgres
PG_PASS=postgres
WEATHER_HARVEST_LAT=52.520008
WEATHER_HARVEST_LNG=13.404954
Make sure that especially WEATHER_HARVEST_LAT
and WEATHER_HARVEST_LNG
are set to your destination of interest.
To have a local database for testing you need Docker and docker-compose installed. You will also have to create a public Supabase Storage bucket. You also need to update the .env
file with the values from sample.env
below the line # for your docker environment
.
to start only the database run
docker-compose -f docker-compose.postgres.yml up
This will setup a postgres/postgis DB and provision the needed tables and insert some test data.
To run the harvester and the postgres db run
docker-compose up
When running the setup for the first time docker-compose up
the provisioning of the database is slower then the execution of the harvester container. You will have to stop the setup and run it again to get the desired results.
The provisioning sql
script is only run once when the container is created. When you create changes you will have to run:
docker-compose down
docker-compose up --build
Thanks goes to these wonderful people (emoji key):
Fabian Morón Zirfas 💻 📖 |
Sebastian Meier 💻 📖 |
Dennis Ostendorf 💻 |
Lisa-Stubert 💻 |
Lucas Vogel 📖 |
Jens Winter-Hübenthal 💻 🐛 |
Simon Jockers 🚇 💻 🐛 |
This project follows the all-contributors specification. Contributions of any kind welcome!
|
A project by:
|
Supported by:
|