eodag 3.7.0__tar.gz → 3.8.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.7.0 → eodag-3.8.0}/CHANGES.rst +52 -0
- {eodag-3.7.0 → eodag-3.8.0}/NOTICE +0 -1
- {eodag-3.7.0/eodag.egg-info → eodag-3.8.0}/PKG-INFO +2 -3
- {eodag-3.7.0 → eodag-3.8.0}/README.rst +1 -1
- {eodag-3.7.0 → eodag-3.8.0}/charts/eodag-server/Chart.yaml +2 -2
- eodag-3.8.0/docs/_static/eodag_overview.png +0 -0
- eodag-3.8.0/docs/_static/eodag_stac_server.png +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/docs/_static/params_mapping_extra.csv +12 -12
- eodag-3.8.0/docs/_static/params_mapping_offline_infos.json +471 -0
- {eodag-3.7.0 → eodag-3.8.0}/docs/_static/params_mapping_opensearch.csv +30 -38
- {eodag-3.7.0 → eodag-3.8.0}/docs/_static/product_types_information.csv +39 -51
- {eodag-3.7.0 → eodag-3.8.0}/docs/api_reference/utils.rst +5 -0
- {eodag-3.7.0 → eodag-3.8.0}/docs/getting_started_guide/providers.rst +3 -2
- {eodag-3.7.0 → eodag-3.8.0}/docs/getting_started_guide/register.rst +6 -2
- {eodag-3.7.0 → eodag-3.8.0}/docs/index.rst +1 -0
- {eodag-3.7.0 → eodag-3.8.0}/docs/notebooks/api_user_guide/2_providers_products_available.ipynb +48 -63
- {eodag-3.7.0 → eodag-3.8.0}/docs/notebooks/api_user_guide/3_configuration.ipynb +21 -19
- {eodag-3.7.0 → eodag-3.8.0}/docs/notebooks/api_user_guide/4_search.ipynb +462 -345
- {eodag-3.7.0 → eodag-3.8.0}/docs/notebooks/tutos/tuto_cds.ipynb +2 -2
- {eodag-3.7.0 → eodag-3.8.0}/docs/notebooks/tutos/tuto_cop_dem.ipynb +1 -1
- {eodag-3.7.0 → eodag-3.8.0}/docs/notebooks/tutos/tuto_ecmwf.ipynb +1 -1
- {eodag-3.7.0 → eodag-3.8.0}/docs/notebooks/tutos/tuto_stac_client.ipynb +11 -10
- {eodag-3.7.0 → eodag-3.8.0}/docs/plugins.rst +2 -0
- {eodag-3.7.0 → eodag-3.8.0}/docs/stac_rest.rst +1 -1
- {eodag-3.7.0 → eodag-3.8.0}/eodag/api/core.py +110 -175
- {eodag-3.7.0 → eodag-3.8.0}/eodag/api/product/metadata_mapping.py +22 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/config.py +2 -1
- {eodag-3.7.0 → eodag-3.8.0}/eodag/plugins/download/s3rest.py +6 -1
- {eodag-3.7.0 → eodag-3.8.0}/eodag/plugins/search/data_request_search.py +6 -1
- {eodag-3.7.0 → eodag-3.8.0}/eodag/plugins/search/qssearch.py +20 -0
- eodag-3.8.0/eodag/resources/ext_product_types.json +1 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/resources/product_types.yml +0 -18
- {eodag-3.7.0 → eodag-3.8.0}/eodag/resources/providers.yml +39 -3
- {eodag-3.7.0 → eodag-3.8.0}/eodag/resources/stac_provider.yml +1 -1
- {eodag-3.7.0 → eodag-3.8.0}/eodag/rest/core.py +0 -7
- {eodag-3.7.0 → eodag-3.8.0}/eodag/rest/stac.py +0 -4
- eodag-3.8.0/eodag/utils/free_text_search.py +229 -0
- {eodag-3.7.0 → eodag-3.8.0/eodag.egg-info}/PKG-INFO +2 -3
- {eodag-3.7.0 → eodag-3.8.0}/eodag.egg-info/SOURCES.txt +1 -2
- {eodag-3.7.0 → eodag-3.8.0}/eodag.egg-info/requires.txt +0 -1
- {eodag-3.7.0 → eodag-3.8.0}/pyproject.toml +2 -4
- {eodag-3.7.0 → eodag-3.8.0}/setup.cfg +0 -1
- eodag-3.7.0/docs/_static/eodag_overview.png +0 -0
- eodag-3.7.0/docs/_static/eodag_stac_client.png +0 -0
- eodag-3.7.0/docs/_static/eodag_stac_server.png +0 -0
- eodag-3.7.0/docs/_static/params_mapping_offline_infos.json +0 -1
- eodag-3.7.0/eodag/resources/ext_product_types.json +0 -1
- eodag-3.7.0/eodag/types/whoosh.py +0 -203
- {eodag-3.7.0 → eodag-3.8.0}/.dockerignore +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/.editorconfig +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/.gitattributes +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/.github/ISSUE_TEMPLATE/bug_report.md +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/.github/ISSUE_TEMPLATE/feature_request.md +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/.github/pull_request_template.md +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/.github/workflows/changelog.yml +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/.github/workflows/deploy.yml +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/.github/workflows/fetch.yml +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/.github/workflows/github-pages.yml +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/.github/workflows/lint-pr-title.yml +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/.github/workflows/publish.yml +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/.github/workflows/test.yml +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/.gitignore +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/.pre-commit-config.yaml +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/BREAKING_CHANGES.rst +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/CODE_OF_CONDUCT.md +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/CONTRIBUTING.rst +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/LICENSE +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/MANIFEST.in +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/charts/eodag-server/Chart.lock +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/charts/eodag-server/README.md +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/charts/eodag-server/templates/NOTES.txt +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/charts/eodag-server/templates/_helpers.tpl +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/charts/eodag-server/templates/configmap.yaml +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/charts/eodag-server/templates/deployment.yaml +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/charts/eodag-server/templates/extra-list.yaml +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/charts/eodag-server/templates/hpa.yaml +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/charts/eodag-server/templates/ingress.yaml +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/charts/eodag-server/templates/pv.yaml +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/charts/eodag-server/templates/pvc.yaml +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/charts/eodag-server/templates/secret.yaml +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/charts/eodag-server/templates/service.yaml +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/charts/eodag-server/templates/serviceaccount.yaml +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/charts/eodag-server/values.yaml +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/docker/run-stac-server.sh +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/docker/stac-browser.dockerfile +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/docker/stac-server.dockerfile +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/docker-compose.yml +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/docs/Makefile +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/docs/_static/custom.css +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/docs/_static/download_methods.png +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/docs/_static/eodag_advanced_calls_graph.svg +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/docs/_static/eodag_bycs.png +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/docs/_static/eodag_fetch_product_types.png +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/docs/_static/eodag_logo_160.png +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/docs/_static/eodag_logo_160r.png +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/docs/_static/eodag_main_calls_graph.svg +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/docs/_static/favicon-32x32.png +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/docs/_static/progress_1.png +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/docs/_static/progress_1_none.png +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/docs/_static/progress_2.png +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/docs/_static/progress_2_none.png +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/docs/_static/stac_browser_example.png +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/docs/_static/stac_browser_example_600.png +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/docs/add_product_type.rst +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/docs/add_provider.rst +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/docs/api_reference/assets.rst +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/docs/api_reference/call_graphs.rst +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/docs/api_reference/core.rst +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/docs/api_reference/eoproduct.rst +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/docs/api_reference/exceptions.rst +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/docs/api_reference/index.rst +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/docs/api_reference/searchresult.rst +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/docs/api_reference/types.rst +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/docs/api_user_guide.rst +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/docs/breaking_changes.rst +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/docs/changelog.rst +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/docs/cli_user_guide.rst +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/docs/conf.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/docs/contribute.rst +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/docs/drivers.rst +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/docs/getting_started_guide/configure.rst +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/docs/getting_started_guide/ecosystem.rst +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/docs/getting_started_guide/index.rst +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/docs/getting_started_guide/install.rst +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/docs/getting_started_guide/overview.rst +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/docs/getting_started_guide/product_storage_status.rst +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/docs/getting_started_guide/product_types.rst +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/docs/make.bat +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/docs/notebooks/api_user_guide/1_overview.ipynb +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/docs/notebooks/api_user_guide/5_queryables.ipynb +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/docs/notebooks/api_user_guide/6_serialize_deserialize.ipynb +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/docs/notebooks/api_user_guide/7_crunch.ipynb +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/docs/notebooks/api_user_guide/8_download.ipynb +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/docs/notebooks/api_user_guide/9_post_process.ipynb +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/docs/notebooks/api_user_guide/data/crunch_search_results.geojson +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/docs/notebooks/api_user_guide/data/download_search_results.geojson +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/docs/notebooks/intro_notebooks.ipynb +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/docs/notebooks/tutos/auxdata/Gulf_of_Trieste_seamask_UTM33.cpg +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/docs/notebooks/tutos/auxdata/Gulf_of_Trieste_seamask_UTM33.dbf +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/docs/notebooks/tutos/auxdata/Gulf_of_Trieste_seamask_UTM33.prj +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/docs/notebooks/tutos/auxdata/Gulf_of_Trieste_seamask_UTM33.qix +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/docs/notebooks/tutos/auxdata/Gulf_of_Trieste_seamask_UTM33.qpj +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/docs/notebooks/tutos/auxdata/Gulf_of_Trieste_seamask_UTM33.shp +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/docs/notebooks/tutos/auxdata/Gulf_of_Trieste_seamask_UTM33.shx +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/docs/notebooks/tutos/auxdata/sentinel2_tiling_grid_centroids.zip +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/docs/notebooks/tutos/tuto_burnt_areas_snappy.ipynb +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/docs/notebooks/tutos/tuto_dedt_lumi_roi.ipynb +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/docs/notebooks/tutos/tuto_meteoblue.ipynb +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/docs/notebooks/tutos/tuto_search_location_tile.ipynb +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/docs/notebooks/tutos/tuto_ship_detection.ipynb +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/docs/notebooks/tutos/tuto_wekeo.ipynb +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/docs/params_mapping.rst +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/docs/plugins_reference/api.rst +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/docs/plugins_reference/auth.rst +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/docs/plugins_reference/crunch.rst +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/docs/plugins_reference/download.rst +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/docs/plugins_reference/search.rst +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/docs/tutos.rst +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/__init__.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/api/__init__.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/api/product/__init__.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/api/product/_assets.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/api/product/_product.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/api/product/drivers/__init__.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/api/product/drivers/base.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/api/product/drivers/generic.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/api/product/drivers/sentinel1.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/api/product/drivers/sentinel2.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/api/search_result.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/cli.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/crunch.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/plugins/__init__.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/plugins/apis/__init__.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/plugins/apis/base.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/plugins/apis/ecmwf.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/plugins/apis/usgs.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/plugins/authentication/__init__.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/plugins/authentication/aws_auth.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/plugins/authentication/base.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/plugins/authentication/generic.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/plugins/authentication/header.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/plugins/authentication/keycloak.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/plugins/authentication/oauth.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/plugins/authentication/openid_connect.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/plugins/authentication/qsauth.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/plugins/authentication/sas_auth.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/plugins/authentication/token.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/plugins/authentication/token_exchange.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/plugins/base.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/plugins/crunch/__init__.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/plugins/crunch/base.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/plugins/crunch/filter_date.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/plugins/crunch/filter_latest_intersect.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/plugins/crunch/filter_latest_tpl_name.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/plugins/crunch/filter_overlap.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/plugins/crunch/filter_property.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/plugins/download/__init__.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/plugins/download/aws.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/plugins/download/base.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/plugins/download/creodias_s3.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/plugins/download/http.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/plugins/manager.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/plugins/search/__init__.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/plugins/search/base.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/plugins/search/build_search_result.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/plugins/search/cop_marine.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/plugins/search/creodias_s3.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/plugins/search/csw.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/plugins/search/stac_list_assets.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/plugins/search/static_stac_search.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/py.typed +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/resources/locations_conf_template.yml +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/resources/shp/ne_110m_admin_0_map_units.VERSION.txt +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/resources/shp/ne_110m_admin_0_map_units.cpg +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/resources/shp/ne_110m_admin_0_map_units.dbf +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/resources/shp/ne_110m_admin_0_map_units.prj +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/resources/shp/ne_110m_admin_0_map_units.shp +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/resources/shp/ne_110m_admin_0_map_units.shx +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/resources/stac.yml +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/resources/stac_api.yml +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/resources/user_conf_template.yml +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/rest/__init__.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/rest/cache.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/rest/config.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/rest/constants.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/rest/errors.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/rest/server.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/rest/server.wsgi +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/rest/templates/README +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/rest/types/__init__.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/rest/types/collections_search.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/rest/types/eodag_search.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/rest/types/queryables.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/rest/types/stac_search.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/rest/utils/__init__.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/rest/utils/cql_evaluate.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/rest/utils/rfc3339.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/types/__init__.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/types/bbox.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/types/download_args.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/types/queryables.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/types/search_args.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/utils/__init__.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/utils/cache.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/utils/env.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/utils/exceptions.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/utils/import_system.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/utils/logging.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/utils/notebook.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/utils/repr.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/utils/requests.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/utils/rest.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/utils/s3.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag/utils/stac_reader.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag.egg-info/dependency_links.txt +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag.egg-info/entry_points.txt +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/eodag.egg-info/top_level.txt +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/get_pypi_latest_version.sh +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/pytest.ini +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/readthedocs.yml +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/requirements-dev.txt +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/requirements-docs.txt +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/requirements-tutorials.txt +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/requirements.txt +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/setup.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/tox.ini +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/utils/params_mapping_to_csv.py +0 -0
- {eodag-3.7.0 → eodag-3.8.0}/utils/product_types_information_to_csv.py +0 -0
|
@@ -3,6 +3,58 @@ Release history
|
|
|
3
3
|
===============
|
|
4
4
|
|
|
5
5
|
|
|
6
|
+
v3.8.0 (2025-08-27)
|
|
7
|
+
===================
|
|
8
|
+
|
|
9
|
+
Bug Fixes
|
|
10
|
+
---------
|
|
11
|
+
|
|
12
|
+
* **providers**: Product types discovered properties format (`#1783`_, `7824f6a`_)
|
|
13
|
+
|
|
14
|
+
* **providers**: Remove deprecated product type (S2_MSI_L2AP) (`#1764`_, `7b1fb89`_)
|
|
15
|
+
|
|
16
|
+
* **providers**: Restore ssl verify for geodes (`#1780`_, `8b771f8`_)
|
|
17
|
+
|
|
18
|
+
* **server**: Remove duplicate host (`#1794`_, `fa22145`_)
|
|
19
|
+
|
|
20
|
+
Chores
|
|
21
|
+
------
|
|
22
|
+
|
|
23
|
+
* Deprecate unused code (`#1788`_, `2658e69`_)
|
|
24
|
+
|
|
25
|
+
Documentation
|
|
26
|
+
-------------
|
|
27
|
+
|
|
28
|
+
* Aws_eos logo added (`#1773`_, `af6d959`_)
|
|
29
|
+
|
|
30
|
+
Features
|
|
31
|
+
--------
|
|
32
|
+
|
|
33
|
+
* **providers**: New provider fedeo_ceda (`#1778`_, `4d9f091`_)
|
|
34
|
+
|
|
35
|
+
Refactoring
|
|
36
|
+
-----------
|
|
37
|
+
|
|
38
|
+
* **core**: Whoosh removal (`#1741`_, `31f3c8a`_)
|
|
39
|
+
|
|
40
|
+
.. _#1741: https://github.com/CS-SI/eodag/pull/1741
|
|
41
|
+
.. _#1764: https://github.com/CS-SI/eodag/pull/1764
|
|
42
|
+
.. _#1773: https://github.com/CS-SI/eodag/pull/1773
|
|
43
|
+
.. _#1778: https://github.com/CS-SI/eodag/pull/1778
|
|
44
|
+
.. _#1780: https://github.com/CS-SI/eodag/pull/1780
|
|
45
|
+
.. _#1783: https://github.com/CS-SI/eodag/pull/1783
|
|
46
|
+
.. _#1788: https://github.com/CS-SI/eodag/pull/1788
|
|
47
|
+
.. _#1794: https://github.com/CS-SI/eodag/pull/1794
|
|
48
|
+
.. _2658e69: https://github.com/CS-SI/eodag/commit/2658e6983f64581f2364647993c4c0e6bc7bc841
|
|
49
|
+
.. _31f3c8a: https://github.com/CS-SI/eodag/commit/31f3c8a50b251cc2ad2d567fb6f1eb62937b5d43
|
|
50
|
+
.. _4d9f091: https://github.com/CS-SI/eodag/commit/4d9f09110c0fcc745d910b9c02e155aa1952b048
|
|
51
|
+
.. _7824f6a: https://github.com/CS-SI/eodag/commit/7824f6a1a3d3aa881532c5904f58acb73ebdca5f
|
|
52
|
+
.. _7b1fb89: https://github.com/CS-SI/eodag/commit/7b1fb89208537a360471a218d13b2f9865f282c4
|
|
53
|
+
.. _8b771f8: https://github.com/CS-SI/eodag/commit/8b771f801ef19e81297fc9fe273921702797dffc
|
|
54
|
+
.. _af6d959: https://github.com/CS-SI/eodag/commit/af6d959fec6fa009677ac429c70bb3004b066671
|
|
55
|
+
.. _fa22145: https://github.com/CS-SI/eodag/commit/fa22145056b62c8d399f254a3945e0c718834851
|
|
56
|
+
|
|
57
|
+
|
|
6
58
|
v3.7.0 (2025-07-31)
|
|
7
59
|
===================
|
|
8
60
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: eodag
|
|
3
|
-
Version: 3.
|
|
3
|
+
Version: 3.8.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
|
|
@@ -54,7 +54,6 @@ Requires-Dist: stream-zip
|
|
|
54
54
|
Requires-Dist: tqdm
|
|
55
55
|
Requires-Dist: typing_extensions>=4.8.0
|
|
56
56
|
Requires-Dist: urllib3
|
|
57
|
-
Requires-Dist: Whoosh
|
|
58
57
|
Provides-Extra: all
|
|
59
58
|
Requires-Dist: eodag[all-providers,csw,server,tutorials]; extra == "all"
|
|
60
59
|
Provides-Extra: all-providers
|
|
@@ -317,7 +316,7 @@ An eodag instance can be exposed through a STAC compliant REST api from the comm
|
|
|
317
316
|
|
|
318
317
|
.. code-block:: bash
|
|
319
318
|
|
|
320
|
-
docker run -p 5000:5000 --rm csspace/eodag-server:3.
|
|
319
|
+
docker run -p 5000:5000 --rm csspace/eodag-server:3.8.0
|
|
321
320
|
|
|
322
321
|
You can also browse over your STAC API server using `STAC Browser <https://github.com/radiantearth/stac-browser>`_.
|
|
323
322
|
Simply run:
|
|
@@ -185,7 +185,7 @@ An eodag instance can be exposed through a STAC compliant REST api from the comm
|
|
|
185
185
|
|
|
186
186
|
.. code-block:: bash
|
|
187
187
|
|
|
188
|
-
docker run -p 5000:5000 --rm csspace/eodag-server:3.
|
|
188
|
+
docker run -p 5000:5000 --rm csspace/eodag-server:3.8.0
|
|
189
189
|
|
|
190
190
|
You can also browse over your STAC API server using `STAC Browser <https://github.com/radiantearth/stac-browser>`_.
|
|
191
191
|
Simply run:
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
apiVersion: v2
|
|
2
|
-
appVersion: 3.
|
|
2
|
+
appVersion: 3.8.0
|
|
3
3
|
dependencies:
|
|
4
4
|
- name: common
|
|
5
5
|
repository: oci://registry-1.docker.io/bitnamicharts
|
|
@@ -15,4 +15,4 @@ name: eodag-server
|
|
|
15
15
|
sources:
|
|
16
16
|
- https://github.com/CS-SI/eodag
|
|
17
17
|
type: application
|
|
18
|
-
version: 3.
|
|
18
|
+
version: 3.8.0
|
|
Binary file
|
|
Binary file
|
|
@@ -1,32 +1,32 @@
|
|
|
1
|
-
parameter,cop_dataspace,cop_marine,creodias,earth_search,earth_search_cog,earth_search_gcs,ecmwf,eumetsat_ds,geodes,peps,planetary_computer,sara,
|
|
1
|
+
parameter,cop_dataspace,cop_marine,creodias,earth_search,earth_search_cog,earth_search_gcs,ecmwf,eumetsat_ds,fedeo_ceda,geodes,peps,planetary_computer,sara,usgs_satapi_aws
|
|
2
2
|
acquisitionInformation,,,,,,,,metadata only,,,,,,
|
|
3
|
-
assets,,,,metadata only,metadata only,metadata only,,metadata only,metadata only,,metadata only
|
|
3
|
+
assets,,,,metadata only,metadata only,metadata only,,metadata only,metadata only,metadata only,,metadata only,,metadata only
|
|
4
4
|
awsProductId,,,,,,,,,,,,,,metadata only
|
|
5
5
|
collection,:green:`queryable metadata`,,:green:`queryable metadata`,,,,,,,,,,,
|
|
6
6
|
defaultGeometry,,metadata only,,,,,,metadata only,,,,,,
|
|
7
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
8
|
extraInformation,,,,,,,,metadata only,,,,,,
|
|
9
|
-
geometry,:green:`queryable metadata`,,:green:`queryable metadata`,:green:`queryable metadata`,:green:`queryable metadata`,:green:`queryable metadata`,,:green:`queryable metadata
|
|
9
|
+
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`
|
|
10
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
|
|
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`,:green:`queryable metadata`,:green:`queryable metadata`
|
|
12
12
|
latitudeBand,,,,:green:`queryable metadata`,,,,,,,,,,
|
|
13
|
-
links
|
|
13
|
+
links,,,,,,,,,,,metadata only,,,
|
|
14
14
|
modifiedAfter,:green:`queryable metadata`,,,,,,,,,,,,,
|
|
15
15
|
modifiedBefore,:green:`queryable metadata`,,,,,,,,,,,,,
|
|
16
|
-
polarizationChannels,:green:`queryable metadata`,,:green:`queryable metadata`,:green:`queryable metadata`,:green:`queryable metadata`,:green:`queryable metadata`,,,:green:`queryable metadata`,,:green:`queryable metadata
|
|
17
|
-
polarizationMode,,,,,metadata only
|
|
16
|
+
polarizationChannels,: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`
|
|
17
|
+
polarizationMode,,,,,metadata only,,,,,,:green:`queryable metadata`,,:green:`queryable metadata`,
|
|
18
18
|
productIdentifier,metadata only,,metadata only,,,,,,,,,,,
|
|
19
19
|
productInformation,,,,,,,,metadata only,,,,,,
|
|
20
|
-
providerProductType
|
|
20
|
+
providerProductType,,,,,,,,,,:green:`queryable metadata`,,,,
|
|
21
21
|
publishedAfter,:green:`queryable metadata`,,,,,,,,,,,,,
|
|
22
22
|
publishedBefore,:green:`queryable metadata`,,,,,,,,,,,,,
|
|
23
23
|
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
|
|
24
|
-
relativeOrbitNumber,:green:`queryable metadata
|
|
25
|
-
services
|
|
24
|
+
relativeOrbitNumber,:green:`queryable metadata`,,,,,,,,,:green:`queryable metadata`,,,,
|
|
25
|
+
services,,,,,,,,,,,metadata only,,,
|
|
26
26
|
size,,,,,,,,metadata only,,,,,,
|
|
27
27
|
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
|
|
28
28
|
thumbnail,metadata only,,metadata only,metadata only,metadata only,metadata only,,,metadata only,metadata only,metadata only,metadata only,metadata only,metadata only
|
|
29
|
-
tileIdentifier,:green:`queryable metadata`,,:green:`queryable metadata`,:green:`queryable metadata
|
|
29
|
+
tileIdentifier,:green:`queryable metadata`,,:green:`queryable metadata`,:green:`queryable metadata`,,,,,,:green:`queryable metadata`,:green:`queryable metadata`,:green:`queryable metadata`,,
|
|
30
30
|
type,,,,,,,,metadata only,,,,,,
|
|
31
|
-
uid,metadata only,,metadata only,,,,,metadata only
|
|
31
|
+
uid,metadata only,,metadata only,,,,,metadata only,,metadata only,metadata only,,metadata only,
|
|
32
32
|
utmZone,,,,:green:`queryable metadata`,,,,,,,,,,
|
|
@@ -0,0 +1,471 @@
|
|
|
1
|
+
{
|
|
2
|
+
"abstract": {
|
|
3
|
+
"parameter": "abstract",
|
|
4
|
+
"open-search": true,
|
|
5
|
+
"class": "Additional INSPIRE obligated OpenSearch Parameters for Collection Search",
|
|
6
|
+
"description": "Abstract.",
|
|
7
|
+
"type": "String"
|
|
8
|
+
},
|
|
9
|
+
"accessConstraint": {
|
|
10
|
+
"parameter": "accessConstraint",
|
|
11
|
+
"open-search": true,
|
|
12
|
+
"class": "Additional INSPIRE obligated OpenSearch Parameters for Collection Search",
|
|
13
|
+
"description": "Applied to assure the protection of privacy or intellectual property, and any special restrictions or limitations on obtaining the resource",
|
|
14
|
+
"type": "String "
|
|
15
|
+
},
|
|
16
|
+
"acquisitionInformation": {
|
|
17
|
+
"parameter": "acquisitionInformation",
|
|
18
|
+
"open-search": "",
|
|
19
|
+
"class": "",
|
|
20
|
+
"description": "",
|
|
21
|
+
"type": ""
|
|
22
|
+
},
|
|
23
|
+
"acquisitionStation": {
|
|
24
|
+
"parameter": "acquisitionStation",
|
|
25
|
+
"open-search": true,
|
|
26
|
+
"class": "",
|
|
27
|
+
"description": "",
|
|
28
|
+
"type": ""
|
|
29
|
+
},
|
|
30
|
+
"acquisitionSubType": {
|
|
31
|
+
"parameter": "acquisitionSubType",
|
|
32
|
+
"open-search": true,
|
|
33
|
+
"class": "",
|
|
34
|
+
"description": "",
|
|
35
|
+
"type": ""
|
|
36
|
+
},
|
|
37
|
+
"acquisitionType": {
|
|
38
|
+
"parameter": "acquisitionType",
|
|
39
|
+
"open-search": true,
|
|
40
|
+
"class": "",
|
|
41
|
+
"description": "",
|
|
42
|
+
"type": ""
|
|
43
|
+
},
|
|
44
|
+
"assets": {
|
|
45
|
+
"parameter": "assets",
|
|
46
|
+
"open-search": "",
|
|
47
|
+
"class": "",
|
|
48
|
+
"description": "",
|
|
49
|
+
"type": ""
|
|
50
|
+
},
|
|
51
|
+
"availabilityTime": {
|
|
52
|
+
"parameter": "availabilityTime",
|
|
53
|
+
"open-search": true,
|
|
54
|
+
"class": "",
|
|
55
|
+
"description": "",
|
|
56
|
+
"type": ""
|
|
57
|
+
},
|
|
58
|
+
"awsProductId": {
|
|
59
|
+
"parameter": "awsProductId",
|
|
60
|
+
"open-search": "",
|
|
61
|
+
"class": "",
|
|
62
|
+
"description": "",
|
|
63
|
+
"type": ""
|
|
64
|
+
},
|
|
65
|
+
"cloudCover": {
|
|
66
|
+
"parameter": "cloudCover",
|
|
67
|
+
"open-search": true,
|
|
68
|
+
"class": "",
|
|
69
|
+
"description": "",
|
|
70
|
+
"type": ""
|
|
71
|
+
},
|
|
72
|
+
"collection": {
|
|
73
|
+
"parameter": "collection",
|
|
74
|
+
"open-search": "",
|
|
75
|
+
"class": "",
|
|
76
|
+
"description": "",
|
|
77
|
+
"type": ""
|
|
78
|
+
},
|
|
79
|
+
"completionTimeFromAscendingNode": {
|
|
80
|
+
"parameter": "completionTimeFromAscendingNode",
|
|
81
|
+
"open-search": true,
|
|
82
|
+
"class": "",
|
|
83
|
+
"description": "",
|
|
84
|
+
"type": ""
|
|
85
|
+
},
|
|
86
|
+
"creationDate": {
|
|
87
|
+
"parameter": "creationDate",
|
|
88
|
+
"open-search": true,
|
|
89
|
+
"class": "",
|
|
90
|
+
"description": "",
|
|
91
|
+
"type": ""
|
|
92
|
+
},
|
|
93
|
+
"defaultGeometry": {
|
|
94
|
+
"parameter": "defaultGeometry",
|
|
95
|
+
"open-search": "",
|
|
96
|
+
"class": "",
|
|
97
|
+
"description": "",
|
|
98
|
+
"type": ""
|
|
99
|
+
},
|
|
100
|
+
"doi": {
|
|
101
|
+
"parameter": "doi",
|
|
102
|
+
"open-search": true,
|
|
103
|
+
"class": "OpenSearch Parameters for Collection Search",
|
|
104
|
+
"description": "Digital Object Identifier identifying the product (see http://www.doi.org)",
|
|
105
|
+
"type": "String"
|
|
106
|
+
},
|
|
107
|
+
"dopplerFrequency": {
|
|
108
|
+
"parameter": "dopplerFrequency",
|
|
109
|
+
"open-search": true,
|
|
110
|
+
"class": "",
|
|
111
|
+
"description": "",
|
|
112
|
+
"type": ""
|
|
113
|
+
},
|
|
114
|
+
"downloadLink": {
|
|
115
|
+
"parameter": "downloadLink",
|
|
116
|
+
"open-search": "",
|
|
117
|
+
"class": "",
|
|
118
|
+
"description": "",
|
|
119
|
+
"type": ""
|
|
120
|
+
},
|
|
121
|
+
"extraInformation": {
|
|
122
|
+
"parameter": "extraInformation",
|
|
123
|
+
"open-search": "",
|
|
124
|
+
"class": "",
|
|
125
|
+
"description": "",
|
|
126
|
+
"type": ""
|
|
127
|
+
},
|
|
128
|
+
"geometry": {
|
|
129
|
+
"parameter": "geometry",
|
|
130
|
+
"open-search": "",
|
|
131
|
+
"class": "",
|
|
132
|
+
"description": "",
|
|
133
|
+
"type": ""
|
|
134
|
+
},
|
|
135
|
+
"gridSquare": {
|
|
136
|
+
"parameter": "gridSquare",
|
|
137
|
+
"open-search": "",
|
|
138
|
+
"class": "",
|
|
139
|
+
"description": "",
|
|
140
|
+
"type": ""
|
|
141
|
+
},
|
|
142
|
+
"id": {
|
|
143
|
+
"parameter": "id",
|
|
144
|
+
"open-search": "",
|
|
145
|
+
"class": "",
|
|
146
|
+
"description": "",
|
|
147
|
+
"type": ""
|
|
148
|
+
},
|
|
149
|
+
"illuminationAzimuthAngle": {
|
|
150
|
+
"parameter": "illuminationAzimuthAngle",
|
|
151
|
+
"open-search": true,
|
|
152
|
+
"class": "",
|
|
153
|
+
"description": "",
|
|
154
|
+
"type": ""
|
|
155
|
+
},
|
|
156
|
+
"illuminationElevationAngle": {
|
|
157
|
+
"parameter": "illuminationElevationAngle",
|
|
158
|
+
"open-search": true,
|
|
159
|
+
"class": "",
|
|
160
|
+
"description": "",
|
|
161
|
+
"type": ""
|
|
162
|
+
},
|
|
163
|
+
"instrument": {
|
|
164
|
+
"parameter": "instrument",
|
|
165
|
+
"open-search": true,
|
|
166
|
+
"class": "OpenSearch Parameters for Collection Search",
|
|
167
|
+
"description": "A string identifying the instrument (e.g. MERIS, AATSR, ASAR, HRVIR. SAR).",
|
|
168
|
+
"type": "String"
|
|
169
|
+
},
|
|
170
|
+
"keyword": {
|
|
171
|
+
"parameter": "keyword",
|
|
172
|
+
"open-search": true,
|
|
173
|
+
"class": "Additional INSPIRE obligated OpenSearch Parameters for Collection Search",
|
|
174
|
+
"description": "Commonly used word(s) or formalised word(s) or phrase(s) used to describe the subject.",
|
|
175
|
+
"type": "String"
|
|
176
|
+
},
|
|
177
|
+
"latitudeBand": {
|
|
178
|
+
"parameter": "latitudeBand",
|
|
179
|
+
"open-search": "",
|
|
180
|
+
"class": "",
|
|
181
|
+
"description": "",
|
|
182
|
+
"type": ""
|
|
183
|
+
},
|
|
184
|
+
"links": {
|
|
185
|
+
"parameter": "links",
|
|
186
|
+
"open-search": "",
|
|
187
|
+
"class": "",
|
|
188
|
+
"description": "",
|
|
189
|
+
"type": ""
|
|
190
|
+
},
|
|
191
|
+
"modificationDate": {
|
|
192
|
+
"parameter": "modificationDate",
|
|
193
|
+
"open-search": true,
|
|
194
|
+
"class": "",
|
|
195
|
+
"description": "",
|
|
196
|
+
"type": ""
|
|
197
|
+
},
|
|
198
|
+
"modifiedAfter": {
|
|
199
|
+
"parameter": "modifiedAfter",
|
|
200
|
+
"open-search": "",
|
|
201
|
+
"class": "",
|
|
202
|
+
"description": "",
|
|
203
|
+
"type": ""
|
|
204
|
+
},
|
|
205
|
+
"modifiedBefore": {
|
|
206
|
+
"parameter": "modifiedBefore",
|
|
207
|
+
"open-search": "",
|
|
208
|
+
"class": "",
|
|
209
|
+
"description": "",
|
|
210
|
+
"type": ""
|
|
211
|
+
},
|
|
212
|
+
"orbitDirection": {
|
|
213
|
+
"parameter": "orbitDirection",
|
|
214
|
+
"open-search": true,
|
|
215
|
+
"class": "",
|
|
216
|
+
"description": "",
|
|
217
|
+
"type": ""
|
|
218
|
+
},
|
|
219
|
+
"orbitNumber": {
|
|
220
|
+
"parameter": "orbitNumber",
|
|
221
|
+
"open-search": true,
|
|
222
|
+
"class": "",
|
|
223
|
+
"description": "",
|
|
224
|
+
"type": ""
|
|
225
|
+
},
|
|
226
|
+
"organisationName": {
|
|
227
|
+
"parameter": "organisationName",
|
|
228
|
+
"open-search": true,
|
|
229
|
+
"class": "Additional INSPIRE obligated OpenSearch Parameters for Collection Search",
|
|
230
|
+
"description": "A string identifying the name of the organization responsible for the resource",
|
|
231
|
+
"type": "String"
|
|
232
|
+
},
|
|
233
|
+
"parentIdentifier": {
|
|
234
|
+
"parameter": "parentIdentifier",
|
|
235
|
+
"open-search": true,
|
|
236
|
+
"class": "",
|
|
237
|
+
"description": "",
|
|
238
|
+
"type": ""
|
|
239
|
+
},
|
|
240
|
+
"platform": {
|
|
241
|
+
"parameter": "platform",
|
|
242
|
+
"open-search": true,
|
|
243
|
+
"class": "OpenSearch Parameters for Collection Search",
|
|
244
|
+
"description": "A string with the platform short name (e.g. Sentinel-1)",
|
|
245
|
+
"type": "String"
|
|
246
|
+
},
|
|
247
|
+
"platformSerialIdentifier": {
|
|
248
|
+
"parameter": "platformSerialIdentifier",
|
|
249
|
+
"open-search": true,
|
|
250
|
+
"class": "OpenSearch Parameters for Collection Search",
|
|
251
|
+
"description": "A string with the Platform serial identifier",
|
|
252
|
+
"type": "String"
|
|
253
|
+
},
|
|
254
|
+
"polarizationChannels": {
|
|
255
|
+
"parameter": "polarizationChannels",
|
|
256
|
+
"open-search": "",
|
|
257
|
+
"class": "",
|
|
258
|
+
"description": "",
|
|
259
|
+
"type": ""
|
|
260
|
+
},
|
|
261
|
+
"polarizationMode": {
|
|
262
|
+
"parameter": "polarizationMode",
|
|
263
|
+
"open-search": "",
|
|
264
|
+
"class": "",
|
|
265
|
+
"description": "",
|
|
266
|
+
"type": ""
|
|
267
|
+
},
|
|
268
|
+
"processingCenter": {
|
|
269
|
+
"parameter": "processingCenter",
|
|
270
|
+
"open-search": true,
|
|
271
|
+
"class": "",
|
|
272
|
+
"description": "",
|
|
273
|
+
"type": ""
|
|
274
|
+
},
|
|
275
|
+
"processingLevel": {
|
|
276
|
+
"parameter": "processingLevel",
|
|
277
|
+
"open-search": true,
|
|
278
|
+
"class": "OpenSearch Parameters for Collection Search",
|
|
279
|
+
"description": "A string identifying the processing level applied to the entry",
|
|
280
|
+
"type": "String"
|
|
281
|
+
},
|
|
282
|
+
"processorName": {
|
|
283
|
+
"parameter": "processorName",
|
|
284
|
+
"open-search": true,
|
|
285
|
+
"class": "",
|
|
286
|
+
"description": "",
|
|
287
|
+
"type": ""
|
|
288
|
+
},
|
|
289
|
+
"productIdentifier": {
|
|
290
|
+
"parameter": "productIdentifier",
|
|
291
|
+
"open-search": "",
|
|
292
|
+
"class": "",
|
|
293
|
+
"description": "",
|
|
294
|
+
"type": ""
|
|
295
|
+
},
|
|
296
|
+
"productInformation": {
|
|
297
|
+
"parameter": "productInformation",
|
|
298
|
+
"open-search": "",
|
|
299
|
+
"class": "",
|
|
300
|
+
"description": "",
|
|
301
|
+
"type": ""
|
|
302
|
+
},
|
|
303
|
+
"productQualityStatus": {
|
|
304
|
+
"parameter": "productQualityStatus",
|
|
305
|
+
"open-search": true,
|
|
306
|
+
"class": "",
|
|
307
|
+
"description": "",
|
|
308
|
+
"type": ""
|
|
309
|
+
},
|
|
310
|
+
"productType": {
|
|
311
|
+
"parameter": "productType",
|
|
312
|
+
"open-search": true,
|
|
313
|
+
"class": "OpenSearch Parameters for Collection Search",
|
|
314
|
+
"description": "A string identifying the entry type (e.g. ER02_SAR_IM__0P, MER_RR__1P, SM_SLC__1S, GES_DISC_AIRH3STD_V005)",
|
|
315
|
+
"type": "String "
|
|
316
|
+
},
|
|
317
|
+
"productVersion": {
|
|
318
|
+
"parameter": "productVersion",
|
|
319
|
+
"open-search": true,
|
|
320
|
+
"class": "",
|
|
321
|
+
"description": "",
|
|
322
|
+
"type": ""
|
|
323
|
+
},
|
|
324
|
+
"providerProductType": {
|
|
325
|
+
"parameter": "providerProductType",
|
|
326
|
+
"open-search": "",
|
|
327
|
+
"class": "",
|
|
328
|
+
"description": "",
|
|
329
|
+
"type": ""
|
|
330
|
+
},
|
|
331
|
+
"publicationDate": {
|
|
332
|
+
"parameter": "publicationDate",
|
|
333
|
+
"open-search": true,
|
|
334
|
+
"class": "Additional INSPIRE obligated OpenSearch Parameters for Collection Search",
|
|
335
|
+
"description": "The date when the resource was issued",
|
|
336
|
+
"type": "Date time"
|
|
337
|
+
},
|
|
338
|
+
"publishedAfter": {
|
|
339
|
+
"parameter": "publishedAfter",
|
|
340
|
+
"open-search": "",
|
|
341
|
+
"class": "",
|
|
342
|
+
"description": "",
|
|
343
|
+
"type": ""
|
|
344
|
+
},
|
|
345
|
+
"publishedBefore": {
|
|
346
|
+
"parameter": "publishedBefore",
|
|
347
|
+
"open-search": "",
|
|
348
|
+
"class": "",
|
|
349
|
+
"description": "",
|
|
350
|
+
"type": ""
|
|
351
|
+
},
|
|
352
|
+
"quicklook": {
|
|
353
|
+
"parameter": "quicklook",
|
|
354
|
+
"open-search": "",
|
|
355
|
+
"class": "",
|
|
356
|
+
"description": "",
|
|
357
|
+
"type": ""
|
|
358
|
+
},
|
|
359
|
+
"relativeOrbitNumber": {
|
|
360
|
+
"parameter": "relativeOrbitNumber",
|
|
361
|
+
"open-search": "",
|
|
362
|
+
"class": "",
|
|
363
|
+
"description": "",
|
|
364
|
+
"type": ""
|
|
365
|
+
},
|
|
366
|
+
"resolution": {
|
|
367
|
+
"parameter": "resolution",
|
|
368
|
+
"open-search": true,
|
|
369
|
+
"class": "",
|
|
370
|
+
"description": "",
|
|
371
|
+
"type": ""
|
|
372
|
+
},
|
|
373
|
+
"sensorMode": {
|
|
374
|
+
"parameter": "sensorMode",
|
|
375
|
+
"open-search": true,
|
|
376
|
+
"class": "",
|
|
377
|
+
"description": "",
|
|
378
|
+
"type": ""
|
|
379
|
+
},
|
|
380
|
+
"services": {
|
|
381
|
+
"parameter": "services",
|
|
382
|
+
"open-search": "",
|
|
383
|
+
"class": "",
|
|
384
|
+
"description": "",
|
|
385
|
+
"type": ""
|
|
386
|
+
},
|
|
387
|
+
"size": {
|
|
388
|
+
"parameter": "size",
|
|
389
|
+
"open-search": "",
|
|
390
|
+
"class": "",
|
|
391
|
+
"description": "",
|
|
392
|
+
"type": ""
|
|
393
|
+
},
|
|
394
|
+
"snowCover": {
|
|
395
|
+
"parameter": "snowCover",
|
|
396
|
+
"open-search": true,
|
|
397
|
+
"class": "",
|
|
398
|
+
"description": "",
|
|
399
|
+
"type": ""
|
|
400
|
+
},
|
|
401
|
+
"startTimeFromAscendingNode": {
|
|
402
|
+
"parameter": "startTimeFromAscendingNode",
|
|
403
|
+
"open-search": true,
|
|
404
|
+
"class": "",
|
|
405
|
+
"description": "",
|
|
406
|
+
"type": ""
|
|
407
|
+
},
|
|
408
|
+
"storageStatus": {
|
|
409
|
+
"parameter": "storageStatus",
|
|
410
|
+
"open-search": "",
|
|
411
|
+
"class": "",
|
|
412
|
+
"description": "",
|
|
413
|
+
"type": ""
|
|
414
|
+
},
|
|
415
|
+
"swathIdentifier": {
|
|
416
|
+
"parameter": "swathIdentifier",
|
|
417
|
+
"open-search": true,
|
|
418
|
+
"class": "",
|
|
419
|
+
"description": "",
|
|
420
|
+
"type": ""
|
|
421
|
+
},
|
|
422
|
+
"thumbnail": {
|
|
423
|
+
"parameter": "thumbnail",
|
|
424
|
+
"open-search": "",
|
|
425
|
+
"class": "",
|
|
426
|
+
"description": "",
|
|
427
|
+
"type": ""
|
|
428
|
+
},
|
|
429
|
+
"tileIdentifier": {
|
|
430
|
+
"parameter": "tileIdentifier",
|
|
431
|
+
"open-search": "",
|
|
432
|
+
"class": "",
|
|
433
|
+
"description": "",
|
|
434
|
+
"type": ""
|
|
435
|
+
},
|
|
436
|
+
"title": {
|
|
437
|
+
"parameter": "title",
|
|
438
|
+
"open-search": true,
|
|
439
|
+
"class": "Additional INSPIRE obligated OpenSearch Parameters for Collection Search",
|
|
440
|
+
"description": "A name given to the resource",
|
|
441
|
+
"type": "String "
|
|
442
|
+
},
|
|
443
|
+
"topicCategory": {
|
|
444
|
+
"parameter": "topicCategory",
|
|
445
|
+
"open-search": true,
|
|
446
|
+
"class": "Additional INSPIRE obligated OpenSearch Parameters for Collection Search",
|
|
447
|
+
"description": "Main theme(s) of the dataset",
|
|
448
|
+
"type": "String "
|
|
449
|
+
},
|
|
450
|
+
"type": {
|
|
451
|
+
"parameter": "type",
|
|
452
|
+
"open-search": "",
|
|
453
|
+
"class": "",
|
|
454
|
+
"description": "",
|
|
455
|
+
"type": ""
|
|
456
|
+
},
|
|
457
|
+
"uid": {
|
|
458
|
+
"parameter": "uid",
|
|
459
|
+
"open-search": "",
|
|
460
|
+
"class": "",
|
|
461
|
+
"description": "",
|
|
462
|
+
"type": ""
|
|
463
|
+
},
|
|
464
|
+
"utmZone": {
|
|
465
|
+
"parameter": "utmZone",
|
|
466
|
+
"open-search": "",
|
|
467
|
+
"class": "",
|
|
468
|
+
"description": "",
|
|
469
|
+
"type": ""
|
|
470
|
+
}
|
|
471
|
+
}
|