Skip to main content

A package for easy access to Geo Engine instances

Project description

Geo Engine Python Package

CI Coverage Status Documentation

This package allows easy access to Geo Engine functionality from Python environments.

Test

Create a virtual environment

Create a virtual environment (e.g., python3 -m venv env).

# create new venv
python3 -m venv env
# activate new venv
source env/bin/activate

Re-create virtual environment

# go out of old venv
deactivate
# delete old venv
rm -r .venv
# create new venv
python3 -m venv .venv
# activate new venv
source .venv/bin/activate

Install dependencies

Then, install the dependencies with:

python3 -m pip install -e .
python3 -m pip install -e .[test]

Run tests

Run tests with:

pytest

Test instance

You have to set the environment variable GEOENGINE_TEST_CODE_PATH to the code folder of the Geo Engine instance you want to test against. Dotenv is supported, so you can create a .env file in the root of the project.

Coverage

You can check the coverage with:

pytest --cov=geoengine

Test examples

You can test the examples with:

python3 -m pip install -e .[examples]
./test_all_notebooks.py

Or you can test a single example with:

./test_notebook.py examples/ndvi_ports.ipynb

Dependencies

Since 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-dev

Build

You can build the package with:

python3 -m pip install -e .[dev]
python3 -m build

Formatting

This package is formatted according to ruff. You can check it by calling:

python3 -m ruff format --check

Our tip is to install ruff and use it to format the code.

VSCode

If you use VSCode, you can install the ruff extension and set it as the default formatter.

Lints

Our CI automatically checks for lint errors. We use ruff to check the code. You can check it by calling:

python3 -m ruff check

Our tip is to activate linting with ruff in your IDE.

Type Checking

Our CI automatically checks for typing errors. We use mypy to check the code. You can check it by calling:

python3 -m mypy geoengine
python3 -m mypy tests

Using the config file mypy.ini, you can suppress missing stub errors for external libraries. You can ignore a library by adding two lines to the config file. For example, suppressing matplotlib would look like this:

[mypy-matplotlib.*]
ignore_missing_imports = True

If there are typing-stubs packages you can install using pip, you can use these packages instead of ignoring the reported errors. To find out, which packages could be installed you can use the following command:

python3 -m mypy geoengine --install-types
python3 -m mypy tests --install-types

Keep in mind, that you need to add the missing stubs by extending the dependencies in setup.cfg or ignoring them with mypy.ini.

Our tip is to activate type checking with mypy in your IDE.

All checks from above

You can call ./check.sh to run all the checks that are shown above.

Documentation

Generate documentation HTML with:

pdoc3 --html --output-dir docs geoengine

Examples

There are several examples in the examples folder. It is necessary to install the dependencies with:

python3 -m pip install -e .[examples]

Distribute to PyPI

Test-PyPI

python3 -m build
python3 -m twine upload --repository testpypi dist/*

PyPI

python3 -m build
python3 -m twine upload --repository pypi dist/*

Try it out

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]))

Authentication

If the Geo Engine server requires authentication, you can set your credentials in the following ways:

  1. in the initialize method: ge.initialize("https://nightly.peter.geoengine.io/api", ("email", "password"))
  2. as environment variables export GEOENGINE_EMAIL="email" and export GEOENGINE_PASSWORD="password"
  3. in a .env file in the current working directory with the content:
GEOENGINE_EMAIL="email"
GEOENGINE_PASSWORD="password"

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

geoengine-0.9.2.tar.gz (91.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

geoengine-0.9.2-py3-none-any.whl (65.3 kB view details)

Uploaded Python 3

File details

Details for the file geoengine-0.9.2.tar.gz.

File metadata

  • Download URL: geoengine-0.9.2.tar.gz
  • Upload date:
  • Size: 91.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.2.0 CPython/3.10.20

File hashes

Hashes for geoengine-0.9.2.tar.gz
Algorithm Hash digest
SHA256 ab5eb82a3936d71ce9148c230aa081b4cd70093c2a5eaeb990a70548819264b1
MD5 da53ab719f9a2a9497c49691edb567bd
BLAKE2b-256 0b29b9089a2510e08d753b91bbec92cf4a7e7965cefe495a39fae6c210b78dc8

See more details on using hashes here.

File details

Details for the file geoengine-0.9.2-py3-none-any.whl.

File metadata

  • Download URL: geoengine-0.9.2-py3-none-any.whl
  • Upload date:
  • Size: 65.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.2.0 CPython/3.10.20

File hashes

Hashes for geoengine-0.9.2-py3-none-any.whl
Algorithm Hash digest
SHA256 1075700be8fc201f42eb09d3ecb1dfc5145ef80f389a33e2474c07c575b69983
MD5 d57422e6d4a261eed6ce625a99411844
BLAKE2b-256 c8828649396033dee55924c53c1dc8a9e764a7fc173ac222165a4d7f6e499f67

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page