eodag 3.6.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.6.0 → eodag-3.8.0}/CHANGES.rst +124 -0
- {eodag-3.6.0 → eodag-3.8.0}/NOTICE +0 -1
- {eodag-3.6.0/eodag.egg-info → eodag-3.8.0}/PKG-INFO +7 -9
- {eodag-3.6.0 → eodag-3.8.0}/README.rst +5 -7
- {eodag-3.6.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.6.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.6.0 → eodag-3.8.0}/docs/_static/params_mapping_opensearch.csv +30 -38
- {eodag-3.6.0 → eodag-3.8.0}/docs/_static/product_types_information.csv +39 -51
- {eodag-3.6.0 → eodag-3.8.0}/docs/add_provider.rst +1 -1
- {eodag-3.6.0 → eodag-3.8.0}/docs/api_reference/utils.rst +5 -0
- {eodag-3.6.0 → eodag-3.8.0}/docs/getting_started_guide/configure.rst +1 -1
- eodag-3.6.0/docs/getting_started_guide/side_projects.rst → eodag-3.8.0/docs/getting_started_guide/ecosystem.rst +3 -12
- {eodag-3.6.0 → eodag-3.8.0}/docs/getting_started_guide/index.rst +1 -1
- {eodag-3.6.0 → eodag-3.8.0}/docs/getting_started_guide/overview.rst +3 -3
- {eodag-3.6.0 → eodag-3.8.0}/docs/getting_started_guide/providers.rst +4 -5
- {eodag-3.6.0 → eodag-3.8.0}/docs/getting_started_guide/register.rst +6 -6
- {eodag-3.6.0 → eodag-3.8.0}/docs/index.rst +1 -1
- {eodag-3.6.0 → eodag-3.8.0}/docs/notebooks/api_user_guide/2_providers_products_available.ipynb +47 -63
- {eodag-3.6.0 → eodag-3.8.0}/docs/notebooks/api_user_guide/3_configuration.ipynb +21 -20
- {eodag-3.6.0 → eodag-3.8.0}/docs/notebooks/api_user_guide/4_search.ipynb +462 -348
- {eodag-3.6.0 → eodag-3.8.0}/docs/notebooks/tutos/tuto_cds.ipynb +2 -2
- {eodag-3.6.0 → eodag-3.8.0}/docs/notebooks/tutos/tuto_cop_dem.ipynb +1 -1
- eodag-3.8.0/docs/notebooks/tutos/tuto_dedt_lumi_roi.ipynb +975 -0
- {eodag-3.6.0 → eodag-3.8.0}/docs/notebooks/tutos/tuto_ecmwf.ipynb +1 -1
- {eodag-3.6.0 → eodag-3.8.0}/docs/notebooks/tutos/tuto_search_location_tile.ipynb +1 -1
- {eodag-3.6.0 → eodag-3.8.0}/docs/notebooks/tutos/tuto_stac_client.ipynb +11 -10
- {eodag-3.6.0 → eodag-3.8.0}/docs/plugins.rst +3 -3
- {eodag-3.6.0 → eodag-3.8.0}/docs/stac_rest.rst +1 -1
- {eodag-3.6.0 → eodag-3.8.0}/docs/tutos.rst +1 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/api/core.py +110 -189
- {eodag-3.6.0 → eodag-3.8.0}/eodag/api/product/metadata_mapping.py +42 -3
- {eodag-3.6.0 → eodag-3.8.0}/eodag/cli.py +6 -3
- {eodag-3.6.0 → eodag-3.8.0}/eodag/config.py +7 -1
- {eodag-3.6.0 → eodag-3.8.0}/eodag/plugins/authentication/openid_connect.py +1 -2
- {eodag-3.6.0 → eodag-3.8.0}/eodag/plugins/download/aws.py +145 -178
- {eodag-3.6.0 → eodag-3.8.0}/eodag/plugins/download/base.py +3 -2
- {eodag-3.6.0 → eodag-3.8.0}/eodag/plugins/download/creodias_s3.py +10 -5
- {eodag-3.6.0 → eodag-3.8.0}/eodag/plugins/download/http.py +14 -6
- {eodag-3.6.0 → eodag-3.8.0}/eodag/plugins/download/s3rest.py +7 -3
- {eodag-3.6.0 → eodag-3.8.0}/eodag/plugins/manager.py +1 -1
- {eodag-3.6.0 → eodag-3.8.0}/eodag/plugins/search/base.py +34 -4
- {eodag-3.6.0 → eodag-3.8.0}/eodag/plugins/search/build_search_result.py +3 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/plugins/search/cop_marine.py +2 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/plugins/search/data_request_search.py +6 -1
- {eodag-3.6.0 → eodag-3.8.0}/eodag/plugins/search/qssearch.py +64 -25
- eodag-3.8.0/eodag/resources/ext_product_types.json +1 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/resources/product_types.yml +30 -171
- {eodag-3.6.0 → eodag-3.8.0}/eodag/resources/providers.yml +87 -328
- {eodag-3.6.0 → eodag-3.8.0}/eodag/resources/stac.yml +1 -2
- {eodag-3.6.0 → eodag-3.8.0}/eodag/resources/stac_provider.yml +1 -1
- {eodag-3.6.0 → eodag-3.8.0}/eodag/resources/user_conf_template.yml +0 -11
- {eodag-3.6.0 → eodag-3.8.0}/eodag/rest/core.py +5 -16
- {eodag-3.6.0 → eodag-3.8.0}/eodag/rest/stac.py +0 -4
- {eodag-3.6.0 → eodag-3.8.0}/eodag/utils/__init__.py +41 -27
- {eodag-3.6.0 → eodag-3.8.0}/eodag/utils/exceptions.py +4 -0
- eodag-3.8.0/eodag/utils/free_text_search.py +229 -0
- eodag-3.8.0/eodag/utils/s3.py +771 -0
- {eodag-3.6.0 → eodag-3.8.0/eodag.egg-info}/PKG-INFO +7 -9
- {eodag-3.6.0 → eodag-3.8.0}/eodag.egg-info/SOURCES.txt +3 -3
- {eodag-3.6.0 → eodag-3.8.0}/eodag.egg-info/requires.txt +1 -1
- {eodag-3.6.0 → eodag-3.8.0}/pyproject.toml +2 -4
- {eodag-3.6.0 → eodag-3.8.0}/setup.cfg +1 -1
- eodag-3.6.0/docs/_static/eodag_overview.png +0 -0
- eodag-3.6.0/docs/_static/eodag_stac_client.png +0 -0
- eodag-3.6.0/docs/_static/eodag_stac_server.png +0 -0
- eodag-3.6.0/docs/_static/params_mapping_offline_infos.json +0 -1
- eodag-3.6.0/eodag/resources/ext_product_types.json +0 -1
- eodag-3.6.0/eodag/types/whoosh.py +0 -203
- eodag-3.6.0/eodag/utils/s3.py +0 -231
- {eodag-3.6.0 → eodag-3.8.0}/.dockerignore +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/.editorconfig +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/.gitattributes +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/.github/ISSUE_TEMPLATE/bug_report.md +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/.github/ISSUE_TEMPLATE/feature_request.md +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/.github/pull_request_template.md +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/.github/workflows/changelog.yml +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/.github/workflows/deploy.yml +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/.github/workflows/fetch.yml +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/.github/workflows/github-pages.yml +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/.github/workflows/lint-pr-title.yml +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/.github/workflows/publish.yml +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/.github/workflows/test.yml +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/.gitignore +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/.pre-commit-config.yaml +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/BREAKING_CHANGES.rst +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/CODE_OF_CONDUCT.md +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/CONTRIBUTING.rst +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/LICENSE +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/MANIFEST.in +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/charts/eodag-server/Chart.lock +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/charts/eodag-server/README.md +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/charts/eodag-server/templates/NOTES.txt +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/charts/eodag-server/templates/_helpers.tpl +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/charts/eodag-server/templates/configmap.yaml +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/charts/eodag-server/templates/deployment.yaml +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/charts/eodag-server/templates/extra-list.yaml +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/charts/eodag-server/templates/hpa.yaml +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/charts/eodag-server/templates/ingress.yaml +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/charts/eodag-server/templates/pv.yaml +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/charts/eodag-server/templates/pvc.yaml +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/charts/eodag-server/templates/secret.yaml +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/charts/eodag-server/templates/service.yaml +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/charts/eodag-server/templates/serviceaccount.yaml +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/charts/eodag-server/values.yaml +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/docker/run-stac-server.sh +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/docker/stac-browser.dockerfile +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/docker/stac-server.dockerfile +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/docker-compose.yml +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/docs/Makefile +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/docs/_static/custom.css +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/docs/_static/download_methods.png +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/docs/_static/eodag_advanced_calls_graph.svg +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/docs/_static/eodag_bycs.png +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/docs/_static/eodag_fetch_product_types.png +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/docs/_static/eodag_logo_160.png +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/docs/_static/eodag_logo_160r.png +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/docs/_static/eodag_main_calls_graph.svg +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/docs/_static/favicon-32x32.png +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/docs/_static/progress_1.png +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/docs/_static/progress_1_none.png +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/docs/_static/progress_2.png +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/docs/_static/progress_2_none.png +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/docs/_static/stac_browser_example.png +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/docs/_static/stac_browser_example_600.png +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/docs/add_product_type.rst +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/docs/api_reference/assets.rst +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/docs/api_reference/call_graphs.rst +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/docs/api_reference/core.rst +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/docs/api_reference/eoproduct.rst +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/docs/api_reference/exceptions.rst +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/docs/api_reference/index.rst +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/docs/api_reference/searchresult.rst +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/docs/api_reference/types.rst +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/docs/api_user_guide.rst +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/docs/breaking_changes.rst +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/docs/changelog.rst +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/docs/cli_user_guide.rst +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/docs/conf.py +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/docs/contribute.rst +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/docs/drivers.rst +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/docs/getting_started_guide/install.rst +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/docs/getting_started_guide/product_storage_status.rst +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/docs/getting_started_guide/product_types.rst +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/docs/make.bat +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/docs/notebooks/api_user_guide/1_overview.ipynb +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/docs/notebooks/api_user_guide/5_queryables.ipynb +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/docs/notebooks/api_user_guide/6_serialize_deserialize.ipynb +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/docs/notebooks/api_user_guide/7_crunch.ipynb +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/docs/notebooks/api_user_guide/8_download.ipynb +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/docs/notebooks/api_user_guide/9_post_process.ipynb +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/docs/notebooks/api_user_guide/data/crunch_search_results.geojson +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/docs/notebooks/api_user_guide/data/download_search_results.geojson +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/docs/notebooks/intro_notebooks.ipynb +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/docs/notebooks/tutos/auxdata/Gulf_of_Trieste_seamask_UTM33.cpg +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/docs/notebooks/tutos/auxdata/Gulf_of_Trieste_seamask_UTM33.dbf +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/docs/notebooks/tutos/auxdata/Gulf_of_Trieste_seamask_UTM33.prj +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/docs/notebooks/tutos/auxdata/Gulf_of_Trieste_seamask_UTM33.qix +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/docs/notebooks/tutos/auxdata/Gulf_of_Trieste_seamask_UTM33.qpj +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/docs/notebooks/tutos/auxdata/Gulf_of_Trieste_seamask_UTM33.shp +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/docs/notebooks/tutos/auxdata/Gulf_of_Trieste_seamask_UTM33.shx +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/docs/notebooks/tutos/auxdata/sentinel2_tiling_grid_centroids.zip +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/docs/notebooks/tutos/tuto_burnt_areas_snappy.ipynb +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/docs/notebooks/tutos/tuto_meteoblue.ipynb +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/docs/notebooks/tutos/tuto_ship_detection.ipynb +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/docs/notebooks/tutos/tuto_wekeo.ipynb +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/docs/params_mapping.rst +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/docs/plugins_reference/api.rst +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/docs/plugins_reference/auth.rst +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/docs/plugins_reference/crunch.rst +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/docs/plugins_reference/download.rst +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/docs/plugins_reference/search.rst +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/__init__.py +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/api/__init__.py +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/api/product/__init__.py +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/api/product/_assets.py +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/api/product/_product.py +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/api/product/drivers/__init__.py +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/api/product/drivers/base.py +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/api/product/drivers/generic.py +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/api/product/drivers/sentinel1.py +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/api/product/drivers/sentinel2.py +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/api/search_result.py +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/crunch.py +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/plugins/__init__.py +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/plugins/apis/__init__.py +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/plugins/apis/base.py +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/plugins/apis/ecmwf.py +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/plugins/apis/usgs.py +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/plugins/authentication/__init__.py +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/plugins/authentication/aws_auth.py +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/plugins/authentication/base.py +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/plugins/authentication/generic.py +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/plugins/authentication/header.py +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/plugins/authentication/keycloak.py +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/plugins/authentication/oauth.py +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/plugins/authentication/qsauth.py +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/plugins/authentication/sas_auth.py +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/plugins/authentication/token.py +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/plugins/authentication/token_exchange.py +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/plugins/base.py +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/plugins/crunch/__init__.py +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/plugins/crunch/base.py +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/plugins/crunch/filter_date.py +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/plugins/crunch/filter_latest_intersect.py +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/plugins/crunch/filter_latest_tpl_name.py +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/plugins/crunch/filter_overlap.py +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/plugins/crunch/filter_property.py +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/plugins/download/__init__.py +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/plugins/search/__init__.py +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/plugins/search/creodias_s3.py +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/plugins/search/csw.py +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/plugins/search/stac_list_assets.py +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/plugins/search/static_stac_search.py +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/py.typed +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/resources/locations_conf_template.yml +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/resources/shp/ne_110m_admin_0_map_units.VERSION.txt +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/resources/shp/ne_110m_admin_0_map_units.cpg +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/resources/shp/ne_110m_admin_0_map_units.dbf +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/resources/shp/ne_110m_admin_0_map_units.prj +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/resources/shp/ne_110m_admin_0_map_units.shp +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/resources/shp/ne_110m_admin_0_map_units.shx +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/resources/stac_api.yml +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/rest/__init__.py +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/rest/cache.py +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/rest/config.py +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/rest/constants.py +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/rest/errors.py +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/rest/server.py +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/rest/server.wsgi +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/rest/templates/README +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/rest/types/__init__.py +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/rest/types/collections_search.py +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/rest/types/eodag_search.py +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/rest/types/queryables.py +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/rest/types/stac_search.py +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/rest/utils/__init__.py +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/rest/utils/cql_evaluate.py +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/rest/utils/rfc3339.py +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/types/__init__.py +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/types/bbox.py +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/types/download_args.py +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/types/queryables.py +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/types/search_args.py +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/utils/cache.py +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/utils/env.py +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/utils/import_system.py +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/utils/logging.py +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/utils/notebook.py +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/utils/repr.py +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/utils/requests.py +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/utils/rest.py +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag/utils/stac_reader.py +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag.egg-info/dependency_links.txt +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag.egg-info/entry_points.txt +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/eodag.egg-info/top_level.txt +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/get_pypi_latest_version.sh +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/pytest.ini +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/readthedocs.yml +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/requirements-dev.txt +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/requirements-docs.txt +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/requirements-tutorials.txt +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/requirements.txt +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/setup.py +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/tox.ini +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/utils/params_mapping_to_csv.py +0 -0
- {eodag-3.6.0 → eodag-3.8.0}/utils/product_types_information_to_csv.py +0 -0
|
@@ -3,6 +3,130 @@ 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
|
+
|
|
58
|
+
v3.7.0 (2025-07-31)
|
|
59
|
+
===================
|
|
60
|
+
|
|
61
|
+
Bug Fixes
|
|
62
|
+
---------
|
|
63
|
+
|
|
64
|
+
* **core**: Logging issue on entrypoint loading error (`#1728`_, `6f8e6ad`_)
|
|
65
|
+
|
|
66
|
+
* **plugins**: metadata_mapping_from_product in search config (`#1737`_, `cdfe518`_)
|
|
67
|
+
|
|
68
|
+
* **providers**: Allow search by id for CLMS_CORINE with wekeo_main (`#1746`_, `bfe5e71`_)
|
|
69
|
+
|
|
70
|
+
* **providers**: Remove no-more-available theia provider (`#1736`_, `e81013b`_)
|
|
71
|
+
|
|
72
|
+
* **providers**: Update default version for CAMS_GLOBAL_EMISSIONS (`#1738`_, `81e4b90`_)
|
|
73
|
+
|
|
74
|
+
* **server**: Empty instruments mapping (`#1763`_, `11f2318`_)
|
|
75
|
+
|
|
76
|
+
* **utils**: Avoid repeated SSL context creation (`#1758`_, `f93645e`_)
|
|
77
|
+
|
|
78
|
+
Documentation
|
|
79
|
+
-------------
|
|
80
|
+
|
|
81
|
+
* Updated description, overview and ecosystem (`#1734`_, `ea929e4`_)
|
|
82
|
+
|
|
83
|
+
Features
|
|
84
|
+
--------
|
|
85
|
+
|
|
86
|
+
* **plugins**: New search config for assets mapping (`#1711`_, `1281268`_)
|
|
87
|
+
|
|
88
|
+
* **providers**: Add 2 new MSG collections to provider ``eumetsat_ds`` (`#1742`_, `801c52c`_)
|
|
89
|
+
|
|
90
|
+
* **providers**: dedt_lumi search by geometry (`#1710`_, `efccdd0`_)
|
|
91
|
+
|
|
92
|
+
Performance Improvements
|
|
93
|
+
------------------------
|
|
94
|
+
|
|
95
|
+
* **plugins**: Optimize AwsDownload streaming (`#1740`_, `48f0e4c`_)
|
|
96
|
+
|
|
97
|
+
Refactoring
|
|
98
|
+
-----------
|
|
99
|
+
|
|
100
|
+
* Directly import urllib.parse methods (`#1761`_, `e4aca26`_)
|
|
101
|
+
|
|
102
|
+
.. _#1710: https://github.com/CS-SI/eodag/pull/1710
|
|
103
|
+
.. _#1711: https://github.com/CS-SI/eodag/pull/1711
|
|
104
|
+
.. _#1728: https://github.com/CS-SI/eodag/pull/1728
|
|
105
|
+
.. _#1734: https://github.com/CS-SI/eodag/pull/1734
|
|
106
|
+
.. _#1736: https://github.com/CS-SI/eodag/pull/1736
|
|
107
|
+
.. _#1737: https://github.com/CS-SI/eodag/pull/1737
|
|
108
|
+
.. _#1738: https://github.com/CS-SI/eodag/pull/1738
|
|
109
|
+
.. _#1740: https://github.com/CS-SI/eodag/pull/1740
|
|
110
|
+
.. _#1742: https://github.com/CS-SI/eodag/pull/1742
|
|
111
|
+
.. _#1746: https://github.com/CS-SI/eodag/pull/1746
|
|
112
|
+
.. _#1758: https://github.com/CS-SI/eodag/pull/1758
|
|
113
|
+
.. _#1761: https://github.com/CS-SI/eodag/pull/1761
|
|
114
|
+
.. _#1763: https://github.com/CS-SI/eodag/pull/1763
|
|
115
|
+
.. _11f2318: https://github.com/CS-SI/eodag/commit/11f2318a150982504226378110b853ca4aa644ce
|
|
116
|
+
.. _1281268: https://github.com/CS-SI/eodag/commit/1281268507c3a7338be9954b403a20d5156bc527
|
|
117
|
+
.. _48f0e4c: https://github.com/CS-SI/eodag/commit/48f0e4c8c82e80841b7b64bec60a251661a13d12
|
|
118
|
+
.. _6f8e6ad: https://github.com/CS-SI/eodag/commit/6f8e6ad683f786286cfb36e8e22c17cfb2daf125
|
|
119
|
+
.. _801c52c: https://github.com/CS-SI/eodag/commit/801c52c38124e6dfff1a5fdedeb0cbd269fc2478
|
|
120
|
+
.. _81e4b90: https://github.com/CS-SI/eodag/commit/81e4b903c5474894e87e6dcb9366fdfbb152398b
|
|
121
|
+
.. _bfe5e71: https://github.com/CS-SI/eodag/commit/bfe5e712087804d31fe7f057e5efbd1d2863fb36
|
|
122
|
+
.. _cdfe518: https://github.com/CS-SI/eodag/commit/cdfe518f2b392b700994f93d2c2d6cafdb46b81d
|
|
123
|
+
.. _e4aca26: https://github.com/CS-SI/eodag/commit/e4aca2672b156a6eb338e9e9a8277bc2895aa457
|
|
124
|
+
.. _e81013b: https://github.com/CS-SI/eodag/commit/e81013b262342a0621e2018a7d917145faaa2cc7
|
|
125
|
+
.. _ea929e4: https://github.com/CS-SI/eodag/commit/ea929e4339e976752bc61d1d305ad36ff1b78172
|
|
126
|
+
.. _efccdd0: https://github.com/CS-SI/eodag/commit/efccdd00fbd0880344fe294dba0f4790468fd9bc
|
|
127
|
+
.. _f93645e: https://github.com/CS-SI/eodag/commit/f93645ed4f09194d6c7f12a3c65b2ab3a8f9ad5a
|
|
128
|
+
|
|
129
|
+
|
|
6
130
|
v3.6.0 (2025-07-01)
|
|
7
131
|
===================
|
|
8
132
|
|
|
@@ -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
|
|
@@ -86,6 +85,7 @@ Requires-Dist: imageio; extra == "tutorials"
|
|
|
86
85
|
Requires-Dist: rasterio; extra == "tutorials"
|
|
87
86
|
Requires-Dist: netcdf4; extra == "tutorials"
|
|
88
87
|
Requires-Dist: cartopy; extra == "tutorials"
|
|
88
|
+
Requires-Dist: covjsonkit; 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"
|
|
@@ -175,23 +175,21 @@ data provider. The EODAG SDK is structured around three functions:
|
|
|
175
175
|
|
|
176
176
|
* List product types: list of supported products and their description
|
|
177
177
|
|
|
178
|
-
* Search products (by product type or uid)
|
|
178
|
+
* Search products (by product type or uid): searches products according to the search criteria provided
|
|
179
179
|
|
|
180
|
-
* Download products
|
|
180
|
+
* Download products: download product “as is"
|
|
181
181
|
|
|
182
182
|
EODAG is developed in Python. It is structured according to a modular plugin architecture, easily extensible and able to
|
|
183
183
|
integrate new data providers. Three types of plugins compose the tool:
|
|
184
184
|
|
|
185
|
-
* Catalog search plugins, responsible for searching data (OpenSearch,
|
|
185
|
+
* Catalog search plugins, responsible for searching data (STAC, OpenSearch, OData, ...), building paths, retrieving quicklook,
|
|
186
186
|
combining results
|
|
187
187
|
|
|
188
|
-
* Download plugins, allowing to download and retrieve data locally (via
|
|
188
|
+
* Download plugins, allowing to download and retrieve data locally (via HTTP, S3, ...), always with the same directory
|
|
189
189
|
organization
|
|
190
190
|
|
|
191
191
|
* Authentication plugins, which are used to authenticate the user on the external services used (JSON Token, Basic Auth, OAUTH, ...).
|
|
192
192
|
|
|
193
|
-
EODAG can be run as STAC client or server <https://eodag.readthedocs.io/en/latest/stac.html>`_.
|
|
194
|
-
|
|
195
193
|
Read `the documentation <https://eodag.readthedocs.io/en/latest/>`_ for more insights.
|
|
196
194
|
|
|
197
195
|
.. image:: https://raw.githubusercontent.com/CS-SI/eodag/develop/docs/_static/eodag_overview.png
|
|
@@ -318,7 +316,7 @@ An eodag instance can be exposed through a STAC compliant REST api from the comm
|
|
|
318
316
|
|
|
319
317
|
.. code-block:: bash
|
|
320
318
|
|
|
321
|
-
docker run -p 5000:5000 --rm csspace/eodag-server:3.
|
|
319
|
+
docker run -p 5000:5000 --rm csspace/eodag-server:3.8.0
|
|
322
320
|
|
|
323
321
|
You can also browse over your STAC API server using `STAC Browser <https://github.com/radiantearth/stac-browser>`_.
|
|
324
322
|
Simply run:
|
|
@@ -44,23 +44,21 @@ data provider. The EODAG SDK is structured around three functions:
|
|
|
44
44
|
|
|
45
45
|
* List product types: list of supported products and their description
|
|
46
46
|
|
|
47
|
-
* Search products (by product type or uid)
|
|
47
|
+
* Search products (by product type or uid): searches products according to the search criteria provided
|
|
48
48
|
|
|
49
|
-
* Download products
|
|
49
|
+
* Download products: download product “as is"
|
|
50
50
|
|
|
51
51
|
EODAG is developed in Python. It is structured according to a modular plugin architecture, easily extensible and able to
|
|
52
52
|
integrate new data providers. Three types of plugins compose the tool:
|
|
53
53
|
|
|
54
|
-
* Catalog search plugins, responsible for searching data (OpenSearch,
|
|
54
|
+
* Catalog search plugins, responsible for searching data (STAC, OpenSearch, OData, ...), building paths, retrieving quicklook,
|
|
55
55
|
combining results
|
|
56
56
|
|
|
57
|
-
* Download plugins, allowing to download and retrieve data locally (via
|
|
57
|
+
* Download plugins, allowing to download and retrieve data locally (via HTTP, S3, ...), always with the same directory
|
|
58
58
|
organization
|
|
59
59
|
|
|
60
60
|
* Authentication plugins, which are used to authenticate the user on the external services used (JSON Token, Basic Auth, OAUTH, ...).
|
|
61
61
|
|
|
62
|
-
EODAG can be run as STAC client or server <https://eodag.readthedocs.io/en/latest/stac.html>`_.
|
|
63
|
-
|
|
64
62
|
Read `the documentation <https://eodag.readthedocs.io/en/latest/>`_ for more insights.
|
|
65
63
|
|
|
66
64
|
.. image:: https://raw.githubusercontent.com/CS-SI/eodag/develop/docs/_static/eodag_overview.png
|
|
@@ -187,7 +185,7 @@ An eodag instance can be exposed through a STAC compliant REST api from the comm
|
|
|
187
185
|
|
|
188
186
|
.. code-block:: bash
|
|
189
187
|
|
|
190
|
-
docker run -p 5000:5000 --rm csspace/eodag-server:3.
|
|
188
|
+
docker run -p 5000:5000 --rm csspace/eodag-server:3.8.0
|
|
191
189
|
|
|
192
190
|
You can also browse over your STAC API server using `STAC Browser <https://github.com/radiantearth/stac-browser>`_.
|
|
193
191
|
Simply run:
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
apiVersion: v2
|
|
2
|
-
appVersion: 3.
|
|
2
|
+
appVersion: 3.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`,,,,,,,,,,
|