eodag 3.6.0__tar.gz → 3.7.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {eodag-3.6.0 → eodag-3.7.0}/CHANGES.rst +72 -0
- {eodag-3.6.0/eodag.egg-info → eodag-3.7.0}/PKG-INFO +7 -8
- {eodag-3.6.0 → eodag-3.7.0}/README.rst +5 -7
- {eodag-3.6.0 → eodag-3.7.0}/charts/eodag-server/Chart.yaml +2 -2
- eodag-3.7.0/docs/_static/eodag_overview.png +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/docs/add_provider.rst +1 -1
- {eodag-3.6.0 → eodag-3.7.0}/docs/getting_started_guide/configure.rst +1 -1
- eodag-3.6.0/docs/getting_started_guide/side_projects.rst → eodag-3.7.0/docs/getting_started_guide/ecosystem.rst +3 -12
- {eodag-3.6.0 → eodag-3.7.0}/docs/getting_started_guide/index.rst +1 -1
- {eodag-3.6.0 → eodag-3.7.0}/docs/getting_started_guide/overview.rst +3 -3
- {eodag-3.6.0 → eodag-3.7.0}/docs/getting_started_guide/providers.rst +1 -3
- {eodag-3.6.0 → eodag-3.7.0}/docs/getting_started_guide/register.rst +0 -4
- {eodag-3.6.0 → eodag-3.7.0}/docs/index.rst +0 -1
- {eodag-3.6.0 → eodag-3.7.0}/docs/notebooks/api_user_guide/2_providers_products_available.ipynb +1 -2
- {eodag-3.6.0 → eodag-3.7.0}/docs/notebooks/api_user_guide/3_configuration.ipynb +0 -1
- {eodag-3.6.0 → eodag-3.7.0}/docs/notebooks/api_user_guide/4_search.ipynb +0 -3
- eodag-3.7.0/docs/notebooks/tutos/tuto_dedt_lumi_roi.ipynb +975 -0
- {eodag-3.6.0 → eodag-3.7.0}/docs/notebooks/tutos/tuto_search_location_tile.ipynb +1 -1
- {eodag-3.6.0 → eodag-3.7.0}/docs/plugins.rst +1 -3
- {eodag-3.6.0 → eodag-3.7.0}/docs/stac_rest.rst +1 -1
- {eodag-3.6.0 → eodag-3.7.0}/docs/tutos.rst +1 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/api/core.py +0 -14
- {eodag-3.6.0 → eodag-3.7.0}/eodag/api/product/metadata_mapping.py +20 -3
- {eodag-3.6.0 → eodag-3.7.0}/eodag/cli.py +6 -3
- {eodag-3.6.0 → eodag-3.7.0}/eodag/config.py +5 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/plugins/authentication/openid_connect.py +1 -2
- {eodag-3.6.0 → eodag-3.7.0}/eodag/plugins/download/aws.py +145 -178
- {eodag-3.6.0 → eodag-3.7.0}/eodag/plugins/download/base.py +3 -2
- {eodag-3.6.0 → eodag-3.7.0}/eodag/plugins/download/creodias_s3.py +10 -5
- {eodag-3.6.0 → eodag-3.7.0}/eodag/plugins/download/http.py +14 -6
- {eodag-3.6.0 → eodag-3.7.0}/eodag/plugins/download/s3rest.py +1 -2
- {eodag-3.6.0 → eodag-3.7.0}/eodag/plugins/manager.py +1 -1
- {eodag-3.6.0 → eodag-3.7.0}/eodag/plugins/search/base.py +34 -4
- {eodag-3.6.0 → eodag-3.7.0}/eodag/plugins/search/build_search_result.py +3 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/plugins/search/cop_marine.py +2 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/plugins/search/qssearch.py +44 -25
- eodag-3.7.0/eodag/resources/ext_product_types.json +1 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/resources/product_types.yml +30 -153
- {eodag-3.6.0 → eodag-3.7.0}/eodag/resources/providers.yml +48 -325
- {eodag-3.6.0 → eodag-3.7.0}/eodag/resources/stac.yml +1 -2
- {eodag-3.6.0 → eodag-3.7.0}/eodag/resources/user_conf_template.yml +0 -11
- {eodag-3.6.0 → eodag-3.7.0}/eodag/rest/core.py +5 -9
- {eodag-3.6.0 → eodag-3.7.0}/eodag/utils/__init__.py +41 -27
- {eodag-3.6.0 → eodag-3.7.0}/eodag/utils/exceptions.py +4 -0
- eodag-3.7.0/eodag/utils/s3.py +771 -0
- {eodag-3.6.0 → eodag-3.7.0/eodag.egg-info}/PKG-INFO +7 -8
- {eodag-3.6.0 → eodag-3.7.0}/eodag.egg-info/SOURCES.txt +2 -1
- {eodag-3.6.0 → eodag-3.7.0}/eodag.egg-info/requires.txt +1 -0
- {eodag-3.6.0 → eodag-3.7.0}/pyproject.toml +1 -1
- {eodag-3.6.0 → eodag-3.7.0}/setup.cfg +1 -0
- eodag-3.6.0/docs/_static/eodag_overview.png +0 -0
- eodag-3.6.0/eodag/resources/ext_product_types.json +0 -1
- eodag-3.6.0/eodag/utils/s3.py +0 -231
- {eodag-3.6.0 → eodag-3.7.0}/.dockerignore +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/.editorconfig +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/.gitattributes +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/.github/ISSUE_TEMPLATE/bug_report.md +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/.github/ISSUE_TEMPLATE/feature_request.md +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/.github/pull_request_template.md +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/.github/workflows/changelog.yml +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/.github/workflows/deploy.yml +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/.github/workflows/fetch.yml +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/.github/workflows/github-pages.yml +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/.github/workflows/lint-pr-title.yml +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/.github/workflows/publish.yml +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/.github/workflows/test.yml +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/.gitignore +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/.pre-commit-config.yaml +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/BREAKING_CHANGES.rst +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/CODE_OF_CONDUCT.md +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/CONTRIBUTING.rst +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/LICENSE +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/MANIFEST.in +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/NOTICE +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/charts/eodag-server/Chart.lock +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/charts/eodag-server/README.md +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/charts/eodag-server/templates/NOTES.txt +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/charts/eodag-server/templates/_helpers.tpl +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/charts/eodag-server/templates/configmap.yaml +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/charts/eodag-server/templates/deployment.yaml +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/charts/eodag-server/templates/extra-list.yaml +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/charts/eodag-server/templates/hpa.yaml +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/charts/eodag-server/templates/ingress.yaml +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/charts/eodag-server/templates/pv.yaml +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/charts/eodag-server/templates/pvc.yaml +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/charts/eodag-server/templates/secret.yaml +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/charts/eodag-server/templates/service.yaml +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/charts/eodag-server/templates/serviceaccount.yaml +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/charts/eodag-server/values.yaml +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/docker/run-stac-server.sh +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/docker/stac-browser.dockerfile +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/docker/stac-server.dockerfile +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/docker-compose.yml +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/docs/Makefile +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/docs/_static/custom.css +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/docs/_static/download_methods.png +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/docs/_static/eodag_advanced_calls_graph.svg +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/docs/_static/eodag_bycs.png +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/docs/_static/eodag_fetch_product_types.png +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/docs/_static/eodag_logo_160.png +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/docs/_static/eodag_logo_160r.png +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/docs/_static/eodag_main_calls_graph.svg +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/docs/_static/eodag_stac_client.png +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/docs/_static/eodag_stac_server.png +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/docs/_static/favicon-32x32.png +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/docs/_static/params_mapping_extra.csv +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/docs/_static/params_mapping_offline_infos.json +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/docs/_static/params_mapping_opensearch.csv +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/docs/_static/product_types_information.csv +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/docs/_static/progress_1.png +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/docs/_static/progress_1_none.png +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/docs/_static/progress_2.png +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/docs/_static/progress_2_none.png +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/docs/_static/stac_browser_example.png +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/docs/_static/stac_browser_example_600.png +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/docs/add_product_type.rst +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/docs/api_reference/assets.rst +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/docs/api_reference/call_graphs.rst +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/docs/api_reference/core.rst +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/docs/api_reference/eoproduct.rst +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/docs/api_reference/exceptions.rst +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/docs/api_reference/index.rst +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/docs/api_reference/searchresult.rst +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/docs/api_reference/types.rst +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/docs/api_reference/utils.rst +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/docs/api_user_guide.rst +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/docs/breaking_changes.rst +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/docs/changelog.rst +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/docs/cli_user_guide.rst +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/docs/conf.py +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/docs/contribute.rst +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/docs/drivers.rst +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/docs/getting_started_guide/install.rst +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/docs/getting_started_guide/product_storage_status.rst +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/docs/getting_started_guide/product_types.rst +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/docs/make.bat +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/docs/notebooks/api_user_guide/1_overview.ipynb +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/docs/notebooks/api_user_guide/5_queryables.ipynb +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/docs/notebooks/api_user_guide/6_serialize_deserialize.ipynb +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/docs/notebooks/api_user_guide/7_crunch.ipynb +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/docs/notebooks/api_user_guide/8_download.ipynb +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/docs/notebooks/api_user_guide/9_post_process.ipynb +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/docs/notebooks/api_user_guide/data/crunch_search_results.geojson +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/docs/notebooks/api_user_guide/data/download_search_results.geojson +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/docs/notebooks/intro_notebooks.ipynb +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/docs/notebooks/tutos/auxdata/Gulf_of_Trieste_seamask_UTM33.cpg +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/docs/notebooks/tutos/auxdata/Gulf_of_Trieste_seamask_UTM33.dbf +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/docs/notebooks/tutos/auxdata/Gulf_of_Trieste_seamask_UTM33.prj +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/docs/notebooks/tutos/auxdata/Gulf_of_Trieste_seamask_UTM33.qix +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/docs/notebooks/tutos/auxdata/Gulf_of_Trieste_seamask_UTM33.qpj +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/docs/notebooks/tutos/auxdata/Gulf_of_Trieste_seamask_UTM33.shp +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/docs/notebooks/tutos/auxdata/Gulf_of_Trieste_seamask_UTM33.shx +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/docs/notebooks/tutos/auxdata/sentinel2_tiling_grid_centroids.zip +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/docs/notebooks/tutos/tuto_burnt_areas_snappy.ipynb +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/docs/notebooks/tutos/tuto_cds.ipynb +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/docs/notebooks/tutos/tuto_cop_dem.ipynb +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/docs/notebooks/tutos/tuto_ecmwf.ipynb +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/docs/notebooks/tutos/tuto_meteoblue.ipynb +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/docs/notebooks/tutos/tuto_ship_detection.ipynb +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/docs/notebooks/tutos/tuto_stac_client.ipynb +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/docs/notebooks/tutos/tuto_wekeo.ipynb +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/docs/params_mapping.rst +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/docs/plugins_reference/api.rst +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/docs/plugins_reference/auth.rst +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/docs/plugins_reference/crunch.rst +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/docs/plugins_reference/download.rst +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/docs/plugins_reference/search.rst +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/__init__.py +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/api/__init__.py +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/api/product/__init__.py +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/api/product/_assets.py +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/api/product/_product.py +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/api/product/drivers/__init__.py +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/api/product/drivers/base.py +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/api/product/drivers/generic.py +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/api/product/drivers/sentinel1.py +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/api/product/drivers/sentinel2.py +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/api/search_result.py +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/crunch.py +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/plugins/__init__.py +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/plugins/apis/__init__.py +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/plugins/apis/base.py +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/plugins/apis/ecmwf.py +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/plugins/apis/usgs.py +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/plugins/authentication/__init__.py +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/plugins/authentication/aws_auth.py +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/plugins/authentication/base.py +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/plugins/authentication/generic.py +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/plugins/authentication/header.py +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/plugins/authentication/keycloak.py +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/plugins/authentication/oauth.py +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/plugins/authentication/qsauth.py +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/plugins/authentication/sas_auth.py +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/plugins/authentication/token.py +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/plugins/authentication/token_exchange.py +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/plugins/base.py +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/plugins/crunch/__init__.py +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/plugins/crunch/base.py +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/plugins/crunch/filter_date.py +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/plugins/crunch/filter_latest_intersect.py +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/plugins/crunch/filter_latest_tpl_name.py +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/plugins/crunch/filter_overlap.py +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/plugins/crunch/filter_property.py +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/plugins/download/__init__.py +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/plugins/search/__init__.py +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/plugins/search/creodias_s3.py +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/plugins/search/csw.py +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/plugins/search/data_request_search.py +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/plugins/search/stac_list_assets.py +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/plugins/search/static_stac_search.py +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/py.typed +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/resources/locations_conf_template.yml +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/resources/shp/ne_110m_admin_0_map_units.VERSION.txt +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/resources/shp/ne_110m_admin_0_map_units.cpg +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/resources/shp/ne_110m_admin_0_map_units.dbf +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/resources/shp/ne_110m_admin_0_map_units.prj +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/resources/shp/ne_110m_admin_0_map_units.shp +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/resources/shp/ne_110m_admin_0_map_units.shx +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/resources/stac_api.yml +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/resources/stac_provider.yml +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/rest/__init__.py +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/rest/cache.py +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/rest/config.py +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/rest/constants.py +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/rest/errors.py +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/rest/server.py +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/rest/server.wsgi +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/rest/stac.py +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/rest/templates/README +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/rest/types/__init__.py +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/rest/types/collections_search.py +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/rest/types/eodag_search.py +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/rest/types/queryables.py +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/rest/types/stac_search.py +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/rest/utils/__init__.py +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/rest/utils/cql_evaluate.py +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/rest/utils/rfc3339.py +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/types/__init__.py +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/types/bbox.py +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/types/download_args.py +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/types/queryables.py +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/types/search_args.py +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/types/whoosh.py +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/utils/cache.py +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/utils/env.py +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/utils/import_system.py +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/utils/logging.py +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/utils/notebook.py +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/utils/repr.py +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/utils/requests.py +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/utils/rest.py +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag/utils/stac_reader.py +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag.egg-info/dependency_links.txt +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag.egg-info/entry_points.txt +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/eodag.egg-info/top_level.txt +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/get_pypi_latest_version.sh +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/pytest.ini +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/readthedocs.yml +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/requirements-dev.txt +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/requirements-docs.txt +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/requirements-tutorials.txt +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/requirements.txt +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/setup.py +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/tox.ini +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/utils/params_mapping_to_csv.py +0 -0
- {eodag-3.6.0 → eodag-3.7.0}/utils/product_types_information_to_csv.py +0 -0
|
@@ -3,6 +3,78 @@ Release history
|
|
|
3
3
|
===============
|
|
4
4
|
|
|
5
5
|
|
|
6
|
+
v3.7.0 (2025-07-31)
|
|
7
|
+
===================
|
|
8
|
+
|
|
9
|
+
Bug Fixes
|
|
10
|
+
---------
|
|
11
|
+
|
|
12
|
+
* **core**: Logging issue on entrypoint loading error (`#1728`_, `6f8e6ad`_)
|
|
13
|
+
|
|
14
|
+
* **plugins**: metadata_mapping_from_product in search config (`#1737`_, `cdfe518`_)
|
|
15
|
+
|
|
16
|
+
* **providers**: Allow search by id for CLMS_CORINE with wekeo_main (`#1746`_, `bfe5e71`_)
|
|
17
|
+
|
|
18
|
+
* **providers**: Remove no-more-available theia provider (`#1736`_, `e81013b`_)
|
|
19
|
+
|
|
20
|
+
* **providers**: Update default version for CAMS_GLOBAL_EMISSIONS (`#1738`_, `81e4b90`_)
|
|
21
|
+
|
|
22
|
+
* **server**: Empty instruments mapping (`#1763`_, `11f2318`_)
|
|
23
|
+
|
|
24
|
+
* **utils**: Avoid repeated SSL context creation (`#1758`_, `f93645e`_)
|
|
25
|
+
|
|
26
|
+
Documentation
|
|
27
|
+
-------------
|
|
28
|
+
|
|
29
|
+
* Updated description, overview and ecosystem (`#1734`_, `ea929e4`_)
|
|
30
|
+
|
|
31
|
+
Features
|
|
32
|
+
--------
|
|
33
|
+
|
|
34
|
+
* **plugins**: New search config for assets mapping (`#1711`_, `1281268`_)
|
|
35
|
+
|
|
36
|
+
* **providers**: Add 2 new MSG collections to provider ``eumetsat_ds`` (`#1742`_, `801c52c`_)
|
|
37
|
+
|
|
38
|
+
* **providers**: dedt_lumi search by geometry (`#1710`_, `efccdd0`_)
|
|
39
|
+
|
|
40
|
+
Performance Improvements
|
|
41
|
+
------------------------
|
|
42
|
+
|
|
43
|
+
* **plugins**: Optimize AwsDownload streaming (`#1740`_, `48f0e4c`_)
|
|
44
|
+
|
|
45
|
+
Refactoring
|
|
46
|
+
-----------
|
|
47
|
+
|
|
48
|
+
* Directly import urllib.parse methods (`#1761`_, `e4aca26`_)
|
|
49
|
+
|
|
50
|
+
.. _#1710: https://github.com/CS-SI/eodag/pull/1710
|
|
51
|
+
.. _#1711: https://github.com/CS-SI/eodag/pull/1711
|
|
52
|
+
.. _#1728: https://github.com/CS-SI/eodag/pull/1728
|
|
53
|
+
.. _#1734: https://github.com/CS-SI/eodag/pull/1734
|
|
54
|
+
.. _#1736: https://github.com/CS-SI/eodag/pull/1736
|
|
55
|
+
.. _#1737: https://github.com/CS-SI/eodag/pull/1737
|
|
56
|
+
.. _#1738: https://github.com/CS-SI/eodag/pull/1738
|
|
57
|
+
.. _#1740: https://github.com/CS-SI/eodag/pull/1740
|
|
58
|
+
.. _#1742: https://github.com/CS-SI/eodag/pull/1742
|
|
59
|
+
.. _#1746: https://github.com/CS-SI/eodag/pull/1746
|
|
60
|
+
.. _#1758: https://github.com/CS-SI/eodag/pull/1758
|
|
61
|
+
.. _#1761: https://github.com/CS-SI/eodag/pull/1761
|
|
62
|
+
.. _#1763: https://github.com/CS-SI/eodag/pull/1763
|
|
63
|
+
.. _11f2318: https://github.com/CS-SI/eodag/commit/11f2318a150982504226378110b853ca4aa644ce
|
|
64
|
+
.. _1281268: https://github.com/CS-SI/eodag/commit/1281268507c3a7338be9954b403a20d5156bc527
|
|
65
|
+
.. _48f0e4c: https://github.com/CS-SI/eodag/commit/48f0e4c8c82e80841b7b64bec60a251661a13d12
|
|
66
|
+
.. _6f8e6ad: https://github.com/CS-SI/eodag/commit/6f8e6ad683f786286cfb36e8e22c17cfb2daf125
|
|
67
|
+
.. _801c52c: https://github.com/CS-SI/eodag/commit/801c52c38124e6dfff1a5fdedeb0cbd269fc2478
|
|
68
|
+
.. _81e4b90: https://github.com/CS-SI/eodag/commit/81e4b903c5474894e87e6dcb9366fdfbb152398b
|
|
69
|
+
.. _bfe5e71: https://github.com/CS-SI/eodag/commit/bfe5e712087804d31fe7f057e5efbd1d2863fb36
|
|
70
|
+
.. _cdfe518: https://github.com/CS-SI/eodag/commit/cdfe518f2b392b700994f93d2c2d6cafdb46b81d
|
|
71
|
+
.. _e4aca26: https://github.com/CS-SI/eodag/commit/e4aca2672b156a6eb338e9e9a8277bc2895aa457
|
|
72
|
+
.. _e81013b: https://github.com/CS-SI/eodag/commit/e81013b262342a0621e2018a7d917145faaa2cc7
|
|
73
|
+
.. _ea929e4: https://github.com/CS-SI/eodag/commit/ea929e4339e976752bc61d1d305ad36ff1b78172
|
|
74
|
+
.. _efccdd0: https://github.com/CS-SI/eodag/commit/efccdd00fbd0880344fe294dba0f4790468fd9bc
|
|
75
|
+
.. _f93645e: https://github.com/CS-SI/eodag/commit/f93645ed4f09194d6c7f12a3c65b2ab3a8f9ad5a
|
|
76
|
+
|
|
77
|
+
|
|
6
78
|
v3.6.0 (2025-07-01)
|
|
7
79
|
===================
|
|
8
80
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: eodag
|
|
3
|
-
Version: 3.
|
|
3
|
+
Version: 3.7.0
|
|
4
4
|
Summary: Earth Observation Data Access Gateway
|
|
5
5
|
Home-page: https://github.com/CS-SI/eodag
|
|
6
6
|
Author: CS GROUP - France
|
|
@@ -86,6 +86,7 @@ Requires-Dist: imageio; extra == "tutorials"
|
|
|
86
86
|
Requires-Dist: rasterio; extra == "tutorials"
|
|
87
87
|
Requires-Dist: netcdf4; extra == "tutorials"
|
|
88
88
|
Requires-Dist: cartopy; extra == "tutorials"
|
|
89
|
+
Requires-Dist: covjsonkit; extra == "tutorials"
|
|
89
90
|
Provides-Extra: dev
|
|
90
91
|
Requires-Dist: eodag[all-providers,csw,server,stubs]; extra == "dev"
|
|
91
92
|
Requires-Dist: pytest; extra == "dev"
|
|
@@ -175,23 +176,21 @@ data provider. The EODAG SDK is structured around three functions:
|
|
|
175
176
|
|
|
176
177
|
* List product types: list of supported products and their description
|
|
177
178
|
|
|
178
|
-
* Search products (by product type or uid)
|
|
179
|
+
* Search products (by product type or uid): searches products according to the search criteria provided
|
|
179
180
|
|
|
180
|
-
* Download products
|
|
181
|
+
* Download products: download product “as is"
|
|
181
182
|
|
|
182
183
|
EODAG is developed in Python. It is structured according to a modular plugin architecture, easily extensible and able to
|
|
183
184
|
integrate new data providers. Three types of plugins compose the tool:
|
|
184
185
|
|
|
185
|
-
* Catalog search plugins, responsible for searching data (OpenSearch,
|
|
186
|
+
* Catalog search plugins, responsible for searching data (STAC, OpenSearch, OData, ...), building paths, retrieving quicklook,
|
|
186
187
|
combining results
|
|
187
188
|
|
|
188
|
-
* Download plugins, allowing to download and retrieve data locally (via
|
|
189
|
+
* Download plugins, allowing to download and retrieve data locally (via HTTP, S3, ...), always with the same directory
|
|
189
190
|
organization
|
|
190
191
|
|
|
191
192
|
* Authentication plugins, which are used to authenticate the user on the external services used (JSON Token, Basic Auth, OAUTH, ...).
|
|
192
193
|
|
|
193
|
-
EODAG can be run as STAC client or server <https://eodag.readthedocs.io/en/latest/stac.html>`_.
|
|
194
|
-
|
|
195
194
|
Read `the documentation <https://eodag.readthedocs.io/en/latest/>`_ for more insights.
|
|
196
195
|
|
|
197
196
|
.. image:: https://raw.githubusercontent.com/CS-SI/eodag/develop/docs/_static/eodag_overview.png
|
|
@@ -318,7 +317,7 @@ An eodag instance can be exposed through a STAC compliant REST api from the comm
|
|
|
318
317
|
|
|
319
318
|
.. code-block:: bash
|
|
320
319
|
|
|
321
|
-
docker run -p 5000:5000 --rm csspace/eodag-server:3.
|
|
320
|
+
docker run -p 5000:5000 --rm csspace/eodag-server:3.7.0
|
|
322
321
|
|
|
323
322
|
You can also browse over your STAC API server using `STAC Browser <https://github.com/radiantearth/stac-browser>`_.
|
|
324
323
|
Simply run:
|
|
@@ -44,23 +44,21 @@ data provider. The EODAG SDK is structured around three functions:
|
|
|
44
44
|
|
|
45
45
|
* List product types: list of supported products and their description
|
|
46
46
|
|
|
47
|
-
* Search products (by product type or uid)
|
|
47
|
+
* Search products (by product type or uid): searches products according to the search criteria provided
|
|
48
48
|
|
|
49
|
-
* Download products
|
|
49
|
+
* Download products: download product “as is"
|
|
50
50
|
|
|
51
51
|
EODAG is developed in Python. It is structured according to a modular plugin architecture, easily extensible and able to
|
|
52
52
|
integrate new data providers. Three types of plugins compose the tool:
|
|
53
53
|
|
|
54
|
-
* Catalog search plugins, responsible for searching data (OpenSearch,
|
|
54
|
+
* Catalog search plugins, responsible for searching data (STAC, OpenSearch, OData, ...), building paths, retrieving quicklook,
|
|
55
55
|
combining results
|
|
56
56
|
|
|
57
|
-
* Download plugins, allowing to download and retrieve data locally (via
|
|
57
|
+
* Download plugins, allowing to download and retrieve data locally (via HTTP, S3, ...), always with the same directory
|
|
58
58
|
organization
|
|
59
59
|
|
|
60
60
|
* Authentication plugins, which are used to authenticate the user on the external services used (JSON Token, Basic Auth, OAUTH, ...).
|
|
61
61
|
|
|
62
|
-
EODAG can be run as STAC client or server <https://eodag.readthedocs.io/en/latest/stac.html>`_.
|
|
63
|
-
|
|
64
62
|
Read `the documentation <https://eodag.readthedocs.io/en/latest/>`_ for more insights.
|
|
65
63
|
|
|
66
64
|
.. image:: https://raw.githubusercontent.com/CS-SI/eodag/develop/docs/_static/eodag_overview.png
|
|
@@ -187,7 +185,7 @@ An eodag instance can be exposed through a STAC compliant REST api from the comm
|
|
|
187
185
|
|
|
188
186
|
.. code-block:: bash
|
|
189
187
|
|
|
190
|
-
docker run -p 5000:5000 --rm csspace/eodag-server:3.
|
|
188
|
+
docker run -p 5000:5000 --rm csspace/eodag-server:3.7.0
|
|
191
189
|
|
|
192
190
|
You can also browse over your STAC API server using `STAC Browser <https://github.com/radiantearth/stac-browser>`_.
|
|
193
191
|
Simply run:
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
apiVersion: v2
|
|
2
|
-
appVersion: 3.
|
|
2
|
+
appVersion: 3.7.0
|
|
3
3
|
dependencies:
|
|
4
4
|
- name: common
|
|
5
5
|
repository: oci://registry-1.docker.io/bitnamicharts
|
|
@@ -15,4 +15,4 @@ name: eodag-server
|
|
|
15
15
|
sources:
|
|
16
16
|
- https://github.com/CS-SI/eodag
|
|
17
17
|
type: application
|
|
18
|
-
version: 3.
|
|
18
|
+
version: 3.7.0
|
|
Binary file
|
|
@@ -64,7 +64,7 @@ own needs (i.e. getting data from a provider not supported by ``eodag``), you sh
|
|
|
64
64
|
and configure them. What you are the most likely to be willing to do is either to develop a new `Search <plugins_reference/search.rst>`_ plugin or an
|
|
65
65
|
`Api <plugins_reference/api.rst>`_ plugin (e.g. to create an interface with another program).
|
|
66
66
|
|
|
67
|
-
`eodag-sentinelsat <https://github.com/CS-SI/eodag-sentinelsat>`_
|
|
67
|
+
`eodag-sentinelsat (archived) <https://github.com/CS-SI/eodag-sentinelsat>`_ was a good example of an Api plugin. It created an interface with the
|
|
68
68
|
`sentinalsat <https://github.com/sentinelsat/sentinelsat>`_ library to search and download products from `SciHub <https://scihub.copernicus.eu/>`_.
|
|
69
69
|
|
|
70
70
|
See more details about how to create a new plugin in :ref:`this dedicated section <creating_plugins>`.
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
..
|
|
1
|
+
.. ecosystem:
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
Ecosystem
|
|
4
|
+
=========
|
|
5
5
|
|
|
6
6
|
EODAG-cube
|
|
7
7
|
----------
|
|
@@ -10,15 +10,6 @@ Data access functionalities have been split to a separate project to avoid confl
|
|
|
10
10
|
unneeded libraries when using only EODAG basic functionalities. EODAG-cube is available
|
|
11
11
|
on `github <https://github.com/CS-SI/eodag-cube>`__ and `pypi <https://pypi.org/project/eodag-cube>`__.
|
|
12
12
|
|
|
13
|
-
EODAG-sentinelsat
|
|
14
|
-
-----------------
|
|
15
|
-
|
|
16
|
-
API plugin that enables to search and download EO products from catalogs implementing the
|
|
17
|
-
`SciHub / Copernicus Open Access Hub interface <https://scihub.copernicus.eu/userguide/WebHome>`_.
|
|
18
|
-
It is basically a wrapper around `sentinelsat <https://sentinelsat.readthedocs.io>`_, enabling it to be used with EODAG.
|
|
19
|
-
EODAG-sentinelsat is available on `github <https://github.com/CS-SI/eodag-sentinelsat>`__ and
|
|
20
|
-
`pypi <https://pypi.org/project/eodag-sentinelsat/>`__.
|
|
21
|
-
|
|
22
13
|
EODAG-labextension
|
|
23
14
|
------------------
|
|
24
15
|
|
|
@@ -6,7 +6,7 @@ Why EODAG?
|
|
|
6
6
|
Nowadays, we observe a rise in publicly accessible Earth Observation (EO) data.
|
|
7
7
|
Together with it, there is more and more EO data providers, each potentially having
|
|
8
8
|
a different data access policy. This difference is visible at various levels:
|
|
9
|
-
in the data discovery (
|
|
9
|
+
in the data discovery (STAC, OData, OpenSearch more or less custom, etc.), in the
|
|
10
10
|
product access (object storage, downloads, direct file system access, etc.), in
|
|
11
11
|
the storage structure and in the authentication mechanisms (OAUTH, JWT, basic
|
|
12
12
|
auth,...). All these different technologies add a knowledge overhead on a user
|
|
@@ -28,9 +28,9 @@ EODAG is developed in Python. It is structured according to a modular plugin
|
|
|
28
28
|
architecture, easily extensible and able to integrate new data providers. Three
|
|
29
29
|
types of plugins compose the tool:
|
|
30
30
|
|
|
31
|
-
* Catalog search plugins, responsible for searching data (OpenSearch,
|
|
31
|
+
* Catalog search plugins, responsible for searching data (STAC, OpenSearch, OData, ...),
|
|
32
32
|
building paths, retrieving quicklook, combining results
|
|
33
|
-
* Download plugins, allowing to download and retrieve data locally (via
|
|
33
|
+
* Download plugins, allowing to download and retrieve data locally (via HTTP, S3, ...),
|
|
34
34
|
always with the same directory organization
|
|
35
35
|
* Authentication plugins, which are used to authenticate the user on the
|
|
36
36
|
external services used (JSON Token, Basic Auth, OAUTH, ...).
|
|
@@ -11,7 +11,7 @@ Products from the following providers are made avaiable through ``eodag``:
|
|
|
11
11
|
* `aws_eos <https://eos.com/>`_: EOS search for Amazon public datasets
|
|
12
12
|
* `cop_ads <https://ads.atmosphere.copernicus.eu>`_: Copernicus Atmosphere Data Store
|
|
13
13
|
* `cop_cds <https://cds.climate.copernicus.eu>`_: Copernicus Climate Data Store
|
|
14
|
-
* `cop_dataspace <https://dataspace.copernicus.eu/>`_: Copernicus Data Space
|
|
14
|
+
* `cop_dataspace <https://dataspace.copernicus.eu/>`_: Copernicus Data Space Ecosystem
|
|
15
15
|
* `cop_ewds <https://ewds.climate.copernicus.eu>`_: CEMS Early Warning Data Store
|
|
16
16
|
* `cop_marine <https://marine.copernicus.eu>`_: Copernicus Marine Service
|
|
17
17
|
* `creodias <https://creodias.eu/>`_: CloudFerro DIAS
|
|
@@ -30,8 +30,6 @@ Products from the following providers are made avaiable through ``eodag``:
|
|
|
30
30
|
* `peps <https://peps.cnes.fr/rocket/#/home>`_: French National Space Agency (CNES) catalog for Sentinel products
|
|
31
31
|
* `planetary_computer <https://planetarycomputer.microsoft.com/>`_: Microsoft Planetary Computer
|
|
32
32
|
* `sara <https://copernicus.nci.org.au>`_: Sentinel Australasia Regional Access
|
|
33
|
-
* `theia <https://theia.cnes.fr/atdistrib/rocket/>`_: French National Space Agency (CNES) value-adding products for Land
|
|
34
|
-
surfaces
|
|
35
33
|
* `usgs <https://earthexplorer.usgs.gov/>`_: U.S geological survey catalog for Landsat products
|
|
36
34
|
* `usgs_satapi_aws <https://landsatlook.usgs.gov/sat-api/>`_: USGS Landsatlook SAT API
|
|
37
35
|
* `wekeo_cmems <https://www.wekeo.eu>`_: Copernicus Marine (CMEMS) data from WEkEO
|
|
@@ -207,10 +207,6 @@ with your Microsoft account `here <https://planetarycomputer.developer.azure-api
|
|
|
207
207
|
Create an account `here <https://copernicus.nci.org.au/sara.client/#/register>`__, then use your email as ``username`` in
|
|
208
208
|
eodag credentials.
|
|
209
209
|
|
|
210
|
-
``theia``
|
|
211
|
-
^^^^^^^^^
|
|
212
|
-
Create an account `here <https://sso.theia-land.fr/theia/register/register.xhtml>`__
|
|
213
|
-
|
|
214
210
|
``usgs``
|
|
215
211
|
^^^^^^^^
|
|
216
212
|
Create an account `here <https://ers.cr.usgs.gov/register/>`__, and
|
|
@@ -47,7 +47,6 @@ types (Sentinel 1, Sentinel 2, Sentinel 3, Landsat, etc.) that can be searched a
|
|
|
47
47
|
`peps <https://peps.cnes.fr/rocket/#/home>`_,
|
|
48
48
|
`planetary_computer <https://planetarycomputer.microsoft.com>`_,
|
|
49
49
|
`sara <https://copernicus.nci.org.au>`_,
|
|
50
|
-
`theia <https://theia.cnes.fr/atdistrib/rocket>`_,
|
|
51
50
|
`usgs <https://earthexplorer.usgs.gov>`_,
|
|
52
51
|
`usgs_satapi_aws <https://landsatlook.usgs.gov>`_,
|
|
53
52
|
`wekeo_cmems <https://www.wekeo.eu>`_,
|
{eodag-3.6.0 → eodag-3.7.0}/docs/notebooks/api_user_guide/2_providers_products_available.ipynb
RENAMED
|
@@ -71,7 +71,6 @@
|
|
|
71
71
|
" 'peps',\n",
|
|
72
72
|
" 'planetary_computer',\n",
|
|
73
73
|
" 'sara',\n",
|
|
74
|
-
" 'theia',\n",
|
|
75
74
|
" 'usgs_satapi_aws',\n",
|
|
76
75
|
" 'wekeo_cmems',\n",
|
|
77
76
|
" 'wekeo_ecmwf',\n",
|
|
@@ -101,7 +100,7 @@
|
|
|
101
100
|
"name": "stdout",
|
|
102
101
|
"output_type": "stream",
|
|
103
102
|
"text": [
|
|
104
|
-
"eodag has
|
|
103
|
+
"eodag has 26 providers already configured.\n"
|
|
105
104
|
]
|
|
106
105
|
}
|
|
107
106
|
],
|
|
@@ -120,8 +120,6 @@
|
|
|
120
120
|
"Warning\n",
|
|
121
121
|
"\n",
|
|
122
122
|
"The [SearchResult.number_matched](../../api_reference/searchresult.rst#eodag.api.search_result.SearchResult) attribute is the **estimated** total number of products matching the search criteria, since, unfortunately, all the providers do not return the **exact** total number.\n",
|
|
123
|
-
"For example,\n",
|
|
124
|
-
"*theia* returns the number of products available in the whole collection instead of the number of products that match the search criteria.\n",
|
|
125
123
|
"\n",
|
|
126
124
|
"</div>\n",
|
|
127
125
|
"\n",
|
|
@@ -5745,7 +5743,6 @@
|
|
|
5745
5743
|
" 'MO_GLOBAL_MULTIYEAR_WAV_001_032',\n",
|
|
5746
5744
|
" 'S2_MSI_L2A_COG',\n",
|
|
5747
5745
|
" 'S2_MSI_L2B_MAJA_WATER',\n",
|
|
5748
|
-
" 'S2_MSI_L3A_WASP',\n",
|
|
5749
5746
|
" 'S3_LAN',\n",
|
|
5750
5747
|
" 'S3_OLCI_L2WRR_BC003',\n",
|
|
5751
5748
|
" 'S3_SLSTR_L1RBT',\n",
|