Earth Observation Data Access Gateway (2.9.1)
Contents
Earth Observation Data Access Gateway (2.9.1)#
EODAG (Earth Observation Data Access Gateway) is a command line tool and a Python package for searching and downloading remotely sensed images while offering a unified API for data access regardless of the data provider.
EODAG gives you an easy way to access products from more than 10 providers, with more than 50 different product types (Sentinel 1, Sentinel 2, Sentinel 3, Landsat, etc.) that can be searched and downloaded.
- [Growing list of] supported providers#
astraea_eod, usgs_satapi_aws, earth_search, earth_search_gcs, usgs, theia, peps, aws_eos, creodias, mundi, onda, ecmwf, cop_ads, cop_cds, sara, meteoblue, cop_dataspace
EODAG has the following primary features:
Search and download Earth Observation products from different providers with a unified API
It is both a Command Line Tool and a Python Package
It supports STAC and Static STAC catalogs
It can run as a STAC API REST server to give access to a provider’s catalog
New providers can be added with a configuration file or by extending EODAG with plugins

Example#
Register to one or more providers, configure your credentials , and then downloading Sentinel 2 Level-1C products from any provider’s catalog is as simple as:
from eodag import EODataAccessGateway
dag = EODataAccessGateway()
search_results, total_count = dag.search(
productType="S2_MSI_L1C",
start="2021-03-01",
end="2021-03-31",
geom={"lonmin": 1, "latmin": 43, "lonmax": 2, "latmax": 44}
)
product_paths = dag.download_all(search_results)
Or:
eodag search --productType S2_MSI_L1C --box 1 43 2 44 --start 2021-03-01 --end 2021-03-31
eodag download --search-results search_results.geojson
License#
EODAG is available under the open source Apache License.
Site contents#
For Users
For Developers/Contributors
- Add a Provider
- Plugins
- Contribute
- Release history
- 2.9.1 (2023-02-27)
- 2.9.0 (2023-02-16)
- 2.8.0 (2023-01-17)
- 2.7.0 (2022-11-29)
- 2.6.2 (2022-11-15)
- 2.6.1 (2022-10-19)
- 2.6.0 (2022-10-07)
- 2.5.2 (2022-07-05)
- 2.5.1 (2022-06-27)
- 2.5.0 (2022-06-07)
- 2.4.0 (2022-03-09)
- 2.3.4 (2021-10-08)
- 2.3.3 (2021-08-11)
- 2.3.2 (2021-07-29)
- 2.3.1 (2021-07-09)
- 2.3.0 (2021-06-24)
- 2.3.0b1 (2021-06-11)
- 2.2.0 (2021-03-26)
- 2.1.1 (2021-03-18)
- 2.1.0 (2021-03-09)
- 2.0.1 (2021-02-05)
- 2.0 (2021-01-28)
- 2.0b2 (2020-12-18)
- 2.0b1 (2020-11-17)
- 1.6.0 (2020-08-24)
- 1.6.0rc2 (2020-08-11)
- 1.6.0rc0 (2020-06-18)
- 1.5.2 (2020-05-06)
- 1.5.1 (2020-04-08)
- 1.5.0 (2020-04-08)
- 1.4.2 (2020-03-04)
- 1.4.1 (2020-02-25)
- 1.4.0 (2020-02-24)
- 1.3.6 (2020-01-24)
- 1.3.5 (2020-01-07)
- 1.3.4 (2019-12-12)
- 1.3.3 (2019-10-11)
- 1.3.2 (2019-09-27)
- 1.3.1 (2019-09-27)
- 1.3.0 (2019-09-06)
- 1.2.3 (2019-08-26)
- 1.2.2 (2019-08-23)
- 1.2.1 (2019-08-23)
- 1.2.0 (2019-08-22)
- 1.1.3 (2019-08-05)
- 1.1.2 (2019-08-05)
- 1.1.1 (2019-07-26)
- 1.1.0 (2019-07-23)
- 1.0.1 (2019-04-30)
- 1.0 (2019-04-26)
- 0.7.2 (2019-03-26)
- 0.7.1 (2019-03-01)
- 0.7.0 (2018-12-04)
- 0.6.3 (2018-09-24)
- 0.6.2 (2018-09-24)
- 0.6.1 (2018-09-19)
- 0.6.0 (2018-08-09)
- 0.5.0 (2018-08-02)
- 0.4.0 (2018-07-26)
- 0.3.0 (2018-07-23)
- 0.2.0 (2018-07-17)
- 0.1.0 (2018-06-20)
- 0.0.1 (2018-06-15)
- GitHub Repository