eodag 3.0.1__tar.gz → 3.1.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.0.1 → eodag-3.1.0}/.gitignore +1 -0
- {eodag-3.0.1 → eodag-3.1.0}/BREAKING_CHANGES.rst +8 -8
- {eodag-3.0.1 → eodag-3.1.0}/CHANGES.rst +148 -2
- {eodag-3.0.1 → eodag-3.1.0}/CONTRIBUTING.rst +1 -1
- {eodag-3.0.1/eodag.egg-info → eodag-3.1.0}/PKG-INFO +13 -12
- {eodag-3.0.1 → eodag-3.1.0}/README.rst +1 -1
- {eodag-3.0.1 → eodag-3.1.0}/charts/eodag-server/Chart.yaml +2 -2
- {eodag-3.0.1 → eodag-3.1.0}/charts/eodag-server/templates/deployment.yaml +1 -1
- {eodag-3.0.1 → eodag-3.1.0}/charts/eodag-server/values.yaml +1 -1
- {eodag-3.0.1 → eodag-3.1.0}/docker/stac-server.dockerfile +2 -1
- {eodag-3.0.1 → eodag-3.1.0}/docs/_static/custom.css +5 -0
- eodag-3.1.0/docs/_static/eodag_overview.png +0 -0
- eodag-3.1.0/docs/_static/eodag_stac_client.png +0 -0
- eodag-3.1.0/docs/_static/eodag_stac_server.png +0 -0
- eodag-3.1.0/docs/_static/params_mapping_extra.csv +34 -0
- eodag-3.1.0/docs/_static/params_mapping_offline_infos.json +1 -0
- {eodag-3.0.1 → eodag-3.1.0}/docs/_static/params_mapping_opensearch.csv +45 -47
- {eodag-3.0.1 → eodag-3.1.0}/docs/_static/product_types_information.csv +280 -245
- eodag-3.1.0/docs/add_product_type.rst +105 -0
- eodag-3.1.0/docs/api_reference/assets.rst +32 -0
- eodag-3.1.0/docs/api_reference/eoproduct.rst +56 -0
- eodag-3.1.0/docs/api_reference/exceptions.rst +13 -0
- {eodag-3.0.1 → eodag-3.1.0}/docs/api_reference/index.rst +1 -0
- {eodag-3.0.1 → eodag-3.1.0}/docs/api_reference/types.rst +3 -0
- {eodag-3.0.1 → eodag-3.1.0}/docs/api_reference/utils.rst +16 -0
- {eodag-3.0.1 → eodag-3.1.0}/docs/api_user_guide.rst +6 -5
- {eodag-3.0.1 → eodag-3.1.0}/docs/conf.py +16 -7
- eodag-3.1.0/docs/drivers.rst +46 -0
- {eodag-3.0.1 → eodag-3.1.0}/docs/getting_started_guide/configure.rst +2 -1
- {eodag-3.0.1 → eodag-3.1.0}/docs/getting_started_guide/product_storage_status.rst +1 -1
- {eodag-3.0.1 → eodag-3.1.0}/docs/getting_started_guide/product_types.rst +1 -1
- {eodag-3.0.1 → eodag-3.1.0}/docs/getting_started_guide/providers.rst +1 -1
- {eodag-3.0.1 → eodag-3.1.0}/docs/getting_started_guide/register.rst +26 -22
- {eodag-3.0.1 → eodag-3.1.0}/docs/index.rst +5 -3
- eodag-3.1.0/docs/notebooks/api_user_guide/1_overview.ipynb +32785 -0
- {eodag-3.0.1 → eodag-3.1.0}/docs/notebooks/api_user_guide/2_providers_products_available.ipynb +107 -38
- {eodag-3.0.1 → eodag-3.1.0}/docs/notebooks/api_user_guide/3_configuration.ipynb +0 -1
- {eodag-3.0.1 → eodag-3.1.0}/docs/notebooks/api_user_guide/4_search.ipynb +3613 -600
- eodag-3.1.0/docs/notebooks/api_user_guide/5_queryables.ipynb +1683 -0
- eodag-3.0.1/docs/notebooks/api_user_guide/5_serialize_deserialize.ipynb → eodag-3.1.0/docs/notebooks/api_user_guide/6_serialize_deserialize.ipynb +6 -6
- eodag-3.0.1/docs/notebooks/api_user_guide/7_download.ipynb → eodag-3.1.0/docs/notebooks/api_user_guide/8_download.ipynb +1 -1
- eodag-3.1.0/docs/notebooks/api_user_guide/9_post_process.ipynb +2725 -0
- eodag-3.1.0/docs/notebooks/api_user_guide/data/crunch_search_results.geojson +1 -0
- eodag-3.1.0/docs/notebooks/api_user_guide/data/download_search_results.geojson +1 -0
- {eodag-3.0.1 → eodag-3.1.0}/docs/notebooks/intro_notebooks.ipynb +15 -7
- eodag-3.1.0/docs/notebooks/tutos/tuto_cds.ipynb +1824 -0
- {eodag-3.0.1 → eodag-3.1.0}/docs/notebooks/tutos/tuto_cop_dem.ipynb +21 -21
- eodag-3.1.0/docs/notebooks/tutos/tuto_ecmwf.ipynb +1243 -0
- eodag-3.1.0/docs/notebooks/tutos/tuto_meteoblue.ipynb +1265 -0
- eodag-3.1.0/docs/notebooks/tutos/tuto_search_location_tile.ipynb +886 -0
- {eodag-3.0.1 → eodag-3.1.0}/docs/notebooks/tutos/tuto_stac_client.ipynb +14 -14
- {eodag-3.0.1 → eodag-3.1.0}/docs/plugins.rst +12 -8
- {eodag-3.0.1 → eodag-3.1.0}/docs/plugins_reference/search.rst +4 -2
- {eodag-3.0.1 → eodag-3.1.0}/docs/stac_rest.rst +1 -1
- {eodag-3.0.1 → eodag-3.1.0}/eodag/api/core.py +174 -138
- {eodag-3.0.1 → eodag-3.1.0}/eodag/api/product/_assets.py +44 -15
- {eodag-3.0.1 → eodag-3.1.0}/eodag/api/product/_product.py +58 -47
- eodag-3.1.0/eodag/api/product/drivers/__init__.py +106 -0
- eodag-3.1.0/eodag/api/product/drivers/base.py +106 -0
- eodag-3.1.0/eodag/api/product/drivers/generic.py +65 -0
- eodag-3.1.0/eodag/api/product/drivers/sentinel1.py +97 -0
- eodag-3.1.0/eodag/api/product/drivers/sentinel2.py +95 -0
- {eodag-3.0.1 → eodag-3.1.0}/eodag/api/product/metadata_mapping.py +117 -90
- {eodag-3.0.1 → eodag-3.1.0}/eodag/api/search_result.py +13 -23
- {eodag-3.0.1 → eodag-3.1.0}/eodag/cli.py +26 -5
- {eodag-3.0.1 → eodag-3.1.0}/eodag/config.py +86 -92
- {eodag-3.0.1 → eodag-3.1.0}/eodag/plugins/apis/base.py +1 -1
- {eodag-3.0.1 → eodag-3.1.0}/eodag/plugins/apis/ecmwf.py +42 -22
- {eodag-3.0.1 → eodag-3.1.0}/eodag/plugins/apis/usgs.py +17 -16
- {eodag-3.0.1 → eodag-3.1.0}/eodag/plugins/authentication/aws_auth.py +16 -13
- {eodag-3.0.1 → eodag-3.1.0}/eodag/plugins/authentication/base.py +5 -3
- {eodag-3.0.1 → eodag-3.1.0}/eodag/plugins/authentication/header.py +3 -3
- {eodag-3.0.1 → eodag-3.1.0}/eodag/plugins/authentication/keycloak.py +4 -4
- {eodag-3.0.1 → eodag-3.1.0}/eodag/plugins/authentication/oauth.py +7 -3
- {eodag-3.0.1 → eodag-3.1.0}/eodag/plugins/authentication/openid_connect.py +22 -16
- {eodag-3.0.1 → eodag-3.1.0}/eodag/plugins/authentication/sas_auth.py +4 -4
- {eodag-3.0.1 → eodag-3.1.0}/eodag/plugins/authentication/token.py +41 -10
- {eodag-3.0.1 → eodag-3.1.0}/eodag/plugins/authentication/token_exchange.py +1 -1
- {eodag-3.0.1 → eodag-3.1.0}/eodag/plugins/base.py +4 -4
- {eodag-3.0.1 → eodag-3.1.0}/eodag/plugins/crunch/base.py +4 -4
- {eodag-3.0.1 → eodag-3.1.0}/eodag/plugins/crunch/filter_date.py +4 -4
- {eodag-3.0.1 → eodag-3.1.0}/eodag/plugins/crunch/filter_latest_intersect.py +6 -6
- {eodag-3.0.1 → eodag-3.1.0}/eodag/plugins/crunch/filter_latest_tpl_name.py +7 -7
- {eodag-3.0.1 → eodag-3.1.0}/eodag/plugins/crunch/filter_overlap.py +4 -4
- {eodag-3.0.1 → eodag-3.1.0}/eodag/plugins/crunch/filter_property.py +6 -7
- {eodag-3.0.1 → eodag-3.1.0}/eodag/plugins/download/aws.py +146 -87
- {eodag-3.0.1 → eodag-3.1.0}/eodag/plugins/download/base.py +38 -56
- {eodag-3.0.1 → eodag-3.1.0}/eodag/plugins/download/creodias_s3.py +29 -0
- {eodag-3.0.1 → eodag-3.1.0}/eodag/plugins/download/http.py +173 -183
- {eodag-3.0.1 → eodag-3.1.0}/eodag/plugins/download/s3rest.py +10 -11
- {eodag-3.0.1 → eodag-3.1.0}/eodag/plugins/manager.py +10 -20
- {eodag-3.0.1 → eodag-3.1.0}/eodag/plugins/search/__init__.py +6 -5
- {eodag-3.0.1 → eodag-3.1.0}/eodag/plugins/search/base.py +90 -46
- eodag-3.1.0/eodag/plugins/search/build_search_result.py +1229 -0
- {eodag-3.0.1 → eodag-3.1.0}/eodag/plugins/search/cop_marine.py +22 -12
- {eodag-3.0.1 → eodag-3.1.0}/eodag/plugins/search/creodias_s3.py +9 -73
- {eodag-3.0.1 → eodag-3.1.0}/eodag/plugins/search/csw.py +11 -11
- {eodag-3.0.1 → eodag-3.1.0}/eodag/plugins/search/data_request_search.py +19 -18
- {eodag-3.0.1 → eodag-3.1.0}/eodag/plugins/search/qssearch.py +99 -258
- eodag-3.1.0/eodag/plugins/search/stac_list_assets.py +85 -0
- {eodag-3.0.1 → eodag-3.1.0}/eodag/plugins/search/static_stac_search.py +4 -4
- eodag-3.1.0/eodag/resources/ext_product_types.json +1 -0
- {eodag-3.0.1 → eodag-3.1.0}/eodag/resources/product_types.yml +1134 -325
- {eodag-3.0.1 → eodag-3.1.0}/eodag/resources/providers.yml +906 -2006
- {eodag-3.0.1 → eodag-3.1.0}/eodag/resources/stac_api.yml +2 -2
- {eodag-3.0.1 → eodag-3.1.0}/eodag/resources/user_conf_template.yml +10 -9
- {eodag-3.0.1 → eodag-3.1.0}/eodag/rest/cache.py +2 -2
- {eodag-3.0.1 → eodag-3.1.0}/eodag/rest/config.py +3 -3
- {eodag-3.0.1 → eodag-3.1.0}/eodag/rest/core.py +112 -82
- {eodag-3.0.1 → eodag-3.1.0}/eodag/rest/errors.py +5 -5
- {eodag-3.0.1 → eodag-3.1.0}/eodag/rest/server.py +33 -14
- {eodag-3.0.1 → eodag-3.1.0}/eodag/rest/stac.py +41 -38
- {eodag-3.0.1 → eodag-3.1.0}/eodag/rest/types/collections_search.py +3 -3
- {eodag-3.0.1 → eodag-3.1.0}/eodag/rest/types/eodag_search.py +29 -23
- {eodag-3.0.1 → eodag-3.1.0}/eodag/rest/types/queryables.py +42 -31
- {eodag-3.0.1 → eodag-3.1.0}/eodag/rest/types/stac_search.py +15 -25
- {eodag-3.0.1 → eodag-3.1.0}/eodag/rest/utils/__init__.py +14 -21
- {eodag-3.0.1 → eodag-3.1.0}/eodag/rest/utils/cql_evaluate.py +6 -6
- {eodag-3.0.1 → eodag-3.1.0}/eodag/rest/utils/rfc3339.py +2 -2
- {eodag-3.0.1 → eodag-3.1.0}/eodag/types/__init__.py +141 -32
- {eodag-3.0.1 → eodag-3.1.0}/eodag/types/bbox.py +2 -2
- {eodag-3.0.1 → eodag-3.1.0}/eodag/types/download_args.py +3 -3
- eodag-3.1.0/eodag/types/queryables.py +234 -0
- {eodag-3.0.1 → eodag-3.1.0}/eodag/types/search_args.py +4 -4
- eodag-3.1.0/eodag/types/whoosh.py +203 -0
- {eodag-3.0.1 → eodag-3.1.0}/eodag/utils/__init__.py +153 -51
- {eodag-3.0.1 → eodag-3.1.0}/eodag/utils/exceptions.py +28 -21
- {eodag-3.0.1 → eodag-3.1.0}/eodag/utils/import_system.py +2 -2
- {eodag-3.0.1 → eodag-3.1.0}/eodag/utils/repr.py +65 -6
- {eodag-3.0.1 → eodag-3.1.0}/eodag/utils/requests.py +13 -13
- {eodag-3.0.1 → eodag-3.1.0}/eodag/utils/rest.py +2 -2
- eodag-3.1.0/eodag/utils/s3.py +231 -0
- {eodag-3.0.1 → eodag-3.1.0}/eodag/utils/stac_reader.py +10 -10
- {eodag-3.0.1 → eodag-3.1.0/eodag.egg-info}/PKG-INFO +13 -12
- {eodag-3.0.1 → eodag-3.1.0}/eodag.egg-info/SOURCES.txt +13 -5
- {eodag-3.0.1 → eodag-3.1.0}/eodag.egg-info/entry_points.txt +4 -2
- {eodag-3.0.1 → eodag-3.1.0}/eodag.egg-info/requires.txt +10 -13
- {eodag-3.0.1 → eodag-3.1.0}/pyproject.toml +1 -1
- {eodag-3.0.1 → eodag-3.1.0}/pytest.ini +1 -0
- {eodag-3.0.1 → eodag-3.1.0}/setup.cfg +14 -11
- {eodag-3.0.1 → eodag-3.1.0}/utils/params_mapping_to_csv.py +2 -3
- {eodag-3.0.1 → eodag-3.1.0}/utils/product_types_information_to_csv.py +3 -3
- eodag-3.0.1/docs/_static/eodag_overview.png +0 -0
- eodag-3.0.1/docs/_static/eodag_stac_client.png +0 -0
- eodag-3.0.1/docs/_static/eodag_stac_server.png +0 -0
- eodag-3.0.1/docs/_static/params_mapping_extra.csv +0 -111
- eodag-3.0.1/docs/_static/params_mapping_offline_infos.json +0 -1
- eodag-3.0.1/docs/api_reference/eoproduct.rst +0 -39
- eodag-3.0.1/docs/api_reference/exceptions.rst +0 -6
- eodag-3.0.1/docs/notebooks/api_user_guide/1_overview.ipynb +0 -925
- eodag-3.0.1/docs/notebooks/api_user_guide/8_post_process.ipynb +0 -986
- eodag-3.0.1/docs/notebooks/api_user_guide/data/crunch_search_results.geojson +0 -1
- eodag-3.0.1/docs/notebooks/api_user_guide/data/download_search_results.geojson +0 -1
- eodag-3.0.1/docs/notebooks/tutos/tuto_cds.ipynb +0 -871
- eodag-3.0.1/docs/notebooks/tutos/tuto_ecmwf.ipynb +0 -782
- eodag-3.0.1/docs/notebooks/tutos/tuto_meteoblue.ipynb +0 -1079
- eodag-3.0.1/docs/notebooks/tutos/tuto_search_location_tile.ipynb +0 -886
- eodag-3.0.1/eodag/api/product/drivers/__init__.py +0 -29
- eodag-3.0.1/eodag/api/product/drivers/base.py +0 -45
- eodag-3.0.1/eodag/plugins/search/build_search_result.py +0 -542
- eodag-3.0.1/eodag/resources/ext_product_types.json +0 -1
- eodag-3.0.1/eodag/types/queryables.py +0 -123
- eodag-3.0.1/eodag/types/whoosh.py +0 -79
- eodag-3.0.1/eodag/utils/constraints.py +0 -244
- {eodag-3.0.1 → eodag-3.1.0}/.dockerignore +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/.editorconfig +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/.gitattributes +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/.github/ISSUE_TEMPLATE/bug_report.md +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/.github/ISSUE_TEMPLATE/feature_request.md +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/.github/pull_request_template.md +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/.github/workflows/deploy.yml +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/.github/workflows/fetch.yml +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/.github/workflows/github-pages.yml +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/.github/workflows/test.yml +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/.pre-commit-config.yaml +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/CODE_OF_CONDUCT.md +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/LICENSE +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/MANIFEST.in +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/NOTICE +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/charts/eodag-server/Chart.lock +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/charts/eodag-server/README.md +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/charts/eodag-server/templates/NOTES.txt +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/charts/eodag-server/templates/_helpers.tpl +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/charts/eodag-server/templates/configmap.yaml +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/charts/eodag-server/templates/extra-list.yaml +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/charts/eodag-server/templates/hpa.yaml +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/charts/eodag-server/templates/ingress.yaml +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/charts/eodag-server/templates/pv.yaml +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/charts/eodag-server/templates/pvc.yaml +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/charts/eodag-server/templates/secret.yaml +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/charts/eodag-server/templates/service.yaml +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/charts/eodag-server/templates/serviceaccount.yaml +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/docker/run-stac-server.sh +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/docker/stac-browser.dockerfile +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/docker-compose.yml +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/docs/Makefile +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/docs/_static/download_methods.png +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/docs/_static/eodag_advanced_calls_graph.svg +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/docs/_static/eodag_bycs.png +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/docs/_static/eodag_fetch_product_types.png +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/docs/_static/eodag_logo_160.png +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/docs/_static/eodag_logo_160r.png +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/docs/_static/eodag_main_calls_graph.svg +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/docs/_static/favicon-32x32.png +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/docs/_static/progress_1.png +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/docs/_static/progress_1_none.png +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/docs/_static/progress_2.png +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/docs/_static/progress_2_none.png +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/docs/_static/stac_browser_example.png +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/docs/_static/stac_browser_example_600.png +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/docs/add_provider.rst +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/docs/api_reference/call_graphs.rst +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/docs/api_reference/core.rst +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/docs/api_reference/searchresult.rst +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/docs/breaking_changes.rst +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/docs/changelog.rst +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/docs/cli_user_guide.rst +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/docs/contribute.rst +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/docs/getting_started_guide/index.rst +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/docs/getting_started_guide/install.rst +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/docs/getting_started_guide/overview.rst +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/docs/getting_started_guide/side_projects.rst +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/docs/make.bat +0 -0
- /eodag-3.0.1/docs/notebooks/api_user_guide/6_crunch.ipynb → /eodag-3.1.0/docs/notebooks/api_user_guide/7_crunch.ipynb +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/docs/notebooks/tutos/auxdata/Gulf_of_Trieste_seamask_UTM33.cpg +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/docs/notebooks/tutos/auxdata/Gulf_of_Trieste_seamask_UTM33.dbf +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/docs/notebooks/tutos/auxdata/Gulf_of_Trieste_seamask_UTM33.prj +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/docs/notebooks/tutos/auxdata/Gulf_of_Trieste_seamask_UTM33.qix +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/docs/notebooks/tutos/auxdata/Gulf_of_Trieste_seamask_UTM33.qpj +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/docs/notebooks/tutos/auxdata/Gulf_of_Trieste_seamask_UTM33.shp +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/docs/notebooks/tutos/auxdata/Gulf_of_Trieste_seamask_UTM33.shx +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/docs/notebooks/tutos/auxdata/sentinel2_tiling_grid_centroids.zip +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/docs/notebooks/tutos/tuto_burnt_areas_snappy.ipynb +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/docs/notebooks/tutos/tuto_ship_detection.ipynb +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/docs/notebooks/tutos/tuto_wekeo.ipynb +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/docs/params_mapping.rst +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/docs/plugins_reference/api.rst +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/docs/plugins_reference/auth.rst +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/docs/plugins_reference/crunch.rst +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/docs/plugins_reference/download.rst +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/docs/stac.rst +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/docs/tutos.rst +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/eodag/__init__.py +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/eodag/api/__init__.py +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/eodag/api/product/__init__.py +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/eodag/crunch.py +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/eodag/plugins/__init__.py +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/eodag/plugins/apis/__init__.py +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/eodag/plugins/authentication/__init__.py +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/eodag/plugins/authentication/generic.py +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/eodag/plugins/authentication/qsauth.py +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/eodag/plugins/crunch/__init__.py +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/eodag/plugins/download/__init__.py +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/eodag/py.typed +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/eodag/resources/locations_conf_template.yml +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/eodag/resources/shp/ne_110m_admin_0_map_units.VERSION.txt +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/eodag/resources/shp/ne_110m_admin_0_map_units.cpg +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/eodag/resources/shp/ne_110m_admin_0_map_units.dbf +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/eodag/resources/shp/ne_110m_admin_0_map_units.prj +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/eodag/resources/shp/ne_110m_admin_0_map_units.shp +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/eodag/resources/shp/ne_110m_admin_0_map_units.shx +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/eodag/resources/stac.yml +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/eodag/resources/stac_provider.yml +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/eodag/rest/__init__.py +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/eodag/rest/constants.py +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/eodag/rest/server.wsgi +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/eodag/rest/templates/README +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/eodag/rest/types/__init__.py +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/eodag/utils/logging.py +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/eodag/utils/notebook.py +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/eodag.egg-info/dependency_links.txt +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/eodag.egg-info/top_level.txt +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/get_pypi_latest_version.sh +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/readthedocs.yml +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/requirements-dev.txt +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/requirements-docs.txt +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/requirements-tutorials.txt +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/requirements.txt +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/setup.py +0 -0
- {eodag-3.0.1 → eodag-3.1.0}/tox.ini +0 -0
|
@@ -3,14 +3,14 @@ Breaking changes
|
|
|
3
3
|
|
|
4
4
|
Full changelog available in `Release history <changelog.html>`_.
|
|
5
5
|
|
|
6
|
-
|
|
7
|
-
|
|
6
|
+
v3.0.0b3
|
|
7
|
+
++++++++
|
|
8
8
|
|
|
9
9
|
* :meth:`~eodag.api.core.EODataAccessGateway.download` / :class:`~eodag.types.download_args.DownloadConf` parameters
|
|
10
10
|
``outputs_prefix`` and ``outputs_extension`` renamed to ``output_dir`` and ``output_extension``.
|
|
11
11
|
|
|
12
|
-
|
|
13
|
-
|
|
12
|
+
v3.0.0b1
|
|
13
|
+
++++++++
|
|
14
14
|
|
|
15
15
|
* :meth:`~eodag.api.core.EODataAccessGateway.search` method now returns only a
|
|
16
16
|
:class:`~eodag.api.search_result.SearchResult` instead of a 2 values tuple. It can optionally store the estimated
|
|
@@ -45,14 +45,14 @@ Full changelog available in `Release history <changelog.html>`_.
|
|
|
45
45
|
# install eodag with all available providers supported
|
|
46
46
|
pip install "eodag[all-providers]"
|
|
47
47
|
|
|
48
|
-
|
|
49
|
-
|
|
48
|
+
v2.0b1
|
|
49
|
+
++++++
|
|
50
50
|
|
|
51
51
|
- STAC API compliant REST server
|
|
52
52
|
- Common configuration for STAC providers
|
|
53
53
|
|
|
54
|
-
|
|
55
|
-
|
|
54
|
+
v1.0
|
|
55
|
+
++++
|
|
56
56
|
|
|
57
57
|
- Adds product type search functionality
|
|
58
58
|
- The cli arguments are now fully compliant with opensearch geo(bbox)/time extensions
|
|
@@ -1,6 +1,152 @@
|
|
|
1
1
|
Release history
|
|
2
2
|
===============
|
|
3
3
|
|
|
4
|
+
v3.1.0 (2025-03-19)
|
|
5
|
+
-------------------
|
|
6
|
+
|
|
7
|
+
|:loudspeaker:| Major changes since last stable (`v3.0.1 <changelog.rst#v3-0-1-2024-11-06>`_)
|
|
8
|
+
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
9
|
+
|
|
10
|
+
Core features and fixes
|
|
11
|
+
"""""""""""""""""""""""
|
|
12
|
+
|
|
13
|
+
* [v3.1.0b2] Assets keys uniformization using drivers (:pull:`1488`)
|
|
14
|
+
* [v3.1.0b1] Updated `queryables <https://eodag.readthedocs.io/en/latest/notebooks/api_user_guide/5_queryables.html>`_
|
|
15
|
+
mechanism and ecmwf-like plugins (:pull:`1397`)(:pull:`1427`)(:pull:`1462`)
|
|
16
|
+
* **[v3.1.0]** Customizable providers configuration file through ``EODAG_PRODUCT_TYPES_CFG_FILE`` environment
|
|
17
|
+
variable (:pull:`1559`)
|
|
18
|
+
* [v3.1.0b1] Order and download polling times update (:pull:`1440`)
|
|
19
|
+
|
|
20
|
+
Providers and product types updates
|
|
21
|
+
"""""""""""""""""""""""""""""""""""
|
|
22
|
+
|
|
23
|
+
* **[v3.1.0]** Removed ``onda`` provider (:pull:`1564`)
|
|
24
|
+
* [v3.1.0b2] default search timeout to 20s (:pull:`1505`)
|
|
25
|
+
|
|
26
|
+
Plugins new features and fixes
|
|
27
|
+
""""""""""""""""""""""""""""""
|
|
28
|
+
|
|
29
|
+
* **[v3.1.0]** :class:`~eodag.plugins.search.build_search_result.ECMWFSearch`: simplified configuration (:pull:`1433`),
|
|
30
|
+
fixed queryables issues (:pull:`1509`), mapped geometry metadata (:pull:`1555`)
|
|
31
|
+
* [v3.1.0b1] Removed default :class:`~eodag.plugins.download.http.HTTPDownload` zip extension (:pull:`1400`)
|
|
32
|
+
* [v3.1.0b1] Order and poll without downloading (:pull:`1437`)
|
|
33
|
+
|
|
34
|
+
Remaining changes since `v3.1.0b2 <changelog.rst#v3-1-0b2-2025-02-03>`_
|
|
35
|
+
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
36
|
+
|
|
37
|
+
Core features and fixes
|
|
38
|
+
"""""""""""""""""""""""
|
|
39
|
+
|
|
40
|
+
* Keep queryables `required` attribute even with default values (:pull:`1521`)
|
|
41
|
+
|
|
42
|
+
Providers and product types updates
|
|
43
|
+
"""""""""""""""""""""""""""""""""""
|
|
44
|
+
|
|
45
|
+
* ``geodes``: recognize auth errors during download (:pull:`1562`), typo in ``geodes_s3`` user conf template
|
|
46
|
+
(:pull:`1536`)
|
|
47
|
+
* ``wekeo_main`` metadata mapping update (:pull:`1549`) and COP-DEM product types update (:pull:`1516`)
|
|
48
|
+
* ``eumetsat_ds``: new MTG product types (:pull:`1513`), metadata mapping fix (:pull:`1502`), remove duplicate product
|
|
49
|
+
types (:pull:`1514`)
|
|
50
|
+
* Add product types to ``dedl`` provider (:pull:`1515`)
|
|
51
|
+
|
|
52
|
+
Plugins new features and fixes
|
|
53
|
+
""""""""""""""""""""""""""""""
|
|
54
|
+
|
|
55
|
+
* :class:`~eodag.plugins.download.aws.AwsDownload`: zip partial download (:pull:`1561`), `InvalidRequest` handle
|
|
56
|
+
(:pull:`1532`)
|
|
57
|
+
* Already authenticated user fix on openid authentication plugins (:pull:`1524`)
|
|
58
|
+
* Fixes missing file error on ``usgs`` authentication during attempts (:pull:`1550`)
|
|
59
|
+
|
|
60
|
+
Miscellaneous
|
|
61
|
+
"""""""""""""
|
|
62
|
+
|
|
63
|
+
* **[build]** remove dependencies max versions (:pull:`1519`)
|
|
64
|
+
* **[docs]** ``eodag-cube`` `Python API documentation
|
|
65
|
+
<https://eodag.readthedocs.io/en/latest/notebooks/api_user_guide/9_post_process.html#Data-access-with-eodag-cube>`_
|
|
66
|
+
(:pull:`1511`), ``usgs`` registration update (:pull:`1551`)
|
|
67
|
+
* Various minor fixes and improvements (:pull:`1502`)(:pull:`1540`)(:pull:`1541`)(:pull:`1547`)(:pull:`1552`)
|
|
68
|
+
(:pull:`1566`)(:pull:`1568`)
|
|
69
|
+
* External product types reference updates (:pull:`1510`)(:pull:`1525`)(:pull:`1539`)(:pull:`1548`)(:pull:`1553`)
|
|
70
|
+
(:pull:`1557`)(:pull:`1565`)
|
|
71
|
+
|
|
72
|
+
v3.1.0b2 (2025-02-03)
|
|
73
|
+
---------------------
|
|
74
|
+
|
|
75
|
+
Core features and fixes
|
|
76
|
+
^^^^^^^^^^^^^^^^^^^^^^^
|
|
77
|
+
|
|
78
|
+
* Assets keys uniformization using drivers (:pull:`1488`)
|
|
79
|
+
* ``ssl_verify`` setting for ``get_quicklook`` (:pull:`1490`, thanks `@tromain <https://github.com/tromain>`_)
|
|
80
|
+
* Queryables merged by provider priority (:pull:`1431`)
|
|
81
|
+
|
|
82
|
+
Providers and product types updates
|
|
83
|
+
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
84
|
+
|
|
85
|
+
* ``geodes_s3`` as new provider (:pull:`1506`)
|
|
86
|
+
* default search timeout to 20s (:pull:`1505`)
|
|
87
|
+
* ``geodes`` ``relativeOrbitNumber`` property (:pull:`1499`) and numerical queryables fix (:pull:`1507`)
|
|
88
|
+
|
|
89
|
+
Miscellaneous
|
|
90
|
+
^^^^^^^^^^^^^
|
|
91
|
+
|
|
92
|
+
* **[docs]** Updated tutorials using ``eodag-cube`` (:pull:`1436`) and minor fixes (:pull:`1498`)(:pull:`1500`)
|
|
93
|
+
* **[style]** Typing update for generics (:pull:`1486`)
|
|
94
|
+
* Various minor fixes and improvements (:pull:`1471`)(:pull:`1472`)(:pull:`1473`)(:pull:`1475`)(:pull:`1477`)
|
|
95
|
+
(:pull:`1479`)(:pull:`1480`)(:pull:`1483`)(:pull:`1492`)(:pull:`1503`)(:pull:`1504`)
|
|
96
|
+
* External product types reference updates (:pull:`1460`)(:pull:`1478`)(:pull:`1484`)(:pull:`1487`)(:pull:`1493`)
|
|
97
|
+
(:pull:`1494`)
|
|
98
|
+
|
|
99
|
+
v3.1.0b1 (2025-01-13)
|
|
100
|
+
---------------------
|
|
101
|
+
|
|
102
|
+
Core features and fixes
|
|
103
|
+
^^^^^^^^^^^^^^^^^^^^^^^
|
|
104
|
+
|
|
105
|
+
* Updated `queryables <https://eodag.readthedocs.io/en/latest/notebooks/api_user_guide/5_queryables.html>`_ mechanism
|
|
106
|
+
and ecmwf-like plugins (:pull:`1397`)(:pull:`1427`)(:pull:`1462`)
|
|
107
|
+
* Order and download polling times update (:pull:`1440`)
|
|
108
|
+
* Do not retry downloading skipped products during download_all (:pull:`1465`)
|
|
109
|
+
* Renamed record files that were using previous mechanism (:pull:`1396`, thanks `@gasparakos\
|
|
110
|
+
<https://github.com/gasparakos>`_)
|
|
111
|
+
* New ``to_lower()`` and ``to_upper()`` `parameters mapping\
|
|
112
|
+
<https://eodag.readthedocs.io/en/latest/params_mapping.html#formatters>`_ methods (:pull:`1410`, thanks
|
|
113
|
+
`@jgaucher-cs <https://github.com/jgaucher-cs>`_)
|
|
114
|
+
|
|
115
|
+
Providers and product types updates
|
|
116
|
+
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
117
|
+
|
|
118
|
+
* ``geodes`` updated ``id`` (:pull:`1441`) and ``tileIdentifier`` parameters (:pull:`1457`), and metadata mapping fix
|
|
119
|
+
(:pull:`1468`)
|
|
120
|
+
* New MTG product types for ``eumetsat_ds`` (:pull:`1455`)
|
|
121
|
+
* ``FIRE_HISTORICAL`` on ``wekeo_ecmwf`` (:pull:`1392`)
|
|
122
|
+
* Various product types metadata-mapping and default values updates: for ``cop_ads`` and ``wekeo_ecmwf`` (:pull:`1389`),
|
|
123
|
+
GLOFAS and EFAS product types (:pull:`1467`), ``EEA_DAILY_VI`` on ``wekeo_main`` (:pull:`1464`)
|
|
124
|
+
|
|
125
|
+
Plugins new features and fixes
|
|
126
|
+
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
127
|
+
|
|
128
|
+
* Removed default :class:`~eodag.plugins.download.http.HTTPDownload` zip extension (:pull:`1400`)
|
|
129
|
+
* Order and poll without downloading (:pull:`1437`)
|
|
130
|
+
* :class:`~eodag.plugins.authentication.token.TokenAuth` distinct headers for token retrieve and authentication
|
|
131
|
+
(:pull:`1451`, thanks `@jgaucher-cs <https://github.com/jgaucher-cs>`_)
|
|
132
|
+
* Compare only offset-aware datetimes on openid authentication plugins (:pull:`1418`)
|
|
133
|
+
* Fixed ``creodias_s3`` search and download when no asset is available (:pull:`1425`)
|
|
134
|
+
|
|
135
|
+
Server mode
|
|
136
|
+
^^^^^^^^^^^
|
|
137
|
+
|
|
138
|
+
* Dedicated liveness endpoint added (:pull:`1353`)
|
|
139
|
+
* Processing level parsing fix in external STAC collections (:pull:`1429`)
|
|
140
|
+
|
|
141
|
+
Miscellaneous
|
|
142
|
+
^^^^^^^^^^^^^
|
|
143
|
+
* **[docs]** `Queryables <https://eodag.readthedocs.io/en/latest/notebooks/api_user_guide/5_queryables.html>`_
|
|
144
|
+
documentation in a dedicated section (:pull:`1447`)
|
|
145
|
+
* Various minor fixes and improvements (:pull:`1390`)(:pull:`1403`)(:pull:`1411`)(:pull:`1415`)(:pull:`1419`)
|
|
146
|
+
(:pull:`1428`)(:pull:`1430`)(:pull:`1434`)(:pull:`1445`)(:pull:`1448`)(:pull:`1458`)(:pull:`1466`)
|
|
147
|
+
* External product types reference updates (:pull:`1387`)(:pull:`1391`)(:pull:`1401`)(:pull:`1404`)(:pull:`1406`)
|
|
148
|
+
(:pull:`1408`)(:pull:`1416`)(:pull:`1424`)(:pull:`1453`)(:pull:`1459`)
|
|
149
|
+
|
|
4
150
|
v3.0.1 (2024-11-06)
|
|
5
151
|
-------------------
|
|
6
152
|
|
|
@@ -233,10 +379,10 @@ Core features and fixes
|
|
|
233
379
|
* Configurable download timeout (:pull:`1124`)
|
|
234
380
|
* `Search by id <https://eodag.readthedocs.io/en/stable/notebooks/api_user_guide/4_search.html#id-and-provider>`_ now
|
|
235
381
|
uses :meth:`~eodag.api.core.EODataAccessGateway.search_all` and
|
|
236
|
-
`crunch <https://eodag.readthedocs.io/en/stable/notebooks/api_user_guide/
|
|
382
|
+
`crunch <https://eodag.readthedocs.io/en/stable/notebooks/api_user_guide/7_crunch.html#Filter-by-property>`_
|
|
237
383
|
(:pull:`1099`).
|
|
238
384
|
* Free text search available for all fields when `guessing a produc type
|
|
239
|
-
<https://eodag.readthedocs.io/en/stable/notebooks/api_user_guide/
|
|
385
|
+
<https://eodag.readthedocs.io/en/stable/notebooks/api_user_guide/7_crunch.html#Filter-by-property>`_ (:pull:`1070`),
|
|
240
386
|
mission dates filtering support (:pull:`1222`)
|
|
241
387
|
* Configurable requests ``ssl_verify`` (:pull:`1045`)
|
|
242
388
|
* Download record hash independent from provider (:pull:`1023`)
|
|
@@ -109,7 +109,7 @@ The notebooks listed below are **always executed** by `nbsphinx`:
|
|
|
109
109
|
|
|
110
110
|
* `<notebooks/api_user_guide/2_providers_products_available.ipynb>`_
|
|
111
111
|
* `<notebooks/api_user_guide/3_configuration.ipynb>`_
|
|
112
|
-
* `<notebooks/api_user_guide/
|
|
112
|
+
* `<notebooks/api_user_guide/7_crunch.ipynb>`_
|
|
113
113
|
|
|
114
114
|
For the other notebooks, their **cell output as long as their widget state** need so be saved.
|
|
115
115
|
If not, the outputs and the widgets (e.g. progress bar) won't be displayed in the online documentation.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
2
|
Name: eodag
|
|
3
|
-
Version: 3.0
|
|
3
|
+
Version: 3.1.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
|
|
@@ -36,13 +36,12 @@ Requires-Dist: boto3
|
|
|
36
36
|
Requires-Dist: botocore
|
|
37
37
|
Requires-Dist: click
|
|
38
38
|
Requires-Dist: geojson
|
|
39
|
-
Requires-Dist: jsonpath-ng
|
|
39
|
+
Requires-Dist: jsonpath-ng
|
|
40
40
|
Requires-Dist: lxml
|
|
41
|
-
Requires-Dist: orjson
|
|
42
|
-
Requires-Dist:
|
|
43
|
-
Requires-Dist: pydantic>=2.1.0
|
|
41
|
+
Requires-Dist: orjson
|
|
42
|
+
Requires-Dist: pydantic!=2.10.0,>=2.1.0
|
|
44
43
|
Requires-Dist: pydantic_core
|
|
45
|
-
Requires-Dist: PyJWT>=2.5.0
|
|
44
|
+
Requires-Dist: PyJWT[crypto]>=2.5.0
|
|
46
45
|
Requires-Dist: pyproj>=2.1.0
|
|
47
46
|
Requires-Dist: pyshp
|
|
48
47
|
Requires-Dist: pystac>=1.0.0b1
|
|
@@ -77,7 +76,7 @@ Provides-Extra: notebook
|
|
|
77
76
|
Requires-Dist: tqdm[notebook]; extra == "notebook"
|
|
78
77
|
Provides-Extra: tutorials
|
|
79
78
|
Requires-Dist: eodag[ecmwf,notebook]; extra == "tutorials"
|
|
80
|
-
Requires-Dist: eodag-cube>=0.
|
|
79
|
+
Requires-Dist: eodag-cube>=0.6.0b2; extra == "tutorials"
|
|
81
80
|
Requires-Dist: jupyter; extra == "tutorials"
|
|
82
81
|
Requires-Dist: ipyleaflet>=0.10.0; extra == "tutorials"
|
|
83
82
|
Requires-Dist: ipywidgets; extra == "tutorials"
|
|
@@ -86,24 +85,25 @@ Requires-Dist: folium; extra == "tutorials"
|
|
|
86
85
|
Requires-Dist: imageio; extra == "tutorials"
|
|
87
86
|
Requires-Dist: rasterio; extra == "tutorials"
|
|
88
87
|
Requires-Dist: netcdf4; extra == "tutorials"
|
|
88
|
+
Requires-Dist: cartopy; extra == "tutorials"
|
|
89
89
|
Provides-Extra: dev
|
|
90
90
|
Requires-Dist: eodag[all-providers,csw,server,stubs]; extra == "dev"
|
|
91
91
|
Requires-Dist: pytest; extra == "dev"
|
|
92
92
|
Requires-Dist: pytest-cov; extra == "dev"
|
|
93
93
|
Requires-Dist: py>=1.8.2; extra == "dev"
|
|
94
|
-
Requires-Dist: pytest-html
|
|
94
|
+
Requires-Dist: pytest-html!=3.2.0; extra == "dev"
|
|
95
95
|
Requires-Dist: pytest-xdist; extra == "dev"
|
|
96
96
|
Requires-Dist: pytest-socket; extra == "dev"
|
|
97
97
|
Requires-Dist: pytest-instafail; extra == "dev"
|
|
98
98
|
Requires-Dist: tox; extra == "dev"
|
|
99
99
|
Requires-Dist: tox-uv; extra == "dev"
|
|
100
100
|
Requires-Dist: faker; extra == "dev"
|
|
101
|
-
Requires-Dist: moto; extra == "dev"
|
|
101
|
+
Requires-Dist: moto>=5; extra == "dev"
|
|
102
102
|
Requires-Dist: twine; extra == "dev"
|
|
103
103
|
Requires-Dist: wheel; extra == "dev"
|
|
104
104
|
Requires-Dist: flake8; extra == "dev"
|
|
105
105
|
Requires-Dist: pre-commit; extra == "dev"
|
|
106
|
-
Requires-Dist: responses
|
|
106
|
+
Requires-Dist: responses!=0.24.0; extra == "dev"
|
|
107
107
|
Requires-Dist: fastapi[all]; extra == "dev"
|
|
108
108
|
Requires-Dist: stdlib-list; extra == "dev"
|
|
109
109
|
Requires-Dist: mypy; extra == "dev"
|
|
@@ -113,6 +113,7 @@ Requires-Dist: types-lxml; extra == "stubs"
|
|
|
113
113
|
Requires-Dist: types-cachetools; extra == "stubs"
|
|
114
114
|
Requires-Dist: types-requests; extra == "stubs"
|
|
115
115
|
Requires-Dist: types-python-dateutil; extra == "stubs"
|
|
116
|
+
Requires-Dist: types-PyYAML; extra == "stubs"
|
|
116
117
|
Requires-Dist: types-setuptools; extra == "stubs"
|
|
117
118
|
Requires-Dist: types-tqdm; extra == "stubs"
|
|
118
119
|
Requires-Dist: types-urllib3; extra == "stubs"
|
|
@@ -315,7 +316,7 @@ An eodag instance can be exposed through a STAC compliant REST api from the comm
|
|
|
315
316
|
|
|
316
317
|
.. code-block:: bash
|
|
317
318
|
|
|
318
|
-
docker run -p 5000:5000 --rm csspace/eodag-server:3.0
|
|
319
|
+
docker run -p 5000:5000 --rm csspace/eodag-server:3.1.0
|
|
319
320
|
|
|
320
321
|
You can also browse over your STAC API server using `STAC Browser <https://github.com/radiantearth/stac-browser>`_.
|
|
321
322
|
Simply run:
|
|
@@ -187,7 +187,7 @@ An eodag instance can be exposed through a STAC compliant REST api from the comm
|
|
|
187
187
|
|
|
188
188
|
.. code-block:: bash
|
|
189
189
|
|
|
190
|
-
docker run -p 5000:5000 --rm csspace/eodag-server:3.0
|
|
190
|
+
docker run -p 5000:5000 --rm csspace/eodag-server:3.1.0
|
|
191
191
|
|
|
192
192
|
You can also browse over your STAC API server using `STAC Browser <https://github.com/radiantearth/stac-browser>`_.
|
|
193
193
|
Simply run:
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
apiVersion: v2
|
|
2
|
-
appVersion: 3.0
|
|
2
|
+
appVersion: 3.1.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.0
|
|
18
|
+
version: 3.1.0
|
|
@@ -111,7 +111,7 @@ spec:
|
|
|
111
111
|
{{- else if .Values.livenessProbe.enabled }}
|
|
112
112
|
livenessProbe:
|
|
113
113
|
httpGet:
|
|
114
|
-
path: /
|
|
114
|
+
path: /_mgmt/ping/
|
|
115
115
|
port: {{ .Values.containerPorts.http }}
|
|
116
116
|
initialDelaySeconds: {{ .Values.livenessProbe.initialDelaySeconds }}
|
|
117
117
|
periodSeconds: {{ .Values.livenessProbe.periodSeconds }}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
parameter,cop_ads,cop_cds,cop_dataspace,cop_ewds,cop_marine,creodias,dedt_lumi,earth_search,earth_search_cog,earth_search_gcs,ecmwf,eumetsat_ds,geodes,peps,planetary_computer,sara,theia,usgs_satapi_aws
|
|
2
|
+
acquisitionInformation,,,,,,,,,,,,metadata only,,,,,,
|
|
3
|
+
assets,,,,,,,,metadata only,metadata only,metadata only,,metadata only,metadata only,,metadata only,,,metadata only
|
|
4
|
+
awsProductId,,,,,,,,,,,,,,,,,,metadata only
|
|
5
|
+
collection,,,:green:`queryable metadata`,,,:green:`queryable metadata`,,,,,,,,,,,,
|
|
6
|
+
defaultGeometry,,,,,metadata only,,,,,,,metadata only,,,,,,
|
|
7
|
+
downloadLink,,,metadata only,,,metadata only,,metadata only,metadata only,metadata only,,metadata only,metadata only,metadata only,metadata only,metadata only,metadata only,metadata only
|
|
8
|
+
extraInformation,,,,,,,,,,,,metadata only,,,,,,
|
|
9
|
+
geometry,: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`,:green:`queryable metadata`,:green:`queryable metadata`,:green:`queryable metadata`
|
|
10
|
+
gridSquare,,,,,,,,:green:`queryable metadata`,,,,,,,,,,
|
|
11
|
+
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`,metadata only,:green:`queryable metadata`
|
|
12
|
+
latitudeBand,,,,,,,,:green:`queryable metadata`,,,,,,,,,,
|
|
13
|
+
links,,,,,,,,,,,,,,metadata only,,,,
|
|
14
|
+
modifiedAfter,,,:green:`queryable metadata`,,,,,,,,,,,,,,,
|
|
15
|
+
modifiedBefore,,,:green:`queryable metadata`,,,,,,,,,,,,,,,
|
|
16
|
+
orderLink,metadata only,metadata only,,metadata only,,,metadata only,,,,,,,,,,,
|
|
17
|
+
polarizationChannels,,,:green:`queryable metadata`,,,:green:`queryable metadata`,,:green:`queryable metadata`,:green:`queryable metadata`,:green:`queryable metadata`,,,:green:`queryable metadata`,,:green:`queryable metadata`,,metadata only,:green:`queryable metadata`
|
|
18
|
+
polarizationMode,,,,,,,,,metadata only,,,,,:green:`queryable metadata`,,:green:`queryable metadata`,metadata only,
|
|
19
|
+
productIdentifier,,,metadata only,,,metadata only,,,,,,,,,,,,
|
|
20
|
+
productInformation,,,,,,,,,,,,metadata only,,,,,,
|
|
21
|
+
providerProductType,,,,,,,,,,,,,:green:`queryable metadata`,,,,,
|
|
22
|
+
publishedAfter,,,:green:`queryable metadata`,,,,,,,,,,,,,,,
|
|
23
|
+
publishedBefore,,,:green:`queryable metadata`,,,,,,,,,,,,,,,
|
|
24
|
+
qs,metadata only,metadata only,,metadata only,,,metadata only,,,,,,,,,,,
|
|
25
|
+
quicklook,,,metadata only,,,metadata only,,metadata only,metadata only,metadata only,,metadata only,metadata only,metadata only,metadata only,metadata only,metadata only,metadata only
|
|
26
|
+
relativeOrbitNumber,,,:green:`queryable metadata`,,,,,,,,,,:green:`queryable metadata`,,,,,
|
|
27
|
+
services,,,,,,,,,,,,,,metadata only,,,,
|
|
28
|
+
size,,,,,,,,,,,,metadata only,,,,,,
|
|
29
|
+
storageStatus,,,metadata only,,,metadata only,,metadata only,metadata only,metadata only,,metadata only,metadata only,metadata only,metadata only,metadata only,metadata only,metadata only
|
|
30
|
+
thumbnail,,,metadata only,,,metadata only,,metadata only,metadata only,metadata only,,,metadata only,metadata only,metadata only,metadata only,metadata only,metadata only
|
|
31
|
+
tileIdentifier,,,:green:`queryable metadata`,,,:green:`queryable metadata`,,:green:`queryable metadata`,,,,,:green:`queryable metadata`,:green:`queryable metadata`,:green:`queryable metadata`,,:green:`queryable metadata`,
|
|
32
|
+
type,,,,,,,,,,,,metadata only,,,,,,
|
|
33
|
+
uid,,,metadata only,,,metadata only,,,,,,metadata only,metadata only,metadata only,,metadata only,metadata only,
|
|
34
|
+
utmZone,,,,,,,,:green:`queryable metadata`,,,,,,,,,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"abstract": {"parameter": "abstract", "open-search": true, "class": "Additional INSPIRE obligated OpenSearch Parameters for Collection Search", "description": "Abstract.", "type": "String"}, "accessConstraint": {"parameter": "accessConstraint", "open-search": true, "class": "Additional INSPIRE obligated OpenSearch Parameters for Collection Search", "description": "Applied to assure the protection of privacy or intellectual property, and any special restrictions or limitations on obtaining the resource", "type": "String "}, "acquisitionInformation": {"parameter": "acquisitionInformation", "open-search": "", "class": "", "description": "", "type": ""}, "acquisitionStation": {"parameter": "acquisitionStation", "open-search": true, "class": "", "description": "", "type": ""}, "acquisitionSubType": {"parameter": "acquisitionSubType", "open-search": true, "class": "", "description": "", "type": ""}, "acquisitionType": {"parameter": "acquisitionType", "open-search": true, "class": "", "description": "", "type": ""}, "antennaLookDirection": {"parameter": "antennaLookDirection", "open-search": true, "class": "", "description": "", "type": ""}, "archivingCenter": {"parameter": "archivingCenter", "open-search": true, "class": "", "description": "", "type": ""}, "assets": {"parameter": "assets", "open-search": "", "class": "", "description": "", "type": ""}, "availabilityTime": {"parameter": "availabilityTime", "open-search": true, "class": "", "description": "", "type": ""}, "awsProductId": {"parameter": "awsProductId", "open-search": "", "class": "", "description": "", "type": ""}, "cloudCover": {"parameter": "cloudCover", "open-search": true, "class": "", "description": "", "type": ""}, "collection": {"parameter": "collection", "open-search": "", "class": "", "description": "", "type": ""}, "completionTimeFromAscendingNode": {"parameter": "completionTimeFromAscendingNode", "open-search": true, "class": "", "description": "", "type": ""}, "creationDate": {"parameter": "creationDate", "open-search": true, "class": "", "description": "", "type": ""}, "defaultGeometry": {"parameter": "defaultGeometry", "open-search": "", "class": "", "description": "", "type": ""}, "doi": {"parameter": "doi", "open-search": true, "class": "OpenSearch Parameters for Collection Search", "description": "Digital Object Identifier identifying the product (see http://www.doi.org)", "type": "String"}, "dopplerFrequency": {"parameter": "dopplerFrequency", "open-search": true, "class": "", "description": "", "type": ""}, "downloadLink": {"parameter": "downloadLink", "open-search": "", "class": "", "description": "", "type": ""}, "extraInformation": {"parameter": "extraInformation", "open-search": "", "class": "", "description": "", "type": ""}, "geometry": {"parameter": "geometry", "open-search": "", "class": "", "description": "", "type": ""}, "gridSquare": {"parameter": "gridSquare", "open-search": "", "class": "", "description": "", "type": ""}, "id": {"parameter": "id", "open-search": "", "class": "", "description": "", "type": ""}, "illuminationAzimuthAngle": {"parameter": "illuminationAzimuthAngle", "open-search": true, "class": "", "description": "", "type": ""}, "illuminationElevationAngle": {"parameter": "illuminationElevationAngle", "open-search": true, "class": "", "description": "", "type": ""}, "illuminationZenithAngle": {"parameter": "illuminationZenithAngle", "open-search": true, "class": "", "description": "", "type": ""}, "incidenceAngleVariation": {"parameter": "incidenceAngleVariation", "open-search": true, "class": "", "description": "", "type": ""}, "instrument": {"parameter": "instrument", "open-search": true, "class": "OpenSearch Parameters for Collection Search", "description": "A string identifying the instrument (e.g. MERIS, AATSR, ASAR, HRVIR. SAR).", "type": "String"}, "keyword": {"parameter": "keyword", "open-search": true, "class": "Additional INSPIRE obligated OpenSearch Parameters for Collection Search", "description": "Commonly used word(s) or formalised word(s) or phrase(s) used to describe the subject.", "type": "String"}, "latitudeBand": {"parameter": "latitudeBand", "open-search": "", "class": "", "description": "", "type": ""}, "links": {"parameter": "links", "open-search": "", "class": "", "description": "", "type": ""}, "maximumIncidenceAngle": {"parameter": "maximumIncidenceAngle", "open-search": true, "class": "", "description": "", "type": ""}, "minimumIncidenceAngle": {"parameter": "minimumIncidenceAngle", "open-search": true, "class": "", "description": "", "type": ""}, "modificationDate": {"parameter": "modificationDate", "open-search": true, "class": "", "description": "", "type": ""}, "modifiedAfter": {"parameter": "modifiedAfter", "open-search": "", "class": "", "description": "", "type": ""}, "modifiedBefore": {"parameter": "modifiedBefore", "open-search": "", "class": "", "description": "", "type": ""}, "orbitDirection": {"parameter": "orbitDirection", "open-search": true, "class": "", "description": "", "type": ""}, "orbitNumber": {"parameter": "orbitNumber", "open-search": true, "class": "", "description": "", "type": ""}, "orderLink": {"parameter": "orderLink", "open-search": "", "class": "", "description": "", "type": ""}, "organisationName": {"parameter": "organisationName", "open-search": true, "class": "Additional INSPIRE obligated OpenSearch Parameters for Collection Search", "description": "A string identifying the name of the organization responsible for the resource", "type": "String"}, "parentIdentifier": {"parameter": "parentIdentifier", "open-search": true, "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"}, "polarizationChannels": {"parameter": "polarizationChannels", "open-search": "", "class": "", "description": "", "type": ""}, "polarizationMode": {"parameter": "polarizationMode", "open-search": "", "class": "", "description": "", "type": ""}, "processingCenter": {"parameter": "processingCenter", "open-search": true, "class": "", "description": "", "type": ""}, "processingDate": {"parameter": "processingDate", "open-search": true, "class": "", "description": "", "type": ""}, "processingLevel": {"parameter": "processingLevel", "open-search": true, "class": "OpenSearch Parameters for Collection Search", "description": "A string identifying the processing level applied to the entry", "type": "String"}, "processingMode": {"parameter": "processingMode", "open-search": true, "class": "", "description": "", "type": ""}, "processorName": {"parameter": "processorName", "open-search": true, "class": "", "description": "", "type": ""}, "productIdentifier": {"parameter": "productIdentifier", "open-search": "", "class": "", "description": "", "type": ""}, "productInformation": {"parameter": "productInformation", "open-search": "", "class": "", "description": "", "type": ""}, "productQualityStatus": {"parameter": "productQualityStatus", "open-search": true, "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 "}, "productVersion": {"parameter": "productVersion", "open-search": true, "class": "", "description": "", "type": ""}, "providerProductType": {"parameter": "providerProductType", "open-search": "", "class": "", "description": "", "type": ""}, "publicationDate": {"parameter": "publicationDate", "open-search": true, "class": "Additional INSPIRE obligated OpenSearch Parameters for Collection Search", "description": "The date when the resource was issued", "type": "Date time"}, "publishedAfter": {"parameter": "publishedAfter", "open-search": "", "class": "", "description": "", "type": ""}, "publishedBefore": {"parameter": "publishedBefore", "open-search": "", "class": "", "description": "", "type": ""}, "qs": {"parameter": "qs", "open-search": "", "class": "", "description": "", "type": ""}, "quicklook": {"parameter": "quicklook", "open-search": "", "class": "", "description": "", "type": ""}, "relativeOrbitNumber": {"parameter": "relativeOrbitNumber", "open-search": "", "class": "", "description": "", "type": ""}, "resolution": {"parameter": "resolution", "open-search": true, "class": "", "description": "", "type": ""}, "sensorMode": {"parameter": "sensorMode", "open-search": true, "class": "", "description": "", "type": ""}, "services": {"parameter": "services", "open-search": "", "class": "", "description": "", "type": ""}, "size": {"parameter": "size", "open-search": "", "class": "", "description": "", "type": ""}, "snowCover": {"parameter": "snowCover", "open-search": true, "class": "", "description": "", "type": ""}, "startTimeFromAscendingNode": {"parameter": "startTimeFromAscendingNode", "open-search": true, "class": "", "description": "", "type": ""}, "storageStatus": {"parameter": "storageStatus", "open-search": "", "class": "", "description": "", "type": ""}, "swathIdentifier": {"parameter": "swathIdentifier", "open-search": true, "class": "", "description": "", "type": ""}, "thumbnail": {"parameter": "thumbnail", "open-search": "", "class": "", "description": "", "type": ""}, "tileIdentifier": {"parameter": "tileIdentifier", "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 "}, "topicCategory": {"parameter": "topicCategory", "open-search": true, "class": "Additional INSPIRE obligated OpenSearch Parameters for Collection Search", "description": "Main theme(s) of the dataset", "type": "String "}, "type": {"parameter": "type", "open-search": "", "class": "", "description": "", "type": ""}, "uid": {"parameter": "uid", "open-search": "", "class": "", "description": "", "type": ""}, "utmZone": {"parameter": "utmZone", "open-search": "", "class": "", "description": "", "type": ""}}
|
|
@@ -1,47 +1,45 @@
|
|
|
1
|
-
parameter,cop_ads,cop_cds,cop_dataspace,cop_ewds,cop_marine,creodias,dedt_lumi,earth_search,earth_search_cog,earth_search_gcs,ecmwf,eumetsat_ds,geodes,
|
|
2
|
-
:abbr:`abstract ([Additional INSPIRE obligated OpenSearch Parameters for Collection Search] Abstract. (String))`,,,,,,,,metadata only,metadata only,metadata only,,,metadata only
|
|
3
|
-
":abbr:`accessConstraint ([Additional INSPIRE obligated OpenSearch Parameters for Collection Search] Applied to assure the protection of privacy or intellectual property, and any special restrictions or limitations on obtaining the resource (String ))`"
|
|
4
|
-
acquisitionStation,,,,,,,,:green:`queryable metadata`,:green:`queryable metadata`,:green:`queryable metadata`,,,:green:`queryable metadata
|
|
5
|
-
acquisitionSubType,,,,,,,,:green:`queryable metadata`,:green:`queryable metadata`,:green:`queryable metadata`,,,:green:`queryable metadata
|
|
6
|
-
acquisitionType
|
|
7
|
-
antennaLookDirection
|
|
8
|
-
archivingCenter
|
|
9
|
-
availabilityTime,,,,,,,,:green:`queryable metadata`,:green:`queryable metadata`,:green:`queryable metadata`,,,:green:`queryable metadata
|
|
10
|
-
cloudCover,,,: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
|
|
11
|
-
completionTimeFromAscendingNode,: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`,:green:`queryable metadata`,:green:`queryable metadata`,:green:`queryable metadata`,:green:`queryable metadata
|
|
12
|
-
creationDate,,,,,,,,:green:`queryable metadata`,:green:`queryable metadata`,:green:`queryable metadata`,,,:green:`queryable metadata`,metadata only
|
|
13
|
-
:abbr:`doi ([OpenSearch Parameters for Collection Search] Digital Object Identifier identifying the product (see http://www.doi.org) (String))`,,,,,,,,:green:`queryable metadata`,:green:`queryable metadata`,:green:`queryable metadata`,,,:green:`queryable metadata
|
|
14
|
-
dopplerFrequency,,,,,,,,:green:`queryable metadata`,:green:`queryable metadata`,:green:`queryable metadata`,,,:green:`queryable metadata
|
|
15
|
-
illuminationAzimuthAngle,,,,,,,,:green:`queryable metadata`,:green:`queryable metadata`,:green:`queryable metadata`,,,:green:`queryable metadata
|
|
16
|
-
illuminationElevationAngle,,,,,,,,:green:`queryable metadata`,:green:`queryable metadata`,:green:`queryable metadata`,,,:green:`queryable metadata
|
|
17
|
-
illuminationZenithAngle
|
|
18
|
-
incidenceAngleVariation
|
|
19
|
-
":abbr:`instrument ([OpenSearch Parameters for Collection Search] A string identifying the instrument (e.g. MERIS, AATSR, ASAR, HRVIR. SAR). (String))`",,,: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`,:green:`queryable metadata
|
|
20
|
-
:abbr:`keyword ([Additional INSPIRE obligated OpenSearch Parameters for Collection Search] Commonly used word(s) or formalised word(s) or phrase(s) used to describe the subject. (String))`,,,,,,,,,,,,,metadata only
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
:abbr:`
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
:abbr:`title ([Additional INSPIRE obligated OpenSearch Parameters for Collection Search] A name given to the resource (String ))`,metadata only,metadata only,metadata only,metadata only,,metadata only,,metadata only,metadata only,metadata only,,:green:`queryable metadata`,metadata only,metadata only,metadata only,metadata only,metadata only,metadata only,metadata only
|
|
47
|
-
:abbr:`topicCategory ([Additional INSPIRE obligated OpenSearch Parameters for Collection Search] Main theme(s) of the dataset (String ))`,,,,,,,,,,,,,,:green:`queryable metadata`,metadata only,,metadata only,,
|
|
1
|
+
parameter,cop_ads,cop_cds,cop_dataspace,cop_ewds,cop_marine,creodias,dedt_lumi,earth_search,earth_search_cog,earth_search_gcs,ecmwf,eumetsat_ds,geodes,peps,planetary_computer,sara,theia,usgs_satapi_aws
|
|
2
|
+
:abbr:`abstract ([Additional INSPIRE obligated OpenSearch Parameters for Collection Search] Abstract. (String))`,,,,,,,,metadata only,metadata only,metadata only,,,metadata only,metadata only,metadata only,metadata only,,metadata only
|
|
3
|
+
":abbr:`accessConstraint ([Additional INSPIRE obligated OpenSearch Parameters for Collection Search] Applied to assure the protection of privacy or intellectual property, and any special restrictions or limitations on obtaining the resource (String ))`",,,,,,,,,,,,,,metadata only,,metadata only,metadata only,
|
|
4
|
+
acquisitionStation,,,,,,,,:green:`queryable metadata`,:green:`queryable metadata`,:green:`queryable metadata`,,,:green:`queryable metadata`,,:green:`queryable metadata`,,metadata only,:green:`queryable metadata`
|
|
5
|
+
acquisitionSubType,,,,,,,,:green:`queryable metadata`,:green:`queryable metadata`,:green:`queryable metadata`,,,:green:`queryable metadata`,,:green:`queryable metadata`,,metadata only,:green:`queryable metadata`
|
|
6
|
+
acquisitionType,,,,,,,,,,,,,,metadata only,,metadata only,,
|
|
7
|
+
antennaLookDirection,,,,,,,,,,,,,,,,,metadata only,
|
|
8
|
+
archivingCenter,,,,,,,,,,,,,,,,,metadata only,
|
|
9
|
+
availabilityTime,,,,,,,,:green:`queryable metadata`,:green:`queryable metadata`,:green:`queryable metadata`,,,:green:`queryable metadata`,,:green:`queryable metadata`,,metadata only,:green:`queryable metadata`
|
|
10
|
+
cloudCover,,,: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`
|
|
11
|
+
completionTimeFromAscendingNode,: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`,:green:`queryable metadata`,:green:`queryable metadata`,:green:`queryable metadata`,:green:`queryable metadata`
|
|
12
|
+
creationDate,,,,,,,,:green:`queryable metadata`,:green:`queryable metadata`,:green:`queryable metadata`,,,:green:`queryable metadata`,metadata only,:green:`queryable metadata`,metadata only,metadata only,:green:`queryable metadata`
|
|
13
|
+
:abbr:`doi ([OpenSearch Parameters for Collection Search] Digital Object Identifier identifying the product (see http://www.doi.org) (String))`,,,,,,,,:green:`queryable metadata`,:green:`queryable metadata`,:green:`queryable metadata`,,,:green:`queryable metadata`,,:green:`queryable metadata`,,,:green:`queryable metadata`
|
|
14
|
+
dopplerFrequency,,,,,,,,:green:`queryable metadata`,:green:`queryable metadata`,:green:`queryable metadata`,,,:green:`queryable metadata`,,:green:`queryable metadata`,,metadata only,:green:`queryable metadata`
|
|
15
|
+
illuminationAzimuthAngle,,,,,,,,:green:`queryable metadata`,:green:`queryable metadata`,:green:`queryable metadata`,,,:green:`queryable metadata`,,:green:`queryable metadata`,,metadata only,:green:`queryable metadata`
|
|
16
|
+
illuminationElevationAngle,,,,,,,,:green:`queryable metadata`,:green:`queryable metadata`,:green:`queryable metadata`,,,:green:`queryable metadata`,,:green:`queryable metadata`,,metadata only,:green:`queryable metadata`
|
|
17
|
+
illuminationZenithAngle,,,,,,,,,,,,,,,,,metadata only,
|
|
18
|
+
incidenceAngleVariation,,,,,,,,,,,,,,,,,metadata only,
|
|
19
|
+
":abbr:`instrument ([OpenSearch Parameters for Collection Search] A string identifying the instrument (e.g. MERIS, AATSR, ASAR, HRVIR. SAR). (String))`",,,: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`,:green:`queryable metadata`
|
|
20
|
+
:abbr:`keyword ([Additional INSPIRE obligated OpenSearch Parameters for Collection Search] Commonly used word(s) or formalised word(s) or phrase(s) used to describe the subject. (String))`,,,,,,,,,,,,,metadata only,metadata only,,metadata only,metadata only,
|
|
21
|
+
maximumIncidenceAngle,,,,,,,,,,,,,,,,,metadata only,
|
|
22
|
+
minimumIncidenceAngle,,,,,,,,,,,,,,,,,metadata only,
|
|
23
|
+
modificationDate,,,:green:`queryable metadata`,,,metadata only,,:green:`queryable metadata`,:green:`queryable metadata`,:green:`queryable metadata`,,metadata only,:green:`queryable metadata`,metadata only,:green:`queryable metadata`,metadata only,metadata only,:green:`queryable metadata`
|
|
24
|
+
orbitDirection,,,: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
|
+
orbitNumber,,,: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`,metadata only,:green:`queryable metadata`
|
|
26
|
+
:abbr:`organisationName ([Additional INSPIRE obligated OpenSearch Parameters for Collection Search] A string identifying the name of the organization responsible for the resource (String))`,,,:green:`queryable metadata`,,,:green:`queryable metadata`,,,,,,,,:green:`queryable metadata`,,:green:`queryable metadata`,metadata only,
|
|
27
|
+
parentIdentifier,,,,,,,,,,,,:green:`queryable metadata`,,:green:`queryable metadata`,,:green:`queryable metadata`,metadata only,
|
|
28
|
+
:abbr:`platform ([OpenSearch Parameters for Collection Search] A string with the platform short name (e.g. Sentinel-1) (String))`,,,:green:`queryable metadata`,,,:green:`queryable metadata`,,:green:`queryable metadata`,:green:`queryable metadata`,:green:`queryable metadata`,,metadata only,:green:`queryable metadata`,metadata only,:green:`queryable metadata`,metadata only,:green:`queryable metadata`,:green:`queryable metadata`
|
|
29
|
+
:abbr:`platformSerialIdentifier ([OpenSearch Parameters for Collection Search] A string with the Platform serial identifier (String))`,,,: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`,:green:`queryable metadata`,:green:`queryable metadata`
|
|
30
|
+
processingCenter,,,,,,,,,,,,,,metadata only,,metadata only,,
|
|
31
|
+
processingDate,,,,,,,,,,,,,,,,,metadata only,
|
|
32
|
+
:abbr:`processingLevel ([OpenSearch Parameters for Collection Search] A string identifying the processing level applied to the entry (String))`,,,: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`
|
|
33
|
+
processingMode,,,,,,,,,,,,,,,,,metadata only,
|
|
34
|
+
processorName,,,,,,,,,,,,,,metadata only,,metadata only,,
|
|
35
|
+
productQualityStatus,,,,,,,,,,,,,,metadata only,,metadata only,,
|
|
36
|
+
":abbr:`productType ([OpenSearch Parameters for Collection Search] A string identifying the entry type (e.g. ER02_SAR_IM__0P, MER_RR__1P, SM_SLC__1S, GES_DISC_AIRH3STD_V005) (String ))`",metadata only,metadata only,: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`
|
|
37
|
+
productVersion,,,,,,,,:green:`queryable metadata`,:green:`queryable metadata`,:green:`queryable metadata`,,,:green:`queryable metadata`,metadata only,:green:`queryable metadata`,metadata only,metadata only,:green:`queryable metadata`
|
|
38
|
+
:abbr:`publicationDate ([Additional INSPIRE obligated OpenSearch Parameters for Collection Search] The date when the resource was issued (Date time))`,,,metadata only,,,metadata only,,:green:`queryable metadata`,:green:`queryable metadata`,:green:`queryable metadata`,,,:green:`queryable metadata`,metadata only,:green:`queryable metadata`,metadata only,metadata only,:green:`queryable metadata`
|
|
39
|
+
resolution,,,: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`,metadata only,:green:`queryable metadata`
|
|
40
|
+
sensorMode,,,: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`,metadata only,:green:`queryable metadata`
|
|
41
|
+
snowCover,,,,,,,,,,,,,,:green:`queryable metadata`,,:green:`queryable metadata`,metadata only,
|
|
42
|
+
startTimeFromAscendingNode,metadata only,metadata only,:green:`queryable metadata`,metadata only,,:green:`queryable metadata`,metadata only,metadata only,metadata only,metadata only,,:green:`queryable metadata`,:green:`queryable metadata`,:green:`queryable metadata`,metadata only,:green:`queryable metadata`,:green:`queryable metadata`,metadata only
|
|
43
|
+
swathIdentifier,,,,,,,,,,,,,:green:`queryable metadata`,:green:`queryable metadata`,,:green:`queryable metadata`,,
|
|
44
|
+
:abbr:`title ([Additional INSPIRE obligated OpenSearch Parameters for Collection Search] A name given to the resource (String ))`,,,metadata only,,,metadata only,,metadata only,metadata only,metadata only,,metadata only,metadata only,metadata only,metadata only,metadata only,metadata only,metadata only
|
|
45
|
+
:abbr:`topicCategory ([Additional INSPIRE obligated OpenSearch Parameters for Collection Search] Main theme(s) of the dataset (String ))`,,,,,,,,,,,,,,metadata only,,metadata only,,
|