Metadata-Version: 2.1
Name: geefetch
Version: 0.3.1
Summary: geefetch
Author-email: Gabriel Belouze <gabriel@belouze.com>
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: click
Requires-Dist: earthengine-api
Requires-Dist: gdal>=3.9.2
Requires-Dist: geedim
Requires-Dist: geopandas>=1.0.1
Requires-Dist: jsons
Requires-Dist: numpy>=1.6.0
Requires-Dist: omegaconf
Requires-Dist: pooch
Requires-Dist: rasterio>=1.3.11
Requires-Dist: retry
Requires-Dist: rich
Requires-Dist: shapely>=2.0.6
Requires-Dist: utm
Requires-Dist: mypy ; extra == "dev"
Requires-Dist: pytest ; extra == "dev"
Requires-Dist: pre-commit ; extra == "dev"
Requires-Dist: sphinx ; extra == "doc"
Requires-Dist: sphinx_rtd_theme ; extra == "doc"
Requires-Dist: sphinxcontrib-napoleon ; extra == "doc"
Requires-Dist: sphinx-click ; extra == "doc"
Project-URL: source, https://github.com/gbelouze/geefetch
Project-URL: tracker, https://github.com/gbelouze/geefetch/issues
Provides-Extra: dev
Provides-Extra: doc

# `geefetch`

[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
[![Documentation Status](https://readthedocs.org/projects/geefetch/badge/?version=latest)](https://geefetch.readthedocs.io/en/latest/?badge=latest)

A python library/CLI to download large scale satellite data from Google Earth Engine.

[![CLI demo](https://asciinema.org)](https://asciinema.org/a/1xT8v4UGXCNOPbKjluYun9Vu4)

⚠️ This library is still in its early days and in active development. ⚠️

## Overview

```bash
$ geefetch --help
Usage: geefetch [OPTIONS] COMMAND [ARGS]...

  Download satellites from Google Earth Engine.

Options:
  -v, --verbose
  --quiet / --no-quiet
  --logfile PATH        File to output the log messages in addition to
                        stdout/stderr.
  --debug
  --help                Show this message and exit.

Commands:
  all       Download all satellites given in the config.
  dynworld  Download Dynamic World images.
  gedi      Download GEDI images.
  s1        Download Sentinel-1 images.
  s2        Download Sentinel-2 images.
```

Currently are supported

- [Sentinel-1](https://developers.google.com/earth-engine/datasets/catalog/COPERNICUS_S1_GRD)
- [Sentinel-2](https://developers.google.com/earth-engine/datasets/catalog/sentinel-2)
- [GEDI](https://developers.google.com/earth-engine/datasets/catalog/LARSE_GEDI_GEDI02_A_002_MONTHLY)
- [Dynamic World](https://developers.google.com/earth-engine/datasets/catalog/GOOGLE_DYNAMICWORLD_V1)

Read the [docs](https://geefetch.readthedocs.io/en/latest/) for more details.

