This library provides functions which can be used for developing GRASS GIS addons and which are used by mundialis.
The library usage needs to be in a GRASS GIS session, so that the the module grass
can be imported.
pip install grass-gis-helpers
Small example how the library can be used inside a GRASS GIS session:
from grass_gis_helpers import general
general.set_nprocs(2)
pip-tools is required for DEV setup:
# only once
pip3 install pip-tools
then install grass-gis-helpers from the local repository:
pip3 install -e .