https://github.com/fitoprincipe/geestac
Google Earth Engine STAC
https://github.com/fitoprincipe/geestac
earth-engine earth-engine-python-api stac
Last synced: 5 months ago
JSON representation
Google Earth Engine STAC
- Host: GitHub
- URL: https://github.com/fitoprincipe/geestac
- Owner: fitoprincipe
- License: mit
- Created: 2025-02-17T14:39:12.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-07-06T03:25:02.000Z (about 1 year ago)
- Last Synced: 2025-10-29T16:37:37.540Z (9 months ago)
- Topics: earth-engine, earth-engine-python-api, stac
- Language: Python
- Homepage: https://geestac.readthedocs.io/en/latest/
- Size: 68.4 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.rst
- Contributing: CONTRIBUTING.rst
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.rst
- Citation: CITATION.cff
- Authors: AUTHORS.rst
Awesome Lists containing this project
README
Google Earth Engine STAC (geestac)
##################################
.. |license| image:: https://img.shields.io/badge/License-MIT-yellow.svg?logo=opensourceinitiative&logoColor=white
:target: LICENSE
:alt: License: MIT
.. |commit| image:: https://img.shields.io/badge/Conventional%20Commits-1.0.0-yellow.svg?logo=git&logoColor=white
:target: https://conventionalcommits.org
:alt: conventional commit
.. |ruff| image:: https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json
:target: https://github.com/astral-sh/ruff
:alt: ruff badge
.. |prettier| image:: https://img.shields.io/badge/code_style-prettier-ff69b4.svg?logo=prettier&logoColor=white
:target: https://github.com/prettier/prettier
:alt: prettier badge
.. |pre-commmit| image:: https://img.shields.io/badge/pre--commit-active-yellow?logo=pre-commit&logoColor=white
:target: https://pre-commit.com/
:alt: pre-commit
.. |pypi| image:: https://img.shields.io/pypi/v/geestac?color=blue&logo=pypi&logoColor=white
:target: https://pypi.org/project/geestac/
:alt: PyPI version
.. |build| image:: https://img.shields.io/github/actions/workflow/status/fitoprincipe/geestac/unit.yaml?logo=github&logoColor=white
:target: https://github.com/fitoprincipe/geestac/actions/workflows/unit.yaml
:alt: build
.. |coverage| image:: https://img.shields.io/codecov/c/github/fitoprincipe/geestac?logo=codecov&logoColor=white
:target: https://codecov.io/gh/fitoprincipe/geestac
:alt: Test Coverage
.. |docs| image:: https://img.shields.io/readthedocs/geestac?logo=readthedocs&logoColor=white
:target: https://geestac.readthedocs.io/en/latest/
:alt: Documentation Status
|license| |commit| |ruff| |prettier| |pre-commmit| |pypi| |build| |coverage| |docs|
Overview
--------
This packages provides an easy and straightforward way of getting Google Earth
Engine STAC information.
To take fully advantage of this package is recommended to use it in runtime
due to `lazy evaluation `__
Installation
------------
.. code-block:: bash
pip install geestac
Usage
-----
.. code-block:: python
from geestac import eecatalog
# a lazy object does not contain the complete data but only the reference (name and url)
landsat_lazy = eecatalog.LANDSAT
# to fetch all data you need to call it
landast = eecatalog.LANDSAT()
# if you do this in runtime, the `landsat` object contains all datasets as attributes
# if you don't do it in runtime you won't be able to see the datasets (attributes)
# it works the same with datasets
# lazy dataset
l9_lazy = landsat.LC09_C02_T1
# fetch L9 data
l9 = landsat.LC09_C02_T1()
Credits
-------
Author: Rodrigo E. Principe
This package was created with `Copier `__ and the `@12rambau/pypackage `__ 0.1.16 project template.