eodag 2.12.1__tar.gz → 3.0.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-2.12.1 → eodag-3.0.0}/.github/workflows/deploy.yml +5 -6
- {eodag-2.12.1 → eodag-3.0.0}/.github/workflows/fetch.yml +10 -11
- eodag-3.0.0/.github/workflows/github-pages.yml +38 -0
- {eodag-2.12.1 → eodag-3.0.0}/.github/workflows/test.yml +45 -32
- eodag-3.0.0/BREAKING_CHANGES.rst +58 -0
- {eodag-2.12.1 → eodag-3.0.0}/CHANGES.rst +424 -146
- {eodag-2.12.1 → eodag-3.0.0}/NOTICE +5 -2
- {eodag-2.12.1/eodag.egg-info → eodag-3.0.0}/PKG-INFO +100 -65
- {eodag-2.12.1 → eodag-3.0.0}/README.rst +34 -20
- eodag-3.0.0/charts/eodag-server/Chart.lock +6 -0
- {eodag-2.12.1 → eodag-3.0.0}/charts/eodag-server/Chart.yaml +3 -3
- {eodag-2.12.1 → eodag-3.0.0}/charts/eodag-server/README.md +5 -2
- eodag-3.0.0/charts/eodag-server/templates/hpa.yaml +48 -0
- {eodag-2.12.1 → eodag-3.0.0}/charts/eodag-server/values.yaml +21 -7
- {eodag-2.12.1 → eodag-3.0.0}/docker/stac-server.dockerfile +1 -1
- {eodag-2.12.1 → eodag-3.0.0}/docs/_static/custom.css +37 -0
- eodag-3.0.0/docs/_static/eodag_logo_160.png +0 -0
- eodag-3.0.0/docs/_static/eodag_logo_160r.png +0 -0
- eodag-3.0.0/docs/_static/params_mapping_extra.csv +106 -0
- eodag-3.0.0/docs/_static/params_mapping_offline_infos.json +1 -0
- eodag-3.0.0/docs/_static/params_mapping_opensearch.csv +47 -0
- {eodag-2.12.1 → eodag-3.0.0}/docs/_static/product_types_information.csv +235 -169
- eodag-3.0.0/docs/_static/stac_browser_example.png +0 -0
- eodag-3.0.0/docs/_static/stac_browser_example_600.png +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/docs/add_provider.rst +63 -52
- {eodag-2.12.1 → eodag-3.0.0}/docs/api_reference/core.rst +4 -9
- {eodag-2.12.1 → eodag-3.0.0}/docs/api_reference/searchresult.rst +2 -0
- {eodag-2.12.1 → eodag-3.0.0}/docs/api_reference/types.rst +3 -0
- eodag-3.0.0/docs/breaking_changes.rst +3 -0
- {eodag-2.12.1 → eodag-3.0.0}/docs/conf.py +58 -25
- {eodag-2.12.1 → eodag-3.0.0}/docs/getting_started_guide/configure.rst +6 -6
- {eodag-2.12.1 → eodag-3.0.0}/docs/getting_started_guide/index.rst +1 -1
- eodag-3.0.0/docs/getting_started_guide/install.rst +67 -0
- {eodag-2.12.1 → eodag-3.0.0}/docs/getting_started_guide/providers.rst +21 -18
- eodag-3.0.0/docs/getting_started_guide/register.rst +245 -0
- {eodag-2.12.1 → eodag-3.0.0}/docs/index.rst +31 -11
- eodag-3.0.0/docs/notebooks/api_user_guide/1_overview.ipynb +923 -0
- {eodag-2.12.1 → eodag-3.0.0}/docs/notebooks/api_user_guide/2_providers_products_available.ipynb +162 -66
- {eodag-2.12.1 → eodag-3.0.0}/docs/notebooks/api_user_guide/3_configuration.ipynb +72 -36
- {eodag-2.12.1 → eodag-3.0.0}/docs/notebooks/api_user_guide/4_search.ipynb +1055 -574
- eodag-3.0.0/docs/notebooks/api_user_guide/5_serialize_deserialize.ipynb +3758 -0
- {eodag-2.12.1 → eodag-3.0.0}/docs/notebooks/api_user_guide/6_crunch.ipynb +1 -1
- eodag-3.0.0/docs/notebooks/api_user_guide/7_download.ipynb +1839 -0
- eodag-3.0.0/docs/notebooks/api_user_guide/8_post_process.ipynb +986 -0
- eodag-3.0.0/docs/notebooks/api_user_guide/data/download_search_results.geojson +1 -0
- {eodag-2.12.1 → eodag-3.0.0}/docs/notebooks/tutos/tuto_burnt_areas_snappy.ipynb +3 -3
- eodag-3.0.0/docs/notebooks/tutos/tuto_cds.ipynb +871 -0
- {eodag-2.12.1 → eodag-3.0.0}/docs/notebooks/tutos/tuto_cop_dem.ipynb +29 -29
- eodag-3.0.0/docs/notebooks/tutos/tuto_ecmwf.ipynb +782 -0
- {eodag-2.12.1 → eodag-3.0.0}/docs/notebooks/tutos/tuto_meteoblue.ipynb +4 -4
- {eodag-2.12.1 → eodag-3.0.0}/docs/notebooks/tutos/tuto_search_location_tile.ipynb +1 -1
- {eodag-2.12.1 → eodag-3.0.0}/docs/notebooks/tutos/tuto_ship_detection.ipynb +2 -2
- eodag-3.0.0/docs/notebooks/tutos/tuto_stac_client.ipynb +24880 -0
- eodag-3.0.0/docs/notebooks/tutos/tuto_wekeo.ipynb +389 -0
- eodag-3.0.0/docs/params_mapping.rst +78 -0
- eodag-3.0.0/docs/plugins.rst +265 -0
- {eodag-2.12.1 → eodag-3.0.0}/docs/plugins_reference/api.rst +2 -3
- eodag-3.0.0/docs/plugins_reference/auth.rst +33 -0
- {eodag-2.12.1 → eodag-3.0.0}/docs/plugins_reference/crunch.rst +5 -5
- {eodag-2.12.1 → eodag-3.0.0}/docs/plugins_reference/download.rst +4 -3
- eodag-3.0.0/docs/plugins_reference/search.rst +28 -0
- {eodag-2.12.1 → eodag-3.0.0}/docs/stac_rest.rst +20 -25
- {eodag-2.12.1 → eodag-3.0.0}/eodag/__init__.py +6 -8
- {eodag-2.12.1 → eodag-3.0.0}/eodag/api/core.py +654 -538
- eodag-3.0.0/eodag/api/product/__init__.py +32 -0
- {eodag-2.12.1 → eodag-3.0.0}/eodag/api/product/_assets.py +59 -16
- {eodag-2.12.1 → eodag-3.0.0}/eodag/api/product/_product.py +100 -93
- {eodag-2.12.1 → eodag-3.0.0}/eodag/api/product/drivers/__init__.py +7 -2
- {eodag-2.12.1 → eodag-3.0.0}/eodag/api/product/drivers/base.py +0 -3
- {eodag-2.12.1 → eodag-3.0.0}/eodag/api/product/metadata_mapping.py +192 -96
- {eodag-2.12.1 → eodag-3.0.0}/eodag/api/search_result.py +69 -10
- {eodag-2.12.1 → eodag-3.0.0}/eodag/cli.py +55 -25
- eodag-3.0.0/eodag/config.py +939 -0
- eodag-3.0.0/eodag/plugins/apis/base.py +55 -0
- {eodag-2.12.1 → eodag-3.0.0}/eodag/plugins/apis/ecmwf.py +36 -25
- {eodag-2.12.1 → eodag-3.0.0}/eodag/plugins/apis/usgs.py +80 -35
- {eodag-2.12.1 → eodag-3.0.0}/eodag/plugins/authentication/aws_auth.py +13 -4
- {eodag-2.12.1 → eodag-3.0.0}/eodag/plugins/authentication/base.py +10 -1
- {eodag-2.12.1 → eodag-3.0.0}/eodag/plugins/authentication/generic.py +2 -2
- {eodag-2.12.1 → eodag-3.0.0}/eodag/plugins/authentication/header.py +31 -6
- {eodag-2.12.1 → eodag-3.0.0}/eodag/plugins/authentication/keycloak.py +17 -84
- {eodag-2.12.1 → eodag-3.0.0}/eodag/plugins/authentication/oauth.py +3 -3
- {eodag-2.12.1 → eodag-3.0.0}/eodag/plugins/authentication/openid_connect.py +268 -49
- {eodag-2.12.1 → eodag-3.0.0}/eodag/plugins/authentication/qsauth.py +4 -1
- {eodag-2.12.1 → eodag-3.0.0}/eodag/plugins/authentication/sas_auth.py +9 -2
- {eodag-2.12.1 → eodag-3.0.0}/eodag/plugins/authentication/token.py +98 -47
- eodag-3.0.0/eodag/plugins/authentication/token_exchange.py +122 -0
- {eodag-2.12.1 → eodag-3.0.0}/eodag/plugins/crunch/base.py +3 -1
- {eodag-2.12.1 → eodag-3.0.0}/eodag/plugins/crunch/filter_date.py +3 -9
- {eodag-2.12.1 → eodag-3.0.0}/eodag/plugins/crunch/filter_latest_intersect.py +0 -3
- {eodag-2.12.1 → eodag-3.0.0}/eodag/plugins/crunch/filter_latest_tpl_name.py +1 -4
- {eodag-2.12.1 → eodag-3.0.0}/eodag/plugins/crunch/filter_overlap.py +4 -8
- {eodag-2.12.1 → eodag-3.0.0}/eodag/plugins/crunch/filter_property.py +5 -11
- {eodag-2.12.1 → eodag-3.0.0}/eodag/plugins/download/aws.py +149 -185
- {eodag-2.12.1 → eodag-3.0.0}/eodag/plugins/download/base.py +88 -97
- {eodag-2.12.1 → eodag-3.0.0}/eodag/plugins/download/creodias_s3.py +1 -1
- {eodag-2.12.1 → eodag-3.0.0}/eodag/plugins/download/http.py +638 -310
- {eodag-2.12.1 → eodag-3.0.0}/eodag/plugins/download/s3rest.py +47 -45
- {eodag-2.12.1 → eodag-3.0.0}/eodag/plugins/manager.py +228 -88
- eodag-3.0.0/eodag/plugins/search/__init__.py +54 -0
- eodag-3.0.0/eodag/plugins/search/base.py +392 -0
- eodag-3.0.0/eodag/plugins/search/build_search_result.py +539 -0
- eodag-3.0.0/eodag/plugins/search/cop_marine.py +441 -0
- {eodag-2.12.1 → eodag-3.0.0}/eodag/plugins/search/creodias_s3.py +25 -20
- {eodag-2.12.1 → eodag-3.0.0}/eodag/plugins/search/csw.py +5 -7
- {eodag-2.12.1 → eodag-3.0.0}/eodag/plugins/search/data_request_search.py +61 -30
- {eodag-2.12.1 → eodag-3.0.0}/eodag/plugins/search/qssearch.py +713 -255
- eodag-3.0.0/eodag/plugins/search/static_stac_search.py +223 -0
- eodag-3.0.0/eodag/resources/ext_product_types.json +1 -0
- {eodag-2.12.1 → eodag-3.0.0}/eodag/resources/product_types.yml +1921 -34
- eodag-3.0.0/eodag/resources/providers.yml +7509 -0
- {eodag-2.12.1 → eodag-3.0.0}/eodag/resources/stac.yml +50 -216
- {eodag-2.12.1 → eodag-3.0.0}/eodag/resources/stac_api.yml +71 -25
- {eodag-2.12.1 → eodag-3.0.0}/eodag/resources/stac_provider.yml +5 -0
- {eodag-2.12.1 → eodag-3.0.0}/eodag/resources/user_conf_template.yml +89 -32
- {eodag-2.12.1/eodag/api/product → eodag-3.0.0/eodag/rest}/__init__.py +5 -3
- eodag-3.0.0/eodag/rest/cache.py +70 -0
- eodag-3.0.0/eodag/rest/config.py +68 -0
- eodag-3.0.0/eodag/rest/constants.py +26 -0
- eodag-3.0.0/eodag/rest/core.py +735 -0
- eodag-3.0.0/eodag/rest/errors.py +178 -0
- eodag-3.0.0/eodag/rest/server.py +573 -0
- eodag-3.0.0/eodag/rest/stac.py +1004 -0
- eodag-3.0.0/eodag/rest/types/collections_search.py +44 -0
- eodag-3.0.0/eodag/rest/types/eodag_search.py +380 -0
- eodag-3.0.0/eodag/rest/types/queryables.py +164 -0
- eodag-3.0.0/eodag/rest/types/stac_search.py +273 -0
- eodag-3.0.0/eodag/rest/utils/__init__.py +216 -0
- eodag-3.0.0/eodag/rest/utils/cql_evaluate.py +119 -0
- eodag-3.0.0/eodag/rest/utils/rfc3339.py +64 -0
- {eodag-2.12.1 → eodag-3.0.0}/eodag/types/__init__.py +106 -10
- {eodag-2.12.1 → eodag-3.0.0}/eodag/types/bbox.py +15 -14
- eodag-3.0.0/eodag/types/download_args.py +40 -0
- eodag-3.0.0/eodag/types/search_args.py +133 -0
- eodag-3.0.0/eodag/types/whoosh.py +79 -0
- {eodag-2.12.1 → eodag-3.0.0}/eodag/utils/__init__.py +110 -91
- {eodag-2.12.1 → eodag-3.0.0}/eodag/utils/constraints.py +37 -45
- {eodag-2.12.1 → eodag-3.0.0}/eodag/utils/exceptions.py +39 -22
- {eodag-2.12.1 → eodag-3.0.0}/eodag/utils/import_system.py +0 -4
- eodag-3.0.0/eodag/utils/logging.py +120 -0
- {eodag-2.12.1 → eodag-3.0.0}/eodag/utils/notebook.py +4 -4
- eodag-3.0.0/eodag/utils/repr.py +113 -0
- eodag-3.0.0/eodag/utils/requests.py +128 -0
- eodag-3.0.0/eodag/utils/rest.py +100 -0
- {eodag-2.12.1 → eodag-3.0.0}/eodag/utils/stac_reader.py +93 -21
- {eodag-2.12.1 → eodag-3.0.0/eodag.egg-info}/PKG-INFO +100 -65
- {eodag-2.12.1 → eodag-3.0.0}/eodag.egg-info/SOURCES.txt +25 -5
- {eodag-2.12.1 → eodag-3.0.0}/eodag.egg-info/entry_points.txt +7 -5
- eodag-3.0.0/eodag.egg-info/requires.txt +106 -0
- {eodag-2.12.1 → eodag-3.0.0}/pyproject.toml +12 -7
- {eodag-2.12.1 → eodag-3.0.0}/setup.cfg +71 -48
- {eodag-2.12.1 → eodag-3.0.0}/tox.ini +3 -3
- {eodag-2.12.1 → eodag-3.0.0}/utils/params_mapping_to_csv.py +0 -3
- {eodag-2.12.1 → eodag-3.0.0}/utils/product_types_information_to_csv.py +0 -1
- eodag-2.12.1/charts/eodag-server/Chart.lock +0 -6
- eodag-2.12.1/docs/_static/eodag_logo.png +0 -0
- eodag-2.12.1/docs/_static/params_mapping_extra.csv +0 -17
- eodag-2.12.1/docs/_static/params_mapping_offline_infos.json +0 -1
- eodag-2.12.1/docs/_static/params_mapping_opensearch.csv +0 -47
- eodag-2.12.1/docs/_static/product_types.js +0 -213
- eodag-2.12.1/docs/_static/stac_browser_example.png +0 -0
- eodag-2.12.1/docs/_static/stac_browser_example_600.png +0 -0
- eodag-2.12.1/docs/getting_started_guide/install.rst +0 -43
- eodag-2.12.1/docs/getting_started_guide/register.rst +0 -134
- eodag-2.12.1/docs/notebooks/api_user_guide/1_overview.ipynb +0 -1082
- eodag-2.12.1/docs/notebooks/api_user_guide/5_serialize_deserialize.ipynb +0 -311
- eodag-2.12.1/docs/notebooks/api_user_guide/7_download.ipynb +0 -1588
- eodag-2.12.1/docs/notebooks/api_user_guide/8_post_process.ipynb +0 -931
- eodag-2.12.1/docs/notebooks/api_user_guide/data/download_search_results.geojson +0 -1
- eodag-2.12.1/docs/notebooks/tutos/tuto_cds.ipynb +0 -688
- eodag-2.12.1/docs/notebooks/tutos/tuto_ecmwf.ipynb +0 -748
- eodag-2.12.1/docs/notebooks/tutos/tuto_stac_client.ipynb +0 -1175
- eodag-2.12.1/docs/notebooks/tutos/tuto_wekeo.ipynb +0 -277
- eodag-2.12.1/docs/plugins.rst +0 -194
- eodag-2.12.1/docs/plugins_reference/auth.rst +0 -24
- eodag-2.12.1/docs/plugins_reference/search.rst +0 -24
- eodag-2.12.1/eodag/config.py +0 -664
- eodag-2.12.1/eodag/plugins/apis/base.py +0 -212
- eodag-2.12.1/eodag/plugins/apis/cds.py +0 -540
- eodag-2.12.1/eodag/plugins/search/__init__.py +0 -18
- eodag-2.12.1/eodag/plugins/search/base.py +0 -183
- eodag-2.12.1/eodag/plugins/search/build_search_result.py +0 -194
- eodag-2.12.1/eodag/plugins/search/static_stac_search.py +0 -157
- eodag-2.12.1/eodag/resources/ext_product_types.json +0 -1
- eodag-2.12.1/eodag/resources/providers.yml +0 -7073
- eodag-2.12.1/eodag/rest/__init__.py +0 -18
- eodag-2.12.1/eodag/rest/server.py +0 -740
- eodag-2.12.1/eodag/rest/stac.py +0 -1398
- eodag-2.12.1/eodag/rest/types/eodag_search.py +0 -189
- eodag-2.12.1/eodag/rest/types/stac_queryables.py +0 -134
- eodag-2.12.1/eodag/rest/utils.py +0 -1133
- eodag-2.12.1/eodag/types/search_args.py +0 -83
- eodag-2.12.1/eodag/utils/logging.py +0 -163
- eodag-2.12.1/eodag.egg-info/requires.txt +0 -75
- {eodag-2.12.1 → eodag-3.0.0}/.dockerignore +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/.editorconfig +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/.gitattributes +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/.github/ISSUE_TEMPLATE/bug_report.md +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/.github/ISSUE_TEMPLATE/feature_request.md +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/.github/pull_request_template.md +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/.gitignore +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/.pre-commit-config.yaml +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/CODE_OF_CONDUCT.md +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/CONTRIBUTING.rst +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/LICENSE +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/MANIFEST.in +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/charts/eodag-server/templates/NOTES.txt +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/charts/eodag-server/templates/_helpers.tpl +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/charts/eodag-server/templates/configmap.yaml +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/charts/eodag-server/templates/deployment.yaml +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/charts/eodag-server/templates/extra-list.yaml +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/charts/eodag-server/templates/ingress.yaml +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/charts/eodag-server/templates/pv.yaml +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/charts/eodag-server/templates/pvc.yaml +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/charts/eodag-server/templates/secret.yaml +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/charts/eodag-server/templates/service.yaml +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/charts/eodag-server/templates/serviceaccount.yaml +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/docker/run-stac-server.sh +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/docker/stac-browser.dockerfile +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/docker-compose.yml +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/docs/Makefile +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/docs/_static/download_methods.png +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/docs/_static/eodag_advanced_calls_graph.svg +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/docs/_static/eodag_bycs.png +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/docs/_static/eodag_fetch_product_types.png +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/docs/_static/eodag_main_calls_graph.svg +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/docs/_static/eodag_overview.png +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/docs/_static/eodag_stac_client.png +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/docs/_static/eodag_stac_server.png +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/docs/_static/favicon-32x32.png +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/docs/_static/progress_1.png +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/docs/_static/progress_1_none.png +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/docs/_static/progress_2.png +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/docs/_static/progress_2_none.png +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/docs/api_reference/call_graphs.rst +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/docs/api_reference/eoproduct.rst +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/docs/api_reference/exceptions.rst +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/docs/api_reference/index.rst +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/docs/api_reference/utils.rst +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/docs/api_user_guide.rst +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/docs/changelog.rst +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/docs/cli_user_guide.rst +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/docs/contribute.rst +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/docs/getting_started_guide/overview.rst +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/docs/getting_started_guide/product_storage_status.rst +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/docs/getting_started_guide/product_types.rst +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/docs/getting_started_guide/side_projects.rst +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/docs/make.bat +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/docs/notebooks/api_user_guide/data/crunch_search_results.geojson +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/docs/notebooks/intro_notebooks.ipynb +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/docs/notebooks/tutos/auxdata/Gulf_of_Trieste_seamask_UTM33.cpg +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/docs/notebooks/tutos/auxdata/Gulf_of_Trieste_seamask_UTM33.dbf +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/docs/notebooks/tutos/auxdata/Gulf_of_Trieste_seamask_UTM33.prj +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/docs/notebooks/tutos/auxdata/Gulf_of_Trieste_seamask_UTM33.qix +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/docs/notebooks/tutos/auxdata/Gulf_of_Trieste_seamask_UTM33.qpj +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/docs/notebooks/tutos/auxdata/Gulf_of_Trieste_seamask_UTM33.shp +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/docs/notebooks/tutos/auxdata/Gulf_of_Trieste_seamask_UTM33.shx +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/docs/notebooks/tutos/auxdata/sentinel2_tiling_grid_centroids.zip +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/docs/stac.rst +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/docs/tutos.rst +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/eodag/api/__init__.py +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/eodag/crunch.py +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/eodag/plugins/__init__.py +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/eodag/plugins/apis/__init__.py +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/eodag/plugins/authentication/__init__.py +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/eodag/plugins/base.py +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/eodag/plugins/crunch/__init__.py +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/eodag/plugins/download/__init__.py +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/eodag/py.typed +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/eodag/resources/locations_conf_template.yml +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/eodag/resources/shp/ne_110m_admin_0_map_units.VERSION.txt +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/eodag/resources/shp/ne_110m_admin_0_map_units.cpg +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/eodag/resources/shp/ne_110m_admin_0_map_units.dbf +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/eodag/resources/shp/ne_110m_admin_0_map_units.prj +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/eodag/resources/shp/ne_110m_admin_0_map_units.shp +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/eodag/resources/shp/ne_110m_admin_0_map_units.shx +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/eodag/rest/server.wsgi +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/eodag/rest/templates/README +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/eodag/rest/types/__init__.py +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/eodag/types/queryables.py +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/eodag.egg-info/dependency_links.txt +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/eodag.egg-info/top_level.txt +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/get_pypi_latest_version.sh +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/pytest.ini +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/readthedocs.yml +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/requirements-dev.txt +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/requirements-docs.txt +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/requirements-tutorials.txt +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/requirements.txt +0 -0
- {eodag-2.12.1 → eodag-3.0.0}/setup.py +0 -0
|
@@ -13,13 +13,12 @@ jobs:
|
|
|
13
13
|
|
|
14
14
|
steps:
|
|
15
15
|
- name: Checkout source
|
|
16
|
-
uses: actions/checkout@
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
git fetch --depth=1 origin +refs/tags/*:refs/tags/*
|
|
16
|
+
uses: actions/checkout@v4
|
|
17
|
+
with:
|
|
18
|
+
# Get history and tags for SCM versioning to work
|
|
19
|
+
fetch-depth: 0
|
|
21
20
|
- name: Set up Python 3.8
|
|
22
|
-
uses: actions/setup-python@
|
|
21
|
+
uses: actions/setup-python@v5
|
|
23
22
|
with:
|
|
24
23
|
python-version: "3.8"
|
|
25
24
|
|
|
@@ -3,7 +3,7 @@ name: Fetch product types
|
|
|
3
3
|
on:
|
|
4
4
|
workflow_dispatch:
|
|
5
5
|
push:
|
|
6
|
-
branches: [
|
|
6
|
+
branches: [develop]
|
|
7
7
|
schedule:
|
|
8
8
|
- cron: "0 6 * * *"
|
|
9
9
|
|
|
@@ -13,13 +13,12 @@ jobs:
|
|
|
13
13
|
runs-on: ubuntu-latest
|
|
14
14
|
steps:
|
|
15
15
|
- name: Checkout the repo
|
|
16
|
-
uses: actions/checkout@
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
git fetch --depth=1 origin +refs/tags/*:refs/tags/*
|
|
16
|
+
uses: actions/checkout@v4
|
|
17
|
+
with:
|
|
18
|
+
# Get history and tags for SCM versioning to work
|
|
19
|
+
fetch-depth: 0
|
|
21
20
|
- name: Set up Python 3.8
|
|
22
|
-
uses: actions/setup-python@
|
|
21
|
+
uses: actions/setup-python@v5
|
|
23
22
|
with:
|
|
24
23
|
python-version: "3.8"
|
|
25
24
|
- name: Update pip
|
|
@@ -33,13 +32,13 @@ jobs:
|
|
|
33
32
|
shell: bash
|
|
34
33
|
run: echo "WEEK=$(date +'%V')" >> $GITHUB_OUTPUT
|
|
35
34
|
- name: Pip cache
|
|
36
|
-
uses: actions/cache@
|
|
35
|
+
uses: actions/cache@v4
|
|
37
36
|
with:
|
|
38
37
|
path: ${{ steps.pip-cache.outputs.DIR }}
|
|
39
38
|
key: ${{ runner.os }}-pip-${{ steps.get-week.outputs.WEEK }}-${{ hashFiles('setup.cfg') }}
|
|
40
39
|
- name: Install eodag
|
|
41
40
|
run: |
|
|
42
|
-
python -m pip install .
|
|
41
|
+
python -m pip install ".[all-providers]"
|
|
43
42
|
- name: Fetch and update external product types reference
|
|
44
43
|
run: |
|
|
45
44
|
export JSON_OUTPUT_FILE="eodag/resources/ext_product_types.json"
|
|
@@ -59,7 +58,7 @@ jobs:
|
|
|
59
58
|
echo "commit [${COMMIT_SHA}](${COMMIT_URL})" >> $GITHUB_STEP_SUMMARY
|
|
60
59
|
echo '```diff' >> $GITHUB_STEP_SUMMARY
|
|
61
60
|
git show --name-only --format=tformat: >> $GITHUB_STEP_SUMMARY
|
|
62
|
-
(diff <(curl ${JSON_REF_FILE}
|
|
61
|
+
(diff <(curl ${JSON_REF_FILE}) <(cat ${JSON_OUTPUT_FILE}) || true) >> $GITHUB_STEP_SUMMARY
|
|
63
62
|
echo '```' >> $GITHUB_STEP_SUMMARY
|
|
64
63
|
# truncated PR body (too long causes error)
|
|
65
64
|
full_update_summary=$(cat $GITHUB_STEP_SUMMARY)
|
|
@@ -67,7 +66,7 @@ jobs:
|
|
|
67
66
|
echo "${full_update_summary:0:65536}" >> $GITHUB_ENV
|
|
68
67
|
echo 'EOF' >> $GITHUB_ENV
|
|
69
68
|
- name: Create Pull Request
|
|
70
|
-
uses: peter-evans/create-pull-request@
|
|
69
|
+
uses: peter-evans/create-pull-request@v6
|
|
71
70
|
with:
|
|
72
71
|
branch: external-product-types-ref-update
|
|
73
72
|
delete-branch: true
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
name: Deploy static content to GitHub Pages
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
workflow_dispatch:
|
|
5
|
+
push:
|
|
6
|
+
branches: [develop]
|
|
7
|
+
|
|
8
|
+
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
|
|
9
|
+
permissions:
|
|
10
|
+
contents: read
|
|
11
|
+
pages: write
|
|
12
|
+
id-token: write
|
|
13
|
+
|
|
14
|
+
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
|
|
15
|
+
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
|
|
16
|
+
concurrency:
|
|
17
|
+
group: "pages"
|
|
18
|
+
cancel-in-progress: false
|
|
19
|
+
|
|
20
|
+
jobs:
|
|
21
|
+
deploy:
|
|
22
|
+
environment:
|
|
23
|
+
name: github-pages
|
|
24
|
+
url: ${{ steps.deployment.outputs.page_url }}
|
|
25
|
+
runs-on: ubuntu-latest
|
|
26
|
+
steps:
|
|
27
|
+
- name: Checkout
|
|
28
|
+
uses: actions/checkout@v4
|
|
29
|
+
- name: Setup Pages
|
|
30
|
+
uses: actions/configure-pages@v5
|
|
31
|
+
- name: Upload artifact
|
|
32
|
+
uses: actions/upload-pages-artifact@v3
|
|
33
|
+
with:
|
|
34
|
+
# Upload entire repository
|
|
35
|
+
path: '.'
|
|
36
|
+
- name: Deploy to GitHub Pages
|
|
37
|
+
id: deployment
|
|
38
|
+
uses: actions/deploy-pages@v4
|
|
@@ -11,21 +11,37 @@ on:
|
|
|
11
11
|
|
|
12
12
|
jobs:
|
|
13
13
|
lint:
|
|
14
|
-
name: Linting (pre-commit)
|
|
14
|
+
name: Linting (pre-commit and mypy)
|
|
15
15
|
runs-on: ubuntu-latest
|
|
16
16
|
steps:
|
|
17
17
|
- name: Checkout the repo
|
|
18
|
-
uses: actions/checkout@
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
git fetch --depth=1 origin +refs/tags/*:refs/tags/*
|
|
18
|
+
uses: actions/checkout@v4
|
|
19
|
+
with:
|
|
20
|
+
# Get history and tags for SCM versioning to work
|
|
21
|
+
fetch-depth: 0
|
|
23
22
|
- name: Set up Python 3.8
|
|
24
|
-
uses: actions/setup-python@
|
|
23
|
+
uses: actions/setup-python@v5
|
|
25
24
|
with:
|
|
26
25
|
python-version: "3.8"
|
|
27
|
-
- name:
|
|
28
|
-
|
|
26
|
+
- name: Update pip
|
|
27
|
+
run: python -m pip install --upgrade pip
|
|
28
|
+
- name: Get pip cache dir
|
|
29
|
+
id: pip-cache
|
|
30
|
+
shell: bash
|
|
31
|
+
run: echo "DIR=$(pip cache dir)" >> $GITHUB_OUTPUT
|
|
32
|
+
- name: Get current week number
|
|
33
|
+
id: get-week
|
|
34
|
+
shell: bash
|
|
35
|
+
run: echo "WEEK=$(date +'%V')" >> $GITHUB_OUTPUT
|
|
36
|
+
- name: Pip cache
|
|
37
|
+
uses: actions/cache@v4
|
|
38
|
+
with:
|
|
39
|
+
path: ${{ steps.pip-cache.outputs.DIR }}
|
|
40
|
+
key: ${{ runner.os }}-pip-${{ steps.get-week.outputs.WEEK }}-${{ hashFiles('setup.cfg') }}
|
|
41
|
+
- name: Install tox
|
|
42
|
+
run: python -m pip install tox
|
|
43
|
+
- name: Run linters with tox
|
|
44
|
+
run: python -m tox -e linters
|
|
29
45
|
|
|
30
46
|
tests:
|
|
31
47
|
name: Test it!
|
|
@@ -36,13 +52,12 @@ jobs:
|
|
|
36
52
|
os: [ubuntu-latest, windows-latest]
|
|
37
53
|
steps:
|
|
38
54
|
- name: Checkout the repo
|
|
39
|
-
uses: actions/checkout@
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
git fetch --depth=1 origin +refs/tags/*:refs/tags/*
|
|
55
|
+
uses: actions/checkout@v4
|
|
56
|
+
with:
|
|
57
|
+
# Get history and tags for SCM versioning to work
|
|
58
|
+
fetch-depth: 0
|
|
44
59
|
- name: Set up Python ${{ matrix.python-version }} on ${{ matrix.os }}
|
|
45
|
-
uses: actions/setup-python@
|
|
60
|
+
uses: actions/setup-python@v5
|
|
46
61
|
with:
|
|
47
62
|
python-version: ${{ matrix.python-version }}
|
|
48
63
|
- name: Update pip
|
|
@@ -56,7 +71,7 @@ jobs:
|
|
|
56
71
|
shell: bash
|
|
57
72
|
run: echo "WEEK=$(date +'%V')" >> $GITHUB_OUTPUT
|
|
58
73
|
- name: Pip cache
|
|
59
|
-
uses: actions/cache@
|
|
74
|
+
uses: actions/cache@v4
|
|
60
75
|
with:
|
|
61
76
|
path: ${{ steps.pip-cache.outputs.DIR }}
|
|
62
77
|
key: ${{ runner.os }}-pip-${{ matrix.python-version }}-${{ steps.get-week.outputs.WEEK }}-${{ hashFiles('setup.cfg') }}
|
|
@@ -66,7 +81,7 @@ jobs:
|
|
|
66
81
|
run: tox
|
|
67
82
|
- name: Upload Unit Test Results
|
|
68
83
|
if: always()
|
|
69
|
-
uses: actions/upload-artifact@
|
|
84
|
+
uses: actions/upload-artifact@v4
|
|
70
85
|
with:
|
|
71
86
|
name: unit-test-results-python${{ matrix.python-version }}-${{ matrix.os }}
|
|
72
87
|
path: |
|
|
@@ -81,7 +96,7 @@ jobs:
|
|
|
81
96
|
|
|
82
97
|
steps:
|
|
83
98
|
- name: Download Artifacts
|
|
84
|
-
uses: actions/download-artifact@
|
|
99
|
+
uses: actions/download-artifact@v4
|
|
85
100
|
with:
|
|
86
101
|
path: artifacts
|
|
87
102
|
|
|
@@ -156,13 +171,12 @@ jobs:
|
|
|
156
171
|
runs-on: ubuntu-latest
|
|
157
172
|
steps:
|
|
158
173
|
- name: Checkout the repo
|
|
159
|
-
uses: actions/checkout@
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
git fetch --depth=1 origin +refs/tags/*:refs/tags/*
|
|
174
|
+
uses: actions/checkout@v4
|
|
175
|
+
with:
|
|
176
|
+
# Get history and tags for SCM versioning to work
|
|
177
|
+
fetch-depth: 0
|
|
164
178
|
- name: Set up Python 3.8
|
|
165
|
-
uses: actions/setup-python@
|
|
179
|
+
uses: actions/setup-python@v5
|
|
166
180
|
with:
|
|
167
181
|
python-version: "3.8"
|
|
168
182
|
- name: Update pip
|
|
@@ -176,7 +190,7 @@ jobs:
|
|
|
176
190
|
shell: bash
|
|
177
191
|
run: echo "WEEK=$(date +'%V')" >> $GITHUB_OUTPUT
|
|
178
192
|
- name: Pip cache
|
|
179
|
-
uses: actions/cache@
|
|
193
|
+
uses: actions/cache@v4
|
|
180
194
|
with:
|
|
181
195
|
path: ${{ steps.pip-cache.outputs.DIR }}
|
|
182
196
|
key: ${{ runner.os }}-pip-${{ steps.get-week.outputs.WEEK }}-${{ hashFiles('setup.cfg') }}
|
|
@@ -195,13 +209,12 @@ jobs:
|
|
|
195
209
|
runs-on: ubuntu-latest
|
|
196
210
|
steps:
|
|
197
211
|
- name: Checkout the repo
|
|
198
|
-
uses: actions/checkout@
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
git fetch --depth=1 origin +refs/tags/*:refs/tags/*
|
|
212
|
+
uses: actions/checkout@v4
|
|
213
|
+
with:
|
|
214
|
+
# Get history and tags for SCM versioning to work
|
|
215
|
+
fetch-depth: 0
|
|
203
216
|
- name: Set up Python 3.8
|
|
204
|
-
uses: actions/setup-python@
|
|
217
|
+
uses: actions/setup-python@v5
|
|
205
218
|
with:
|
|
206
219
|
python-version: "3.8"
|
|
207
220
|
- name: Update pip
|
|
@@ -215,7 +228,7 @@ jobs:
|
|
|
215
228
|
shell: bash
|
|
216
229
|
run: echo "WEEK=$(date +'%V')" >> $GITHUB_OUTPUT
|
|
217
230
|
- name: Pip cache
|
|
218
|
-
uses: actions/cache@
|
|
231
|
+
uses: actions/cache@v4
|
|
219
232
|
with:
|
|
220
233
|
path: ${{ steps.pip-cache.outputs.DIR }}
|
|
221
234
|
key: ${{ runner.os }}-pip-${{ steps.get-week.outputs.WEEK }}-${{ hashFiles('setup.cfg') }}
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
Breaking changes
|
|
2
|
+
----------------
|
|
3
|
+
|
|
4
|
+
Full changelog available in `Release history <changelog.html>`_.
|
|
5
|
+
|
|
6
|
+
3.0.0b3
|
|
7
|
+
+++++++
|
|
8
|
+
|
|
9
|
+
* :meth:`~eodag.api.core.EODataAccessGateway.download` / :class:`~eodag.types.download_args.DownloadConf` parameters
|
|
10
|
+
``outputs_prefix`` and ``outputs_extension`` renamed to ``output_dir`` and ``output_extension``.
|
|
11
|
+
|
|
12
|
+
3.0.0b1
|
|
13
|
+
+++++++
|
|
14
|
+
|
|
15
|
+
* :meth:`~eodag.api.core.EODataAccessGateway.search` method now returns only a
|
|
16
|
+
:class:`~eodag.api.search_result.SearchResult` instead of a 2 values tuple. It can optionally store the estimated
|
|
17
|
+
total number of products in ``SearchResult.number_matched`` if the method is called with ``count=True``
|
|
18
|
+
(``False`` by default).
|
|
19
|
+
|
|
20
|
+
* **eodag < 3.0.0b1 syntax:**
|
|
21
|
+
|
|
22
|
+
.. code-block:: python
|
|
23
|
+
|
|
24
|
+
search_results, number_matched = dag.search(productType="S2_MSI_L1C")
|
|
25
|
+
|
|
26
|
+
| Traceback (most recent call last):
|
|
27
|
+
| File "<stdin>", line 1, in <module>
|
|
28
|
+
| ValueError: too many values to unpack (expected 2)
|
|
29
|
+
|
|
30
|
+
* **eodag >= 3.0.0b1 syntax:**
|
|
31
|
+
|
|
32
|
+
.. code-block:: python
|
|
33
|
+
|
|
34
|
+
search_results = dag.search(productType="S2_MSI_L1C")
|
|
35
|
+
|
|
36
|
+
* Packaging refactoring and new `optional dependencies
|
|
37
|
+
<getting_started_guide/install.html#optional-dependencies>`_. EODAG default
|
|
38
|
+
installs with a minimal set of dependencies.
|
|
39
|
+
New sets of extra requirements are: ``eodag[all]``, ``eodag[all-providers]``, ``eodag[ecmwf]``, ``eodag[usgs]``,
|
|
40
|
+
``eodag[csw]``, ``eodag[server]``, ``eodag[stubs]``. Previous existing sets of extra requirements are also kept:
|
|
41
|
+
``eodag[notebook]``, ``eodag[tutorials]``, ``eodag[dev]``, ``eodag[docs]``.
|
|
42
|
+
|
|
43
|
+
.. code-block:: sh
|
|
44
|
+
|
|
45
|
+
# install eodag with all available providers supported
|
|
46
|
+
pip install "eodag[all-providers]"
|
|
47
|
+
|
|
48
|
+
2.0b1
|
|
49
|
+
+++++
|
|
50
|
+
|
|
51
|
+
- STAC API compliant REST server
|
|
52
|
+
- Common configuration for STAC providers
|
|
53
|
+
|
|
54
|
+
1.0
|
|
55
|
+
+++
|
|
56
|
+
|
|
57
|
+
- Adds product type search functionality
|
|
58
|
+
- The cli arguments are now fully compliant with opensearch geo(bbox)/time extensions
|