A collection of tools to work with Google Earth Engine Python API
Project description
Google Earth Engine tools
Google Earth Engine is a cloud-based service for geospatial processing of vector and raster data. The Earth Engine platform has a JavaScript and a Python API with different methods to process geospatial objects.
The geetools package extends the Google Earth Engine Python API with pre-processing and processing tools for the most used satellite platforms by adding utility methods for different Earth Engine Objects that are friendly with the Python method chaining using the geetools namespace.
There is JavaScript module that you can import from the code editor that has similar functions (not exactly the same) and it’s available here.
Installation
pip install geetools
Why using it ?
New utility methods and constructors are added to most of the GEE classes. They can be simple wrapper for repetitive tasks, complex algorithm or mandatory preprocessing steps. The goal is to make the code more fluid and easy to read for researchers, students and analysts.
The package design is mostly performing server-side computation making it also very friendly with commercial users of Earth Engine.
This small example wrapping of the excellent ee_extra package functionalities shows how to preprocess sentinel 2 data in 5 lines of code:
import ee
import geetools #noqa: F401
import pygaul # another gee-community package to access FAO GAUl 2015 dataset
# we assume you are already authenticated to GEE
ee.Initialize.geetools.from_account("toto") # yes we also support multi users
amazonas = pygaul.Items(name="Amazonas").centroid()
S2 = (
ee.ImageCollection('COPERNICUS/S2_SR')
.filterBounds(point)
.geetools.closest('2020-10-15') # Extended (pre-processing)
.geetools.maskClouds(prob = 70) # Extended (pre-processing)
.geetools.scaleAndOffset() # Extended (pre-processing)
.geetools.spectralIndices(['NDVI','NDWI','BAIS2'])) # Extended (processing)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file geetools-1.8.0.tar.gz
.
File metadata
- Download URL: geetools-1.8.0.tar.gz
- Upload date:
- Size: 3.9 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 701dc23a154bb7e85a6e8a64a1beed1b63573aa76d3abb5df06a5f444f6e940a |
|
MD5 | 60b78d188bef0d6dc623147acd36156d |
|
BLAKE2b-256 | de885d839b8a541f2c4562c2155cd1349fedc239fc9970a45bfe9aac0e532bbd |
File details
Details for the file geetools-1.8.0-py3-none-any.whl
.
File metadata
- Download URL: geetools-1.8.0-py3-none-any.whl
- Upload date:
- Size: 71.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 19a426df0f68b2c7f90c2b489cc7deeb14d9f7542747a58527d4a00a03b56edc |
|
MD5 | a966827e00ad51db02909942dd896508 |
|
BLAKE2b-256 | a23e6aaa984dc5ac81513720fa15f1b368bfaac07b396287e7f1aca4bdf339f2 |