This package allows easy access to Geo Engine functionality from Python environments.
Create a virtual environment (e.g., python3 -m venv env).
Then, install the dependencies with:
python3 -m pip install -e .
python3 -m pip install -e .[test]Run tests with:
pytestSince we use cartopy, you need to have the following system dependencies installed.
- GEOS
- PROJ
For Ubuntu, you can use this command:
sudo apt-get install libgeos-dev libproj-devYou can build the package with:
python3 -m pip install -e .[dev]
python3 -m buildThis packages is formatted according to pycodestyle.
You can check it by calling:
python3 -m pycodestyleOur tip is to install autopep8 and use it to format the code.
Our CI automatically checks for lint errors.
We use pylint to check the code.
You can check it by calling:
python3 -m pylint geoengine
python3 -m pylint testsOur tip is to activate linting with pylint in your IDE.
Generate documentation HTML with:
pdoc3 --html --output-dir docs geoengineThere are several examples in the examples folder.
It is necessary to install the dependencies with:
python3 -m pip install -e .[examples]python3 -m build
python3 -m twine upload --repository testpypi dist/*
python3 -m build
python3 -m twine upload --repository pypi dist/*
Start a python terminal and try it out:
import geoengine as ge
from datetime import datetime
ge.initialize("https://nightly.peter.geoengine.io/api")
time = datetime.strptime('2014-04-01T12:00:00.000Z', "%Y-%m-%dT%H:%M:%S.%f%z")
workflow = ge.workflow_by_id('4cdf1ffe-cb67-5de2-a1f3-3357ae0112bd')
print(workflow.get_result_descriptor())
workflow.get_dataframe(ge.Bbox([-60.0, 5.0, 61.0, 6.0], [time, time]))If the Geo Engine server requires authentication, you can set your credentials in the following ways:
- in the initialize method:
ge.initialize("https://nightly.peter.geoengine.io/api", ("email", "password")) - as environment variables
export GEOENGINE_EMAIL="email"andexport GEOENGINE_PASSWORD="password" - in a .env file in the current working directory with the content:
GEOENGINE_EMAIL="email"
GEOENGINE_PASSWORD="password"