eodag 4.0.0a2__tar.gz → 4.0.0a4__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-4.0.0a2 → eodag-4.0.0a4}/.github/workflows/fetch.yml +4 -4
- {eodag-4.0.0a2 → eodag-4.0.0a4}/CHANGES.rst +28 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/CONTRIBUTING.rst +1 -1
- {eodag-4.0.0a2/eodag.egg-info → eodag-4.0.0a4}/PKG-INFO +1 -1
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/_static/params_mapping_extra.csv +8 -7
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/_static/params_mapping_offline_infos.json +1 -1
- eodag-4.0.0a4/docs/api_reference/collection.rst +17 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/api_reference/core.rst +2 -1
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/api_reference/index.rst +9 -0
- eodag-4.0.0a4/docs/api_reference/provider.rst +14 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/api_reference/queryables.rst +1 -1
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/api_user_guide.rst +2 -2
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/cli_user_guide.rst +1 -1
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/getting_started_guide/configure.rst +1 -1
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/getting_started_guide/features_overview.ipynb +1 -39
- eodag-4.0.0a2/docs/notebooks/api_user_guide/1_providers_products_available.ipynb → eodag-4.0.0a4/docs/notebooks/api_user_guide/1_providers_collections_available.ipynb +12069 -10965
- eodag-4.0.0a4/docs/notebooks/api_user_guide/2_configuration.ipynb +1669 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/notebooks/api_user_guide/3_search.ipynb +1 -1
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/notebooks/api_user_guide/4_queryables.ipynb +1 -1
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/notebooks/intro_notebooks.ipynb +1 -1
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/notebooks/tutos/tuto_search_location_tile.ipynb +1 -1
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/notebooks/tutos/tuto_stac_client.ipynb +1 -1
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/api/collection.py +10 -9
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/api/core.py +233 -335
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/api/product/_product.py +3 -3
- eodag-4.0.0a4/eodag/api/provider.py +990 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/cli.py +1 -3
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/config.py +73 -444
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/plugins/authentication/token.py +0 -1
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/plugins/download/http.py +0 -1
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/plugins/manager.py +24 -34
- eodag-4.0.0a4/eodag/resources/ext_collections.json +1 -0
- eodag-4.0.0a4/eodag/resources/ext_product_types.json +1 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/resources/providers.yml +4 -4
- {eodag-4.0.0a2 → eodag-4.0.0a4/eodag.egg-info}/PKG-INFO +1 -1
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag.egg-info/SOURCES.txt +3 -1
- {eodag-4.0.0a2 → eodag-4.0.0a4}/pyproject.toml +1 -1
- {eodag-4.0.0a2 → eodag-4.0.0a4}/pytest.ini +1 -2
- {eodag-4.0.0a2 → eodag-4.0.0a4}/utils/params_mapping_to_csv.py +12 -21
- eodag-4.0.0a2/docs/api_reference/collection.rst +0 -33
- eodag-4.0.0a2/docs/notebooks/api_user_guide/2_configuration.ipynb +0 -316
- eodag-4.0.0a2/eodag/resources/ext_collections.json +0 -1
- eodag-4.0.0a2/eodag/resources/ext_product_types.json +0 -1
- {eodag-4.0.0a2 → eodag-4.0.0a4}/.dockerignore +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/.editorconfig +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/.gitattributes +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/.github/ISSUE_TEMPLATE/bug_report.md +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/.github/ISSUE_TEMPLATE/feature_request.md +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/.github/pull_request_template.md +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/.github/workflows/changelog.yml +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/.github/workflows/deploy.yml +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/.github/workflows/github-pages.yml +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/.github/workflows/lint-pr-title.yml +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/.github/workflows/publish.yml +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/.github/workflows/test.yml +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/.gitignore +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/.pre-commit-config.yaml +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/BREAKING_CHANGES.rst +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/CODE_OF_CONDUCT.md +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/LICENSE +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/MANIFEST.in +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/NOTICE +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/README.rst +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docker-compose.yml +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/Makefile +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/_static/collections_information.csv +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/_static/custom.css +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/_static/download_methods.png +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/_static/eodag_advanced_calls_graph.svg +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/_static/eodag_bycs.png +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/_static/eodag_fetch_collections.png +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/_static/eodag_logo_160.png +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/_static/eodag_logo_160r.png +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/_static/eodag_main_calls_graph.svg +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/_static/eodag_overview.png +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/_static/eodag_stac_server.png +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/_static/favicon-32x32.png +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/_static/params_mapping_opensearch.csv +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/_static/progress_1.png +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/_static/progress_1_none.png +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/_static/progress_2.png +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/_static/progress_2_none.png +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/_static/stac_browser_example.png +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/_static/stac_browser_example_600.png +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/add_collection.rst +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/add_provider.rst +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/api_reference/assets.rst +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/api_reference/call_graphs.rst +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/api_reference/eoproduct.rst +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/api_reference/exceptions.rst +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/api_reference/searchresult.rst +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/api_reference/types.rst +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/api_reference/utils.rst +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/breaking_changes.rst +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/changelog.rst +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/conf.py +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/contribute.rst +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/drivers.rst +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/ecosystem.rst +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/getting_started_guide/collections.rst +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/getting_started_guide/index.rst +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/getting_started_guide/install.rst +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/getting_started_guide/overview.rst +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/getting_started_guide/product_storage_status.rst +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/index.rst +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/make.bat +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/notebooks/api_user_guide/5_serialize_deserialize.ipynb +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/notebooks/api_user_guide/6_crunch.ipynb +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/notebooks/api_user_guide/7_download.ipynb +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/notebooks/api_user_guide/8_post_process.ipynb +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/notebooks/api_user_guide/data/crunch_search_results.geojson +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/notebooks/tutos/auxdata/Gulf_of_Trieste_seamask_UTM33.cpg +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/notebooks/tutos/auxdata/Gulf_of_Trieste_seamask_UTM33.dbf +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/notebooks/tutos/auxdata/Gulf_of_Trieste_seamask_UTM33.prj +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/notebooks/tutos/auxdata/Gulf_of_Trieste_seamask_UTM33.qix +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/notebooks/tutos/auxdata/Gulf_of_Trieste_seamask_UTM33.qpj +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/notebooks/tutos/auxdata/Gulf_of_Trieste_seamask_UTM33.shp +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/notebooks/tutos/auxdata/Gulf_of_Trieste_seamask_UTM33.shx +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/notebooks/tutos/auxdata/sentinel2_tiling_grid_centroids.zip +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/notebooks/tutos/tuto_burnt_areas_snappy.ipynb +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/notebooks/tutos/tuto_cds.ipynb +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/notebooks/tutos/tuto_cop_dem.ipynb +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/notebooks/tutos/tuto_dedt_lumi_roi.ipynb +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/notebooks/tutos/tuto_ecmwf.ipynb +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/notebooks/tutos/tuto_fedeo_ceda.ipynb +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/notebooks/tutos/tuto_meteoblue.ipynb +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/notebooks/tutos/tuto_ship_detection.ipynb +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/notebooks/tutos/tuto_wekeo.ipynb +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/params_mapping.rst +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/plugins.rst +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/plugins_reference/api.rst +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/plugins_reference/auth.rst +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/plugins_reference/crunch.rst +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/plugins_reference/download.rst +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/plugins_reference/search.rst +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/providers.rst +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/docs/tutos.rst +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/__init__.py +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/api/__init__.py +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/api/product/__init__.py +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/api/product/_assets.py +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/api/product/drivers/__init__.py +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/api/product/drivers/base.py +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/api/product/drivers/generic.py +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/api/product/drivers/sentinel1.py +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/api/product/drivers/sentinel2.py +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/api/product/metadata_mapping.py +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/api/search_result.py +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/crunch.py +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/plugins/__init__.py +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/plugins/apis/__init__.py +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/plugins/apis/base.py +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/plugins/apis/ecmwf.py +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/plugins/apis/usgs.py +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/plugins/authentication/__init__.py +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/plugins/authentication/aws_auth.py +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/plugins/authentication/base.py +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/plugins/authentication/generic.py +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/plugins/authentication/header.py +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/plugins/authentication/keycloak.py +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/plugins/authentication/openid_connect.py +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/plugins/authentication/qsauth.py +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/plugins/authentication/sas_auth.py +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/plugins/authentication/token_exchange.py +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/plugins/base.py +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/plugins/crunch/__init__.py +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/plugins/crunch/base.py +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/plugins/crunch/filter_date.py +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/plugins/crunch/filter_latest_intersect.py +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/plugins/crunch/filter_latest_tpl_name.py +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/plugins/crunch/filter_overlap.py +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/plugins/crunch/filter_property.py +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/plugins/download/__init__.py +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/plugins/download/aws.py +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/plugins/download/base.py +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/plugins/search/__init__.py +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/plugins/search/base.py +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/plugins/search/build_search_result.py +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/plugins/search/cop_marine.py +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/plugins/search/creodias_s3.py +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/plugins/search/csw.py +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/plugins/search/qssearch.py +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/plugins/search/stac_list_assets.py +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/plugins/search/static_stac_search.py +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/py.typed +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/resources/collections.yml +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/resources/locations_conf_template.yml +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/resources/shp/ne_110m_admin_0_map_units.VERSION.txt +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/resources/shp/ne_110m_admin_0_map_units.cpg +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/resources/shp/ne_110m_admin_0_map_units.dbf +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/resources/shp/ne_110m_admin_0_map_units.prj +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/resources/shp/ne_110m_admin_0_map_units.shp +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/resources/shp/ne_110m_admin_0_map_units.shx +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/resources/stac_provider.yml +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/resources/user_conf_template.yml +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/types/__init__.py +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/types/bbox.py +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/types/download_args.py +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/types/queryables.py +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/types/search_args.py +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/utils/__init__.py +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/utils/cache.py +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/utils/dates.py +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/utils/env.py +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/utils/exceptions.py +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/utils/free_text_search.py +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/utils/import_system.py +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/utils/logging.py +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/utils/notebook.py +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/utils/repr.py +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/utils/requests.py +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/utils/s3.py +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag/utils/stac_reader.py +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag.egg-info/dependency_links.txt +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag.egg-info/entry_points.txt +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag.egg-info/requires.txt +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/eodag.egg-info/top_level.txt +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/get_pypi_latest_version.sh +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/readthedocs.yml +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/requirements-dev.txt +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/requirements-docs.txt +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/requirements-tutorials.txt +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/requirements.txt +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/setup.cfg +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/setup.py +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/tox.ini +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/utils/collections_information_to_csv.py +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/utils/ext_collections_cmp.py +0 -0
- {eodag-4.0.0a2 → eodag-4.0.0a4}/utils/ext_product_types_cmp.py +0 -0
|
@@ -86,7 +86,7 @@ jobs:
|
|
|
86
86
|
source .venv/bin/activate
|
|
87
87
|
COMMIT_URL="${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}/commit/${{ steps.commit.outputs.commit_sha }}"
|
|
88
88
|
|
|
89
|
-
echo "Update external collections reference from daily fetch. See [Python API User Guide / Collections discovery](https://eodag.readthedocs.io/en/latest/notebooks/api_user_guide/
|
|
89
|
+
echo "Update external collections reference from daily fetch. See [Python API User Guide / Collections discovery](https://eodag.readthedocs.io/en/latest/notebooks/api_user_guide/1_providers_collections_available.html#Collections-discovery)" >> $GITHUB_STEP_SUMMARY
|
|
90
90
|
|
|
91
91
|
echo '### Collections validation' >> $GITHUB_STEP_SUMMARY
|
|
92
92
|
if [ -s "/tmp/warnings.txt" ]; then
|
|
@@ -116,7 +116,7 @@ jobs:
|
|
|
116
116
|
|
|
117
117
|
{
|
|
118
118
|
# Include header info
|
|
119
|
-
echo "Update external collections reference from daily fetch. See [Python API User Guide / Collections discovery](https://eodag.readthedocs.io/en/latest/notebooks/api_user_guide/
|
|
119
|
+
echo "Update external collections reference from daily fetch. See [Python API User Guide / Collections discovery](https://eodag.readthedocs.io/en/latest/notebooks/api_user_guide/1_providers_collections_available.html#Collections-discovery)"
|
|
120
120
|
echo ""
|
|
121
121
|
echo '### Collections validation'
|
|
122
122
|
if [ -s "/tmp/warnings.txt" ]; then
|
|
@@ -219,7 +219,7 @@ jobs:
|
|
|
219
219
|
source .venv/bin/activate
|
|
220
220
|
COMMIT_URL="${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}/commit/${{ steps.commit.outputs.commit_sha }}"
|
|
221
221
|
|
|
222
|
-
echo "Update external product-types reference from daily fetch. See [Python API User Guide / Collections discovery](https://eodag.readthedocs.io/en/latest/notebooks/api_user_guide/
|
|
222
|
+
echo "Update external product-types reference from daily fetch. See [Python API User Guide / Collections discovery](https://eodag.readthedocs.io/en/latest/notebooks/api_user_guide/1_providers_collections_available.html#Collections-discovery)" >> $GITHUB_STEP_SUMMARY
|
|
223
223
|
echo '### Changed file' >> $GITHUB_STEP_SUMMARY
|
|
224
224
|
if [ "${{ steps.commit.outputs.has_changes }}" = "true" ]; then
|
|
225
225
|
git show --name-only --format=tformat: >> $GITHUB_STEP_SUMMARY
|
|
@@ -242,7 +242,7 @@ jobs:
|
|
|
242
242
|
|
|
243
243
|
{
|
|
244
244
|
# Include header info
|
|
245
|
-
echo "Update external product-types reference from daily fetch. See [Python API User Guide / Collections discovery](https://eodag.readthedocs.io/en/latest/notebooks/api_user_guide/
|
|
245
|
+
echo "Update external product-types reference from daily fetch. See [Python API User Guide / Collections discovery](https://eodag.readthedocs.io/en/latest/notebooks/api_user_guide/1_providers_collections_available.html#Collections-discovery)"
|
|
246
246
|
echo ""
|
|
247
247
|
echo "### Changed file"
|
|
248
248
|
if [ "${{ steps.commit.outputs.has_changes }}" = "true" ]; then
|
|
@@ -3,6 +3,34 @@ Release history
|
|
|
3
3
|
===============
|
|
4
4
|
|
|
5
5
|
|
|
6
|
+
v4.0.0a4 (2025-11-28)
|
|
7
|
+
=====================
|
|
8
|
+
|
|
9
|
+
Features
|
|
10
|
+
--------
|
|
11
|
+
|
|
12
|
+
* **core**: Providers representation classes (`#1902`_, `fa5f42b`_)
|
|
13
|
+
|
|
14
|
+
.. _#1902: https://github.com/CS-SI/eodag/pull/1902
|
|
15
|
+
.. _fa5f42b: https://github.com/CS-SI/eodag/commit/fa5f42b5ec0cbe172e4dd73db6906f9f7b583793
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
v4.0.0a3 (2025-11-27)
|
|
19
|
+
=====================
|
|
20
|
+
|
|
21
|
+
Bug Fixes
|
|
22
|
+
---------
|
|
23
|
+
|
|
24
|
+
* **core**: Handling of collections with aliases (`#1935`_, `274280a`_)
|
|
25
|
+
|
|
26
|
+
* **providers**: Geodes max_items_per_page down to 80 (`#1938`_, `abf8c71`_)
|
|
27
|
+
|
|
28
|
+
.. _#1935: https://github.com/CS-SI/eodag/pull/1935
|
|
29
|
+
.. _#1938: https://github.com/CS-SI/eodag/pull/1938
|
|
30
|
+
|
|
31
|
+
.. _274280a: https://github.com/CS-SI/eodag/commit/274280ae3b5df1fe7eac792d57192e633879dbcd
|
|
32
|
+
.. _abf8c71: https://github.com/CS-SI/eodag/commit/abf8c71bdbb7b3bcc27371b85f47261c489e3650
|
|
33
|
+
|
|
6
34
|
v4.0.0a2 (2025-11-19)
|
|
7
35
|
=====================
|
|
8
36
|
|
|
@@ -106,7 +106,7 @@ a notebook's general metadata:
|
|
|
106
106
|
|
|
107
107
|
The notebooks listed below are **always executed** by `nbsphinx`:
|
|
108
108
|
|
|
109
|
-
* `<notebooks/api_user_guide/
|
|
109
|
+
* `<notebooks/api_user_guide/1_providers_collections_available.ipynb>`_
|
|
110
110
|
* `<notebooks/api_user_guide/2_configuration.ipynb>`_
|
|
111
111
|
* `<notebooks/api_user_guide/6_crunch.ipynb>`_
|
|
112
112
|
|
|
@@ -10,16 +10,16 @@ constellation,:green:`queryable metadata`,,:green:`queryable metadata`,:green:`q
|
|
|
10
10
|
created,,,,,,,,,,metadata only,,metadata only,
|
|
11
11
|
datetime,,,,metadata only,metadata only,,,metadata only,metadata only,,metadata only,,metadata only
|
|
12
12
|
description,,,,,,,,,,metadata only,,metadata only,
|
|
13
|
-
end_datetime,:green:`queryable metadata`,,:green:`queryable metadata`,:green:`queryable metadata`,:green:`queryable metadata
|
|
13
|
+
end_datetime,:green:`queryable metadata`,,:green:`queryable metadata`,:green:`queryable metadata`,:green:`queryable metadata`,:green:`queryable metadata`,:green:`queryable metadata`,:green:`queryable metadata`,:green:`queryable metadata`,:green:`queryable metadata`,:green:`queryable metadata`,:green:`queryable metadata`,:green:`queryable metadata`
|
|
14
14
|
endingDateTime,metadata only,,metadata only,,,,,,,,,,
|
|
15
15
|
eo:cloud_cover,:green:`queryable metadata`,,:green:`queryable metadata`,:green:`queryable metadata`,:green:`queryable metadata`,,,:green:`queryable metadata`,:green:`queryable metadata`,:green:`queryable metadata`,:green:`queryable metadata`,:green:`queryable metadata`,:green:`queryable metadata`
|
|
16
16
|
eo:snow_cover,,,,,,,,,,:green:`queryable metadata`,,:green:`queryable metadata`,
|
|
17
|
-
eodag:default_geometry,,metadata only
|
|
18
|
-
eodag:download_link,metadata only,,metadata only,metadata only,metadata only
|
|
17
|
+
eodag:default_geometry,,metadata only,,,,metadata only,metadata only,,,,,,
|
|
18
|
+
eodag:download_link,metadata only,,metadata only,metadata only,metadata only,metadata only,metadata only,metadata only,metadata only,metadata only,metadata only,metadata only,metadata only
|
|
19
19
|
eodag:quicklook,metadata only,,metadata only,metadata only,metadata only,,metadata only,metadata only,metadata only,metadata only,metadata only,metadata only,metadata only
|
|
20
20
|
eodag:thumbnail,metadata only,,metadata only,metadata only,metadata only,,,metadata only,metadata only,metadata only,metadata only,metadata only,metadata only
|
|
21
21
|
extraInformation,,,,,,,metadata only,,,,,,
|
|
22
|
-
geometry,:green:`queryable metadata`,,:green:`queryable metadata`,:green:`queryable metadata`,:green:`queryable metadata
|
|
22
|
+
geometry,:green:`queryable metadata`,,:green:`queryable metadata`,:green:`queryable metadata`,:green:`queryable metadata`,:green:`queryable metadata`,:green:`queryable metadata`,metadata only,:green:`queryable metadata`,:green:`queryable metadata`,:green:`queryable metadata`,:green:`queryable metadata`,:green:`queryable metadata`
|
|
23
23
|
grid:code,:green:`queryable metadata`,,:green:`queryable metadata`,:green:`queryable metadata`,,,,,:green:`queryable metadata`,:green:`queryable metadata`,:green:`queryable metadata`,,
|
|
24
24
|
gsd,:green:`queryable metadata`,,:green:`queryable metadata`,:green:`queryable metadata`,:green:`queryable metadata`,,,:green:`queryable metadata`,:green:`queryable metadata`,:green:`queryable metadata`,:green:`queryable metadata`,:green:`queryable metadata`,:green:`queryable metadata`
|
|
25
25
|
id,:green:`queryable metadata`,,:green:`queryable metadata`,:green:`queryable metadata`,:green:`queryable metadata`,,:green:`queryable metadata`,:green:`queryable metadata`,:green:`queryable metadata`,:green:`queryable metadata`,:green:`queryable metadata`,:green:`queryable metadata`,:green:`queryable metadata`
|
|
@@ -27,7 +27,7 @@ instruments,:green:`queryable metadata`,,:green:`queryable metadata`,:green:`que
|
|
|
27
27
|
keywords,,,,,,,,,metadata only,metadata only,,metadata only,
|
|
28
28
|
license,,,,,,,,,,metadata only,,metadata only,
|
|
29
29
|
links,,,,,,,,,,metadata only,,,
|
|
30
|
-
order:status,metadata only,,metadata only,metadata only,metadata only
|
|
30
|
+
order:status,metadata only,,metadata only,metadata only,metadata only,metadata only,metadata only,metadata only,metadata only,metadata only,metadata only,metadata only,metadata only
|
|
31
31
|
processing:datetime,:green:`queryable metadata`,,:green:`queryable metadata`,,,,,,,,,,
|
|
32
32
|
processing:facility,:green:`queryable metadata`,,:green:`queryable metadata`,,,,,,,,,,
|
|
33
33
|
processing:level,:green:`queryable metadata`,,:green:`queryable metadata`,,,,,,,:green:`queryable metadata`,,:green:`queryable metadata`,
|
|
@@ -35,12 +35,13 @@ processing:software,metadata only,,metadata only,,,,,,,,,,
|
|
|
35
35
|
processing:version,:green:`queryable metadata`,,:green:`queryable metadata`,,,,,,,,,,
|
|
36
36
|
product:acquisition_type,,,,,,,,,,metadata only,,metadata only,
|
|
37
37
|
product:timeliness,:green:`queryable metadata`,,:green:`queryable metadata`,,,,,,,,,,
|
|
38
|
-
product:type,:green:`queryable metadata`,,:green:`queryable metadata
|
|
38
|
+
product:type,:green:`queryable metadata`,,:green:`queryable metadata`,,,metadata only,:green:`queryable metadata`,,:green:`queryable metadata`,:green:`queryable metadata`,,:green:`queryable metadata`,
|
|
39
39
|
productInformation,,,,,,,metadata only,,,,,,
|
|
40
40
|
providers,:green:`queryable metadata`,,:green:`queryable metadata`,,,,,,,:green:`queryable metadata`,,:green:`queryable metadata`,
|
|
41
41
|
published,metadata only,,metadata only,,,,,,metadata only,metadata only,,metadata only,
|
|
42
42
|
published_after,:green:`queryable metadata`,,:green:`queryable metadata`,,,,,,,,,,
|
|
43
43
|
published_before,:green:`queryable metadata`,,:green:`queryable metadata`,,,,,,,,,,
|
|
44
|
+
qs,,,,,,metadata only,,,,,,,
|
|
44
45
|
s1:datatake_id,:green:`queryable metadata`,,:green:`queryable metadata`,,,,,,,,,,
|
|
45
46
|
s1:instrument_configuration_ID,:green:`queryable metadata`,,:green:`queryable metadata`,,,,,,,,,,
|
|
46
47
|
s1:slice_number,:green:`queryable metadata`,,:green:`queryable metadata`,,,,,,,,,,
|
|
@@ -58,7 +59,7 @@ sat:orbit_state,:green:`queryable metadata`,,:green:`queryable metadata`,,,,,,,:
|
|
|
58
59
|
sat:relative_orbit,:green:`queryable metadata`,,:green:`queryable metadata`,,,,,,:green:`queryable metadata`,:green:`queryable metadata`,,:green:`queryable metadata`,
|
|
59
60
|
services,,,,,,,,,,metadata only,,,
|
|
60
61
|
size,,,,,,,metadata only,,,,,,
|
|
61
|
-
start_datetime,:green:`queryable metadata`,,:green:`queryable metadata`,metadata only,metadata only
|
|
62
|
+
start_datetime,:green:`queryable metadata`,,:green:`queryable metadata`,metadata only,metadata only,metadata only,:green:`queryable metadata`,metadata only,:green:`queryable metadata`,:green:`queryable metadata`,metadata only,:green:`queryable metadata`,metadata only
|
|
62
63
|
type,,,,,,,metadata only,,,,,,
|
|
63
64
|
uid,metadata only,,metadata only,,,,metadata only,,metadata only,metadata only,,metadata only,
|
|
64
65
|
updated,:green:`queryable metadata`,,metadata only,,,,metadata only,,,metadata only,,metadata only,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"_collection": {"parameter": "_collection", "open-search": "", "class": "", "description": "", "type": ""}, "_processor_name": {"parameter": "_processor_name", "open-search": "", "class": "", "description": "", "type": ""}, "_provider": {"parameter": "_provider", "open-search": "", "class": "", "description": "", "type": ""}, "acquisitionInformation": {"parameter": "acquisitionInformation", "open-search": "", "class": "", "description": "", "type": ""}, "assets": {"parameter": "assets", "open-search": "", "class": "", "description": "", "type": ""}, "beginningDateTime": {"parameter": "beginningDateTime", "open-search": "", "class": "", "description": "", "type": ""}, "collection": {"parameter": "collection", "open-search": "", "class": "", "description": "", "type": ""}, "constellation": {"parameter": "constellation", "open-search": "", "class": "", "description": "", "type": ""}, "created": {"parameter": "created", "open-search": "", "class": "", "description": "", "type": ""}, "datetime": {"parameter": "datetime", "open-search": "", "class": "", "description": "", "type": ""}, "description": {"parameter": "description", "open-search": "", "class": "", "description": "", "type": ""}, "end_datetime": {"parameter": "end_datetime", "open-search": "", "class": "", "description": "", "type": ""}, "endingDateTime": {"parameter": "endingDateTime", "open-search": "", "class": "", "description": "", "type": ""}, "eo:cloud_cover": {"parameter": "eo:cloud_cover", "open-search": "", "class": "", "description": "", "type": ""}, "eo:snow_cover": {"parameter": "eo:snow_cover", "open-search": "", "class": "", "description": "", "type": ""}, "eodag:default_geometry": {"parameter": "eodag:default_geometry", "open-search": "", "class": "", "description": "", "type": ""}, "eodag:download_link": {"parameter": "eodag:download_link", "open-search": "", "class": "", "description": "", "type": ""}, "eodag:quicklook": {"parameter": "eodag:quicklook", "open-search": "", "class": "", "description": "", "type": ""}, "eodag:thumbnail": {"parameter": "eodag:thumbnail", "open-search": "", "class": "", "description": "", "type": ""}, "extraInformation": {"parameter": "extraInformation", "open-search": "", "class": "", "description": "", "type": ""}, "geometry": {"parameter": "geometry", "open-search": "", "class": "", "description": "", "type": ""}, "grid:code": {"parameter": "grid:code", "open-search": "", "class": "", "description": "", "type": ""}, "gsd": {"parameter": "gsd", "open-search": "", "class": "", "description": "", "type": ""}, "id": {"parameter": "id", "open-search": "", "class": "", "description": "", "type": ""}, "instruments": {"parameter": "instruments", "open-search": "", "class": "", "description": "", "type": ""}, "keywords": {"parameter": "keywords", "open-search": "", "class": "", "description": "", "type": ""}, "license": {"parameter": "license", "open-search": "", "class": "", "description": "", "type": ""}, "links": {"parameter": "links", "open-search": "", "class": "", "description": "", "type": ""}, "order:status": {"parameter": "order:status", "open-search": "", "class": "", "description": "", "type": ""}, "platform": {"parameter": "platform", "open-search": true, "class": "OpenSearch Parameters for Collection Search", "description": "A string with the platform short name (e.g. Sentinel-1)", "type": "String"}, "platformSerialIdentifier": {"parameter": "platformSerialIdentifier", "open-search": true, "class": "OpenSearch Parameters for Collection Search", "description": "A string with the Platform serial identifier", "type": "String"}, "processing:datetime": {"parameter": "processing:datetime", "open-search": "", "class": "", "description": "", "type": ""}, "processing:facility": {"parameter": "processing:facility", "open-search": "", "class": "", "description": "", "type": ""}, "processing:level": {"parameter": "processing:level", "open-search": "", "class": "", "description": "", "type": ""}, "processing:software": {"parameter": "processing:software", "open-search": "", "class": "", "description": "", "type": ""}, "processing:version": {"parameter": "processing:version", "open-search": "", "class": "", "description": "", "type": ""}, "product:acquisition_type": {"parameter": "product:acquisition_type", "open-search": "", "class": "", "description": "", "type": ""}, "product:timeliness": {"parameter": "product:timeliness", "open-search": "", "class": "", "description": "", "type": ""}, "product:type": {"parameter": "product:type", "open-search": "", "class": "", "description": "", "type": ""}, "productInformation": {"parameter": "productInformation", "open-search": "", "class": "", "description": "", "type": ""}, "productType": {"parameter": "productType", "open-search": true, "class": "OpenSearch Parameters for Collection Search", "description": "A string identifying the entry type (e.g. ER02_SAR_IM__0P, MER_RR__1P, SM_SLC__1S, GES_DISC_AIRH3STD_V005)", "type": "String "}, "providers": {"parameter": "providers", "open-search": "", "class": "", "description": "", "type": ""}, "published": {"parameter": "published", "open-search": "", "class": "", "description": "", "type": ""}, "published_after": {"parameter": "published_after", "open-search": "", "class": "", "description": "", "type": ""}, "published_before": {"parameter": "published_before", "open-search": "", "class": "", "description": "", "type": ""}, "s1:datatake_id": {"parameter": "s1:datatake_id", "open-search": "", "class": "", "description": "", "type": ""}, "s1:instrument_configuration_ID": {"parameter": "s1:instrument_configuration_ID", "open-search": "", "class": "", "description": "", "type": ""}, "s1:slice_number": {"parameter": "s1:slice_number", "open-search": "", "class": "", "description": "", "type": ""}, "s1:total_slices": {"parameter": "s1:total_slices", "open-search": "", "class": "", "description": "", "type": ""}, "s2:datastrip_id": {"parameter": "s2:datastrip_id", "open-search": "", "class": "", "description": "", "type": ""}, "s2:datatake_id": {"parameter": "s2:datatake_id", "open-search": "", "class": "", "description": "", "type": ""}, "s2:datatake_type": {"parameter": "s2:datatake_type", "open-search": "", "class": "", "description": "", "type": ""}, "s2:product_uri": {"parameter": "s2:product_uri", "open-search": "", "class": "", "description": "", "type": ""}, "s2:tile_id": {"parameter": "s2:tile_id", "open-search": "", "class": "", "description": "", "type": ""}, "sar:beam_ids": {"parameter": "sar:beam_ids", "open-search": "", "class": "", "description": "", "type": ""}, "sar:instrument_mode": {"parameter": "sar:instrument_mode", "open-search": "", "class": "", "description": "", "type": ""}, "sar:polarizations": {"parameter": "sar:polarizations", "open-search": "", "class": "", "description": "", "type": ""}, "sat:absolute_orbit": {"parameter": "sat:absolute_orbit", "open-search": "", "class": "", "description": "", "type": ""}, "sat:orbit_state": {"parameter": "sat:orbit_state", "open-search": "", "class": "", "description": "", "type": ""}, "sat:relative_orbit": {"parameter": "sat:relative_orbit", "open-search": "", "class": "", "description": "", "type": ""}, "services": {"parameter": "services", "open-search": "", "class": "", "description": "", "type": ""}, "size": {"parameter": "size", "open-search": "", "class": "", "description": "", "type": ""}, "start_datetime": {"parameter": "start_datetime", "open-search": "", "class": "", "description": "", "type": ""}, "title": {"parameter": "title", "open-search": true, "class": "Additional INSPIRE obligated OpenSearch Parameters for Collection Search", "description": "A name given to the resource", "type": "String "}, "type": {"parameter": "type", "open-search": "", "class": "", "description": "", "type": ""}, "uid": {"parameter": "uid", "open-search": "", "class": "", "description": "", "type": ""}, "updated": {"parameter": "updated", "open-search": "", "class": "", "description": "", "type": ""}, "updated_after": {"parameter": "updated_after", "open-search": "", "class": "", "description": "", "type": ""}, "updated_before": {"parameter": "updated_before", "open-search": "", "class": "", "description": "", "type": ""}, "version": {"parameter": "version", "open-search": "", "class": "", "description": "", "type": ""}}
|
|
1
|
+
{"_collection": {"parameter": "_collection", "open-search": "", "class": "", "description": "", "type": ""}, "_processor_name": {"parameter": "_processor_name", "open-search": "", "class": "", "description": "", "type": ""}, "_provider": {"parameter": "_provider", "open-search": "", "class": "", "description": "", "type": ""}, "acquisitionInformation": {"parameter": "acquisitionInformation", "open-search": "", "class": "", "description": "", "type": ""}, "assets": {"parameter": "assets", "open-search": "", "class": "", "description": "", "type": ""}, "beginningDateTime": {"parameter": "beginningDateTime", "open-search": "", "class": "", "description": "", "type": ""}, "collection": {"parameter": "collection", "open-search": "", "class": "", "description": "", "type": ""}, "constellation": {"parameter": "constellation", "open-search": "", "class": "", "description": "", "type": ""}, "created": {"parameter": "created", "open-search": "", "class": "", "description": "", "type": ""}, "datetime": {"parameter": "datetime", "open-search": "", "class": "", "description": "", "type": ""}, "description": {"parameter": "description", "open-search": "", "class": "", "description": "", "type": ""}, "end_datetime": {"parameter": "end_datetime", "open-search": "", "class": "", "description": "", "type": ""}, "endingDateTime": {"parameter": "endingDateTime", "open-search": "", "class": "", "description": "", "type": ""}, "eo:cloud_cover": {"parameter": "eo:cloud_cover", "open-search": "", "class": "", "description": "", "type": ""}, "eo:snow_cover": {"parameter": "eo:snow_cover", "open-search": "", "class": "", "description": "", "type": ""}, "eodag:default_geometry": {"parameter": "eodag:default_geometry", "open-search": "", "class": "", "description": "", "type": ""}, "eodag:download_link": {"parameter": "eodag:download_link", "open-search": "", "class": "", "description": "", "type": ""}, "eodag:quicklook": {"parameter": "eodag:quicklook", "open-search": "", "class": "", "description": "", "type": ""}, "eodag:thumbnail": {"parameter": "eodag:thumbnail", "open-search": "", "class": "", "description": "", "type": ""}, "extraInformation": {"parameter": "extraInformation", "open-search": "", "class": "", "description": "", "type": ""}, "geometry": {"parameter": "geometry", "open-search": "", "class": "", "description": "", "type": ""}, "grid:code": {"parameter": "grid:code", "open-search": "", "class": "", "description": "", "type": ""}, "gsd": {"parameter": "gsd", "open-search": "", "class": "", "description": "", "type": ""}, "id": {"parameter": "id", "open-search": "", "class": "", "description": "", "type": ""}, "instruments": {"parameter": "instruments", "open-search": "", "class": "", "description": "", "type": ""}, "keywords": {"parameter": "keywords", "open-search": "", "class": "", "description": "", "type": ""}, "license": {"parameter": "license", "open-search": "", "class": "", "description": "", "type": ""}, "links": {"parameter": "links", "open-search": "", "class": "", "description": "", "type": ""}, "order:status": {"parameter": "order:status", "open-search": "", "class": "", "description": "", "type": ""}, "platform": {"parameter": "platform", "open-search": true, "class": "OpenSearch Parameters for Collection Search", "description": "A string with the platform short name (e.g. Sentinel-1)", "type": "String"}, "platformSerialIdentifier": {"parameter": "platformSerialIdentifier", "open-search": true, "class": "OpenSearch Parameters for Collection Search", "description": "A string with the Platform serial identifier", "type": "String"}, "processing:datetime": {"parameter": "processing:datetime", "open-search": "", "class": "", "description": "", "type": ""}, "processing:facility": {"parameter": "processing:facility", "open-search": "", "class": "", "description": "", "type": ""}, "processing:level": {"parameter": "processing:level", "open-search": "", "class": "", "description": "", "type": ""}, "processing:software": {"parameter": "processing:software", "open-search": "", "class": "", "description": "", "type": ""}, "processing:version": {"parameter": "processing:version", "open-search": "", "class": "", "description": "", "type": ""}, "product:acquisition_type": {"parameter": "product:acquisition_type", "open-search": "", "class": "", "description": "", "type": ""}, "product:timeliness": {"parameter": "product:timeliness", "open-search": "", "class": "", "description": "", "type": ""}, "product:type": {"parameter": "product:type", "open-search": "", "class": "", "description": "", "type": ""}, "productInformation": {"parameter": "productInformation", "open-search": "", "class": "", "description": "", "type": ""}, "productType": {"parameter": "productType", "open-search": true, "class": "OpenSearch Parameters for Collection Search", "description": "A string identifying the entry type (e.g. ER02_SAR_IM__0P, MER_RR__1P, SM_SLC__1S, GES_DISC_AIRH3STD_V005)", "type": "String "}, "providers": {"parameter": "providers", "open-search": "", "class": "", "description": "", "type": ""}, "published": {"parameter": "published", "open-search": "", "class": "", "description": "", "type": ""}, "published_after": {"parameter": "published_after", "open-search": "", "class": "", "description": "", "type": ""}, "published_before": {"parameter": "published_before", "open-search": "", "class": "", "description": "", "type": ""}, "qs": {"parameter": "qs", "open-search": "", "class": "", "description": "", "type": ""}, "s1:datatake_id": {"parameter": "s1:datatake_id", "open-search": "", "class": "", "description": "", "type": ""}, "s1:instrument_configuration_ID": {"parameter": "s1:instrument_configuration_ID", "open-search": "", "class": "", "description": "", "type": ""}, "s1:slice_number": {"parameter": "s1:slice_number", "open-search": "", "class": "", "description": "", "type": ""}, "s1:total_slices": {"parameter": "s1:total_slices", "open-search": "", "class": "", "description": "", "type": ""}, "s2:datastrip_id": {"parameter": "s2:datastrip_id", "open-search": "", "class": "", "description": "", "type": ""}, "s2:datatake_id": {"parameter": "s2:datatake_id", "open-search": "", "class": "", "description": "", "type": ""}, "s2:datatake_type": {"parameter": "s2:datatake_type", "open-search": "", "class": "", "description": "", "type": ""}, "s2:product_uri": {"parameter": "s2:product_uri", "open-search": "", "class": "", "description": "", "type": ""}, "s2:tile_id": {"parameter": "s2:tile_id", "open-search": "", "class": "", "description": "", "type": ""}, "sar:beam_ids": {"parameter": "sar:beam_ids", "open-search": "", "class": "", "description": "", "type": ""}, "sar:instrument_mode": {"parameter": "sar:instrument_mode", "open-search": "", "class": "", "description": "", "type": ""}, "sar:polarizations": {"parameter": "sar:polarizations", "open-search": "", "class": "", "description": "", "type": ""}, "sat:absolute_orbit": {"parameter": "sat:absolute_orbit", "open-search": "", "class": "", "description": "", "type": ""}, "sat:orbit_state": {"parameter": "sat:orbit_state", "open-search": "", "class": "", "description": "", "type": ""}, "sat:relative_orbit": {"parameter": "sat:relative_orbit", "open-search": "", "class": "", "description": "", "type": ""}, "services": {"parameter": "services", "open-search": "", "class": "", "description": "", "type": ""}, "size": {"parameter": "size", "open-search": "", "class": "", "description": "", "type": ""}, "start_datetime": {"parameter": "start_datetime", "open-search": "", "class": "", "description": "", "type": ""}, "title": {"parameter": "title", "open-search": true, "class": "Additional INSPIRE obligated OpenSearch Parameters for Collection Search", "description": "A name given to the resource", "type": "String "}, "type": {"parameter": "type", "open-search": "", "class": "", "description": "", "type": ""}, "uid": {"parameter": "uid", "open-search": "", "class": "", "description": "", "type": ""}, "updated": {"parameter": "updated", "open-search": "", "class": "", "description": "", "type": ""}, "updated_after": {"parameter": "updated_after", "open-search": "", "class": "", "description": "", "type": ""}, "updated_before": {"parameter": "updated_before", "open-search": "", "class": "", "description": "", "type": ""}, "version": {"parameter": "version", "open-search": "", "class": "", "description": "", "type": ""}}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
.. module:: eodag.api.collection
|
|
2
|
+
|
|
3
|
+
===========
|
|
4
|
+
Collection
|
|
5
|
+
===========
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
The `Collection` class is a `Pydantic <https://docs.pydantic.dev>`_ model representing individual
|
|
9
|
+
collection and its metadata.
|
|
10
|
+
|
|
11
|
+
.. autopydantic_model:: Collection
|
|
12
|
+
|
|
13
|
+
.. autoclass:: CollectionsDict
|
|
14
|
+
:members:
|
|
15
|
+
|
|
16
|
+
.. autoclass:: CollectionsList
|
|
17
|
+
:members:
|
|
@@ -31,6 +31,7 @@ Catalog
|
|
|
31
31
|
|
|
32
32
|
.. autosummary::
|
|
33
33
|
|
|
34
|
+
EODataAccessGateway.providers
|
|
34
35
|
EODataAccessGateway.available_providers
|
|
35
36
|
EODataAccessGateway.list_collections
|
|
36
37
|
EODataAccessGateway.guess_collection
|
|
@@ -88,4 +89,4 @@ Misc
|
|
|
88
89
|
available_providers, search, search_all, search_iter_page, crunch, download, download_all, serialize,
|
|
89
90
|
deserialize, deserialize_and_register, group_by_extent, guess_collection, get_cruncher,
|
|
90
91
|
update_collections_list, fetch_collections_list, discover_collections, list_queryables,
|
|
91
|
-
available_sortables, import_stac_items
|
|
92
|
+
available_sortables, import_stac_items, providers
|
|
@@ -16,6 +16,7 @@ The API Reference provides an overview of all public objects, functions and meth
|
|
|
16
16
|
assets
|
|
17
17
|
queryables
|
|
18
18
|
collection
|
|
19
|
+
provider
|
|
19
20
|
utils
|
|
20
21
|
exceptions
|
|
21
22
|
types
|
|
@@ -65,6 +66,14 @@ The API Reference provides an overview of all public objects, functions and meth
|
|
|
65
66
|
|
|
66
67
|
Represents individual collections and their metadata in Pydantic models with capabilities to search and list queryables.
|
|
67
68
|
|
|
69
|
+
.. grid-item-card:: :octicon:`database;1.5em` Provider
|
|
70
|
+
:link: provider
|
|
71
|
+
:link-type: doc
|
|
72
|
+
:text-align: center
|
|
73
|
+
:shadow: md
|
|
74
|
+
|
|
75
|
+
Provider management including ProvidersDict and Provider classes for handling multiple data sources and their configurations.
|
|
76
|
+
|
|
68
77
|
.. grid-item-card:: :octicon:`list-unordered;1.5em` Queryables
|
|
69
78
|
:link: queryables
|
|
70
79
|
:link-type: doc
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
Queryables
|
|
5
5
|
==========
|
|
6
6
|
|
|
7
|
-
The `CommonQueryables` and `Queryables` classes are `Pydantic <https://docs.pydantic.dev>`_
|
|
7
|
+
The `CommonQueryables` and `Queryables` classes are `Pydantic <https://docs.pydantic.dev>`_ models listing queryable
|
|
8
8
|
parameters and their characteristics.
|
|
9
9
|
|
|
10
10
|
.. autopydantic_model:: CommonQueryables
|
|
@@ -11,7 +11,7 @@ or run locally after being downloaded (see how to :ref:`install_notebooks`).
|
|
|
11
11
|
.. toctree::
|
|
12
12
|
:hidden:
|
|
13
13
|
|
|
14
|
-
notebooks/api_user_guide/
|
|
14
|
+
notebooks/api_user_guide/1_providers_collections_available.ipynb
|
|
15
15
|
notebooks/api_user_guide/2_configuration.ipynb
|
|
16
16
|
notebooks/api_user_guide/3_search.ipynb
|
|
17
17
|
notebooks/api_user_guide/4_queryables.ipynb
|
|
@@ -25,7 +25,7 @@ or run locally after being downloaded (see how to :ref:`install_notebooks`).
|
|
|
25
25
|
:gutter: 4
|
|
26
26
|
|
|
27
27
|
.. grid-item-card:: :octicon:`database;1.5em` Providers & Collections
|
|
28
|
-
:link: notebooks/api_user_guide/
|
|
28
|
+
:link: notebooks/api_user_guide/1_providers_collections_available
|
|
29
29
|
:link-type: doc
|
|
30
30
|
:text-align: center
|
|
31
31
|
:shadow: md
|
|
@@ -155,4 +155,4 @@ This file can then be used in EODAG using the environment variable ``EODAG_EXT_C
|
|
|
155
155
|
|
|
156
156
|
Please note that if you did not customize EODAG with new providers settings, this command should not be useful.
|
|
157
157
|
For more information on the collections discovery mechanism, please see
|
|
158
|
-
`Python API User Guide / Providers and
|
|
158
|
+
`Python API User Guide / Providers and collections / Collections discovery <notebooks/api_user_guide/1_providers_collections_available.html#Collections-discovery>`_.
|
|
@@ -153,7 +153,7 @@ Some EODAG core settings can be overriden using environment variables:
|
|
|
153
153
|
* ``EODAG_COLLECTIONS_CFG_FILE`` for defining the desired path to the collections configuration file in place of
|
|
154
154
|
`<python-site-packages>/eodag/resources/collections.yml`.
|
|
155
155
|
* ``EODAG_EXT_COLLECTIONS_CFG_FILE`` for defining the desired path to the `external collections configuration file\
|
|
156
|
-
<../notebooks/api_user_guide/
|
|
156
|
+
<../notebooks/api_user_guide/1_providers_collections_available.ipynb#Collections-discovery>`_
|
|
157
157
|
in place of https://cs-si.github.io/eodag/eodag/resources/ext_collections.json.
|
|
158
158
|
If the file is not readable, only user-modified providers will be fetched.
|
|
159
159
|
* ``EODAG_PROVIDERS_WHITELIST`` to restrict ``eodag`` to only use a specific list of providers.
|
|
@@ -534,45 +534,7 @@
|
|
|
534
534
|
"cell_type": "markdown",
|
|
535
535
|
"metadata": {},
|
|
536
536
|
"source": [
|
|
537
|
-
"The method [
|
|
538
|
-
]
|
|
539
|
-
},
|
|
540
|
-
{
|
|
541
|
-
"cell_type": "code",
|
|
542
|
-
"execution_count": 5,
|
|
543
|
-
"metadata": {},
|
|
544
|
-
"outputs": [
|
|
545
|
-
{
|
|
546
|
-
"data": {
|
|
547
|
-
"text/plain": [
|
|
548
|
-
"['peps',\n",
|
|
549
|
-
" 'aws_eos',\n",
|
|
550
|
-
" 'cop_dataspace',\n",
|
|
551
|
-
" 'creodias',\n",
|
|
552
|
-
" 'creodias_s3',\n",
|
|
553
|
-
" 'dedl',\n",
|
|
554
|
-
" 'earth_search',\n",
|
|
555
|
-
" 'earth_search_gcs',\n",
|
|
556
|
-
" 'geodes',\n",
|
|
557
|
-
" 'sara',\n",
|
|
558
|
-
" 'usgs',\n",
|
|
559
|
-
" 'wekeo_main']"
|
|
560
|
-
]
|
|
561
|
-
},
|
|
562
|
-
"execution_count": 6,
|
|
563
|
-
"metadata": {},
|
|
564
|
-
"output_type": "execute_result"
|
|
565
|
-
}
|
|
566
|
-
],
|
|
567
|
-
"source": [
|
|
568
|
-
"dag.available_providers(\"S2_MSI_L1C\")"
|
|
569
|
-
]
|
|
570
|
-
},
|
|
571
|
-
{
|
|
572
|
-
"cell_type": "markdown",
|
|
573
|
-
"metadata": {},
|
|
574
|
-
"source": [
|
|
575
|
-
"Finally *PEPS* is declared as the preferred provider, which means that `eodag` will look for products with this provider (all the providers are pre-configured)."
|
|
537
|
+
"The method [set_preferred_provider()](../api_reference/core.rst#eodag.api.core.EODataAccessGateway.set_preferred_provider) allows to declare *PEPS* as the preferred provider, which means that `eodag` will look for products with this provider first (all the providers are pre-configured)."
|
|
576
538
|
]
|
|
577
539
|
},
|
|
578
540
|
{
|