UNDRDG provides building blocks to convert existing datasets to the UNDR format.
The scripts used to convert the datasets that we re-distribute can be found in scripts. The converted datasets can be browsed at https://www.undr.space.
python3 -m pip install undrdg
See scripts for usage examples.
python3 -m venv .venv
source .venv/bin/activate
pip install -r scripts/requirements.txt
- Install the development version
python3 -m venv .venv
source .venv/bin/activate
pip remove undrdg # to avoid name clashes
pip install -e .
-
Edit files in undrg. Changes are automatically reflected in scripts that import the library.
-
Format and lint.
isort .; black .; pyright .