A Python based kernel to perform spatial (environmental) impact assessment. Based on knowledge rules applied to model output and/or measurements. The dependencies of the D-EcoImpact are declared, managed and installed with Poetry.
Copyright © 2022-2023 Stichting Deltares
This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License version 3.0 as published by the Free Software Foundation.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details.
A copy of the GNU General Public License can be found at
https://github.com/Deltares/D-EcoImpact/blob/main/LICENSE.md
and at
http://www.gnu.org/licenses/
Contact: software@deltares.nl
Stichting Deltares
P.O. Box 177
2600 MH Delft, The Netherlands
All indications and logos of, and references to registered trademarks of Stichting Deltares remain the property of Stichting Deltares. All rights reserved.
- python 3.9 or higher
- poetry 1.3 or higher we recommend: (installation instructions)
If you prefer to install poetry with conda then we recommed to install poetry only to the base environment:
$ conda install -y -c conda-forge poetry
To install the dependencies of the project create a virtual environment either with venv
or conda
.
Switch to this environment and use poetry
to restore the package dependencies.
Whereby <env_name> stands for your chosen environment name.
The name can not contain any spaces or special characters.
-
Create
venv
virtual environment$ python -m venv <env_name>
-
Activate
venv
environment$ .\env\Scripts\activate
⚠ WARNING: Due to licencing of Anaconda, it is recommended to use an alternative like Miniforge. This still uses the package manager conda and therefore the same commands can still be used. The same goes for Miniconda but you need to change the defaults channel to conda-forge (instructions for changing the channel)!
- Create
conda
environment$ conda create -y -c pip --name <env_name> python=3.11
- Activate
conda
environment$ conda activate <env_name>
(see Documentation)
$ poetry install
Make sure you have a correct input file available in the main folder (eg. input_file.yaml) and use this as the first keyword argument when running the code through command line:
$ python main.py input_file.yaml
When adding a new dependency, do so using poetry
-
Add a new dependency
$ poetry add <package>
-
Add a new dependency for development
$ poetry add <package> --dev
The version looks like this: major.minor.patch
- The repository depends on automatic versioning through github actions. For each commit, the patch version will be increased in the pyproject.toml.
- The major and minor version will only be updated by a manual trigger through github actions (triggering the 'release.yaml') in which case a tag will be created.
There are mkdocs available for documentation on how to use this code. For now these are available offline by running the command:
$ mkdocs serve
The pages will be served locally and available on one of you local ports. When executing this command in the INFO messages the location will be shown where the docs are available:
INFO - [10:44:34] Serving on http://127.0.0.1:8000/
In this case the docs are available on http://127.0.0.1:8000/ or http://localhost:8000
For each release a version of documentation is available at: deltares.github.io/D-EcoImpact/
To add an acceptance test:
- Create the [name].yaml file and store it in the tests_acceptance/input_yaml_files
- Put the [name].nc at the tests_acceptance/reference_nc_files folder. * Note that the .nc file should have the same name as the .yaml file.
- To test if it is working correctly run: poetry run pytest tests_acceptance/test_main.py
To build the docker image, run the following command in the root of the project:
$ ./build-image.sh
To pull the docker image from the docker hub, run the following command:
$ docker pull ghcr.io/deltares/d-ecoimpact:latest
Before building your Docker image, ensure you're authenticated with GHCR to allow pulling private images. Use the docker login command with your GitHub username and a Personal Access Token (PAT) that has the appropriate scopes (read:packages at a minimum).
echo "YOUR_PERSONAL_ACCESS_TOKEN" | docker login ghcr.io -u YOUR_GITHUB_USERNAME --password-stdin
If you found D-Eco Impact useful for your study, please cite it as:
Weeber, M., Elzinga, H., Schoonveld, W., Van de Vries, C., Klapwijk, M., Mischa, I., Rodriguez Aguilera, D., Farrag, M., Ye, Q., Markus, A., Van Oorschot, M., Saager, P., & Icke, J. (2024). D-Eco Impact (v0.3.0). Zenodo. https://doi.org/10.5281/zenodo.10941913