eodag 4.0.0a4__tar.gz → 4.0.0b1__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.
Files changed (232) hide show
  1. eodag-4.0.0b1/.github/workflows/package.yml +57 -0
  2. {eodag-4.0.0a4 → eodag-4.0.0b1}/.github/workflows/test.yml +3 -3
  3. {eodag-4.0.0a4 → eodag-4.0.0b1}/.gitignore +1 -0
  4. {eodag-4.0.0a4 → eodag-4.0.0b1}/.pre-commit-config.yaml +5 -0
  5. {eodag-4.0.0a4 → eodag-4.0.0b1}/CHANGES.rst +176 -2
  6. {eodag-4.0.0a4 → eodag-4.0.0b1}/CONTRIBUTING.rst +1 -1
  7. eodag-4.0.0b1/Dockerfile +41 -0
  8. {eodag-4.0.0a4 → eodag-4.0.0b1}/NOTICE +0 -3
  9. {eodag-4.0.0a4/eodag.egg-info → eodag-4.0.0b1}/PKG-INFO +7 -13
  10. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/_static/collections_information.csv +6 -0
  11. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/_static/params_mapping_extra.csv +3 -2
  12. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/_static/params_mapping_offline_infos.json +1 -1
  13. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/_static/params_mapping_opensearch.csv +1 -1
  14. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/api_reference/eoproduct.rst +1 -0
  15. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/notebooks/api_user_guide/3_search.ipynb +101 -98
  16. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/notebooks/api_user_guide/4_queryables.ipynb +482 -1275
  17. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/notebooks/api_user_guide/5_serialize_deserialize.ipynb +1099 -975
  18. eodag-4.0.0b1/docs/notebooks/api_user_guide/7_download.ipynb +7067 -0
  19. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/notebooks/api_user_guide/8_post_process.ipynb +11375 -139
  20. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/notebooks/tutos/tuto_cds.ipynb +310 -323
  21. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/api/collection.py +65 -1
  22. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/api/core.py +65 -19
  23. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/api/product/_assets.py +1 -1
  24. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/api/product/_product.py +133 -18
  25. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/api/product/drivers/__init__.py +3 -1
  26. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/api/product/drivers/base.py +3 -1
  27. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/api/product/drivers/generic.py +9 -5
  28. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/api/product/drivers/sentinel1.py +14 -9
  29. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/api/product/drivers/sentinel2.py +14 -7
  30. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/api/product/metadata_mapping.py +5 -2
  31. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/api/provider.py +1 -0
  32. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/api/search_result.py +4 -1
  33. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/cli.py +17 -8
  34. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/config.py +22 -4
  35. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/plugins/apis/ecmwf.py +3 -24
  36. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/plugins/apis/usgs.py +3 -24
  37. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/plugins/download/aws.py +85 -44
  38. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/plugins/download/base.py +117 -41
  39. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/plugins/download/http.py +88 -65
  40. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/plugins/search/base.py +8 -3
  41. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/plugins/search/build_search_result.py +108 -120
  42. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/plugins/search/cop_marine.py +3 -1
  43. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/plugins/search/qssearch.py +7 -6
  44. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/resources/collections.yml +255 -0
  45. eodag-4.0.0b1/eodag/resources/ext_collections.json +1 -0
  46. eodag-4.0.0b1/eodag/resources/ext_product_types.json +1 -0
  47. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/resources/providers.yml +62 -25
  48. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/resources/user_conf_template.yml +6 -0
  49. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/types/__init__.py +22 -16
  50. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/types/download_args.py +3 -1
  51. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/types/queryables.py +125 -55
  52. eodag-4.0.0b1/eodag/types/stac_extensions.py +408 -0
  53. eodag-4.0.0b1/eodag/types/stac_metadata.py +312 -0
  54. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/utils/__init__.py +42 -4
  55. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/utils/dates.py +202 -2
  56. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/utils/s3.py +4 -4
  57. {eodag-4.0.0a4 → eodag-4.0.0b1/eodag.egg-info}/PKG-INFO +7 -13
  58. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag.egg-info/SOURCES.txt +4 -0
  59. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag.egg-info/entry_points.txt +1 -1
  60. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag.egg-info/requires.txt +5 -13
  61. {eodag-4.0.0a4 → eodag-4.0.0b1}/pyproject.toml +2 -1
  62. {eodag-4.0.0a4 → eodag-4.0.0b1}/setup.cfg +7 -13
  63. {eodag-4.0.0a4 → eodag-4.0.0b1}/tox.ini +3 -2
  64. eodag-4.0.0a4/docs/notebooks/api_user_guide/7_download.ipynb +0 -6527
  65. eodag-4.0.0a4/eodag/resources/ext_collections.json +0 -1
  66. eodag-4.0.0a4/eodag/resources/ext_product_types.json +0 -1
  67. {eodag-4.0.0a4 → eodag-4.0.0b1}/.dockerignore +0 -0
  68. {eodag-4.0.0a4 → eodag-4.0.0b1}/.editorconfig +0 -0
  69. {eodag-4.0.0a4 → eodag-4.0.0b1}/.gitattributes +0 -0
  70. {eodag-4.0.0a4 → eodag-4.0.0b1}/.github/ISSUE_TEMPLATE/bug_report.md +0 -0
  71. {eodag-4.0.0a4 → eodag-4.0.0b1}/.github/ISSUE_TEMPLATE/feature_request.md +0 -0
  72. {eodag-4.0.0a4 → eodag-4.0.0b1}/.github/pull_request_template.md +0 -0
  73. {eodag-4.0.0a4 → eodag-4.0.0b1}/.github/workflows/changelog.yml +0 -0
  74. {eodag-4.0.0a4 → eodag-4.0.0b1}/.github/workflows/deploy.yml +0 -0
  75. {eodag-4.0.0a4 → eodag-4.0.0b1}/.github/workflows/fetch.yml +0 -0
  76. {eodag-4.0.0a4 → eodag-4.0.0b1}/.github/workflows/github-pages.yml +0 -0
  77. {eodag-4.0.0a4 → eodag-4.0.0b1}/.github/workflows/lint-pr-title.yml +0 -0
  78. {eodag-4.0.0a4 → eodag-4.0.0b1}/.github/workflows/publish.yml +0 -0
  79. {eodag-4.0.0a4 → eodag-4.0.0b1}/BREAKING_CHANGES.rst +0 -0
  80. {eodag-4.0.0a4 → eodag-4.0.0b1}/CODE_OF_CONDUCT.md +0 -0
  81. {eodag-4.0.0a4 → eodag-4.0.0b1}/LICENSE +0 -0
  82. {eodag-4.0.0a4 → eodag-4.0.0b1}/MANIFEST.in +0 -0
  83. {eodag-4.0.0a4 → eodag-4.0.0b1}/README.rst +0 -0
  84. {eodag-4.0.0a4 → eodag-4.0.0b1}/docker-compose.yml +0 -0
  85. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/Makefile +0 -0
  86. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/_static/custom.css +0 -0
  87. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/_static/download_methods.png +0 -0
  88. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/_static/eodag_advanced_calls_graph.svg +0 -0
  89. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/_static/eodag_bycs.png +0 -0
  90. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/_static/eodag_fetch_collections.png +0 -0
  91. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/_static/eodag_logo_160.png +0 -0
  92. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/_static/eodag_logo_160r.png +0 -0
  93. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/_static/eodag_main_calls_graph.svg +0 -0
  94. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/_static/eodag_overview.png +0 -0
  95. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/_static/eodag_stac_server.png +0 -0
  96. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/_static/favicon-32x32.png +0 -0
  97. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/_static/progress_1.png +0 -0
  98. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/_static/progress_1_none.png +0 -0
  99. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/_static/progress_2.png +0 -0
  100. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/_static/progress_2_none.png +0 -0
  101. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/_static/stac_browser_example.png +0 -0
  102. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/_static/stac_browser_example_600.png +0 -0
  103. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/add_collection.rst +0 -0
  104. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/add_provider.rst +0 -0
  105. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/api_reference/assets.rst +0 -0
  106. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/api_reference/call_graphs.rst +0 -0
  107. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/api_reference/collection.rst +0 -0
  108. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/api_reference/core.rst +0 -0
  109. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/api_reference/exceptions.rst +0 -0
  110. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/api_reference/index.rst +0 -0
  111. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/api_reference/provider.rst +0 -0
  112. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/api_reference/queryables.rst +0 -0
  113. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/api_reference/searchresult.rst +0 -0
  114. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/api_reference/types.rst +0 -0
  115. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/api_reference/utils.rst +0 -0
  116. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/api_user_guide.rst +0 -0
  117. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/breaking_changes.rst +0 -0
  118. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/changelog.rst +0 -0
  119. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/cli_user_guide.rst +0 -0
  120. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/conf.py +0 -0
  121. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/contribute.rst +0 -0
  122. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/drivers.rst +0 -0
  123. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/ecosystem.rst +0 -0
  124. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/getting_started_guide/collections.rst +0 -0
  125. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/getting_started_guide/configure.rst +0 -0
  126. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/getting_started_guide/features_overview.ipynb +0 -0
  127. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/getting_started_guide/index.rst +0 -0
  128. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/getting_started_guide/install.rst +0 -0
  129. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/getting_started_guide/overview.rst +0 -0
  130. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/getting_started_guide/product_storage_status.rst +0 -0
  131. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/index.rst +0 -0
  132. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/make.bat +0 -0
  133. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/notebooks/api_user_guide/1_providers_collections_available.ipynb +0 -0
  134. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/notebooks/api_user_guide/2_configuration.ipynb +0 -0
  135. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/notebooks/api_user_guide/6_crunch.ipynb +0 -0
  136. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/notebooks/api_user_guide/data/crunch_search_results.geojson +0 -0
  137. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/notebooks/intro_notebooks.ipynb +0 -0
  138. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/notebooks/tutos/auxdata/Gulf_of_Trieste_seamask_UTM33.cpg +0 -0
  139. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/notebooks/tutos/auxdata/Gulf_of_Trieste_seamask_UTM33.dbf +0 -0
  140. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/notebooks/tutos/auxdata/Gulf_of_Trieste_seamask_UTM33.prj +0 -0
  141. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/notebooks/tutos/auxdata/Gulf_of_Trieste_seamask_UTM33.qix +0 -0
  142. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/notebooks/tutos/auxdata/Gulf_of_Trieste_seamask_UTM33.qpj +0 -0
  143. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/notebooks/tutos/auxdata/Gulf_of_Trieste_seamask_UTM33.shp +0 -0
  144. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/notebooks/tutos/auxdata/Gulf_of_Trieste_seamask_UTM33.shx +0 -0
  145. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/notebooks/tutos/auxdata/sentinel2_tiling_grid_centroids.zip +0 -0
  146. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/notebooks/tutos/tuto_burnt_areas_snappy.ipynb +0 -0
  147. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/notebooks/tutos/tuto_cop_dem.ipynb +0 -0
  148. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/notebooks/tutos/tuto_dedt_lumi_roi.ipynb +0 -0
  149. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/notebooks/tutos/tuto_ecmwf.ipynb +0 -0
  150. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/notebooks/tutos/tuto_fedeo_ceda.ipynb +0 -0
  151. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/notebooks/tutos/tuto_meteoblue.ipynb +0 -0
  152. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/notebooks/tutos/tuto_search_location_tile.ipynb +0 -0
  153. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/notebooks/tutos/tuto_ship_detection.ipynb +0 -0
  154. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/notebooks/tutos/tuto_stac_client.ipynb +0 -0
  155. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/notebooks/tutos/tuto_wekeo.ipynb +0 -0
  156. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/params_mapping.rst +0 -0
  157. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/plugins.rst +0 -0
  158. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/plugins_reference/api.rst +0 -0
  159. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/plugins_reference/auth.rst +0 -0
  160. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/plugins_reference/crunch.rst +0 -0
  161. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/plugins_reference/download.rst +0 -0
  162. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/plugins_reference/search.rst +0 -0
  163. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/providers.rst +0 -0
  164. {eodag-4.0.0a4 → eodag-4.0.0b1}/docs/tutos.rst +0 -0
  165. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/__init__.py +0 -0
  166. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/api/__init__.py +0 -0
  167. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/api/product/__init__.py +0 -0
  168. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/crunch.py +0 -0
  169. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/plugins/__init__.py +0 -0
  170. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/plugins/apis/__init__.py +0 -0
  171. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/plugins/apis/base.py +0 -0
  172. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/plugins/authentication/__init__.py +0 -0
  173. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/plugins/authentication/aws_auth.py +0 -0
  174. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/plugins/authentication/base.py +0 -0
  175. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/plugins/authentication/generic.py +0 -0
  176. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/plugins/authentication/header.py +0 -0
  177. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/plugins/authentication/keycloak.py +0 -0
  178. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/plugins/authentication/openid_connect.py +0 -0
  179. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/plugins/authentication/qsauth.py +0 -0
  180. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/plugins/authentication/sas_auth.py +0 -0
  181. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/plugins/authentication/token.py +0 -0
  182. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/plugins/authentication/token_exchange.py +0 -0
  183. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/plugins/base.py +0 -0
  184. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/plugins/crunch/__init__.py +0 -0
  185. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/plugins/crunch/base.py +0 -0
  186. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/plugins/crunch/filter_date.py +0 -0
  187. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/plugins/crunch/filter_latest_intersect.py +0 -0
  188. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/plugins/crunch/filter_latest_tpl_name.py +0 -0
  189. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/plugins/crunch/filter_overlap.py +0 -0
  190. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/plugins/crunch/filter_property.py +0 -0
  191. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/plugins/download/__init__.py +0 -0
  192. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/plugins/manager.py +0 -0
  193. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/plugins/search/__init__.py +0 -0
  194. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/plugins/search/creodias_s3.py +0 -0
  195. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/plugins/search/csw.py +0 -0
  196. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/plugins/search/stac_list_assets.py +0 -0
  197. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/plugins/search/static_stac_search.py +0 -0
  198. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/py.typed +0 -0
  199. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/resources/locations_conf_template.yml +0 -0
  200. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/resources/shp/ne_110m_admin_0_map_units.VERSION.txt +0 -0
  201. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/resources/shp/ne_110m_admin_0_map_units.cpg +0 -0
  202. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/resources/shp/ne_110m_admin_0_map_units.dbf +0 -0
  203. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/resources/shp/ne_110m_admin_0_map_units.prj +0 -0
  204. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/resources/shp/ne_110m_admin_0_map_units.shp +0 -0
  205. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/resources/shp/ne_110m_admin_0_map_units.shx +0 -0
  206. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/resources/stac_provider.yml +0 -0
  207. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/types/bbox.py +0 -0
  208. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/types/search_args.py +0 -0
  209. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/utils/cache.py +0 -0
  210. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/utils/env.py +0 -0
  211. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/utils/exceptions.py +0 -0
  212. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/utils/free_text_search.py +0 -0
  213. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/utils/import_system.py +0 -0
  214. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/utils/logging.py +0 -0
  215. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/utils/notebook.py +0 -0
  216. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/utils/repr.py +0 -0
  217. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/utils/requests.py +0 -0
  218. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag/utils/stac_reader.py +0 -0
  219. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag.egg-info/dependency_links.txt +0 -0
  220. {eodag-4.0.0a4 → eodag-4.0.0b1}/eodag.egg-info/top_level.txt +0 -0
  221. {eodag-4.0.0a4 → eodag-4.0.0b1}/get_pypi_latest_version.sh +0 -0
  222. {eodag-4.0.0a4 → eodag-4.0.0b1}/pytest.ini +0 -0
  223. {eodag-4.0.0a4 → eodag-4.0.0b1}/readthedocs.yml +0 -0
  224. {eodag-4.0.0a4 → eodag-4.0.0b1}/requirements-dev.txt +0 -0
  225. {eodag-4.0.0a4 → eodag-4.0.0b1}/requirements-docs.txt +0 -0
  226. {eodag-4.0.0a4 → eodag-4.0.0b1}/requirements-tutorials.txt +0 -0
  227. {eodag-4.0.0a4 → eodag-4.0.0b1}/requirements.txt +0 -0
  228. {eodag-4.0.0a4 → eodag-4.0.0b1}/setup.py +0 -0
  229. {eodag-4.0.0a4 → eodag-4.0.0b1}/utils/collections_information_to_csv.py +0 -0
  230. {eodag-4.0.0a4 → eodag-4.0.0b1}/utils/ext_collections_cmp.py +0 -0
  231. {eodag-4.0.0a4 → eodag-4.0.0b1}/utils/ext_product_types_cmp.py +0 -0
  232. {eodag-4.0.0a4 → eodag-4.0.0b1}/utils/params_mapping_to_csv.py +0 -0
@@ -0,0 +1,57 @@
1
+ name: Build and publish a container image
2
+
3
+ on:
4
+ push:
5
+ branches: ['master']
6
+ tags: ['v*']
7
+ workflow_dispatch:
8
+ repository_dispatch:
9
+ types: [release]
10
+
11
+ env:
12
+ REGISTRY: ghcr.io
13
+ IMAGE_NAME: ${{ github.repository }}
14
+
15
+ jobs:
16
+ build-and-push-image:
17
+ runs-on: ubuntu-latest
18
+ permissions:
19
+ contents: read
20
+ packages: write
21
+ id-token: write
22
+
23
+ steps:
24
+ - name: Checkout repository
25
+ uses: actions/checkout@v6
26
+
27
+ - name: Set up Docker Buildx
28
+ uses: docker/setup-buildx-action@v3
29
+
30
+ - name: Log in to the container registry
31
+ uses: docker/login-action@v3
32
+ with:
33
+ registry: ${{ env.REGISTRY }}
34
+ username: ${{ github.actor }}
35
+ password: ${{ secrets.GITHUB_TOKEN }}
36
+
37
+ - name: Extract container metadata
38
+ id: meta
39
+ uses: docker/metadata-action@v5
40
+ with:
41
+ images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
42
+ labels: |
43
+ org.opencontainers.image.title=eodag
44
+ org.opencontainers.image.description=Earth Observation Data Access Gateway
45
+ org.opencontainers.image.url=https://github.com/{{ github.repository }}
46
+ org.opencontainers.image.source=https://github.com/{{ github.repository }}.git
47
+ org.opencontainers.image.licenses=Apache-2.0
48
+ org.opencontainers.image.authors=CS GROUP - France (CSSI) <eodag@csgroup.space>
49
+
50
+ - name: Build and push container image
51
+ id: push
52
+ uses: docker/build-push-action@v6
53
+ with:
54
+ context: .
55
+ push: true
56
+ tags: ${{ steps.meta.outputs.tags }}
57
+ labels: ${{ steps.meta.outputs.labels }}
@@ -33,7 +33,7 @@ jobs:
33
33
  runs-on: ${{ matrix.os }}
34
34
  strategy:
35
35
  matrix:
36
- python-version: [3.9, "3.13"]
36
+ python-version: [3.9, "3.14"]
37
37
  os: [ubuntu-latest, windows-latest]
38
38
  steps:
39
39
  - name: Checkout the repo
@@ -80,7 +80,7 @@ jobs:
80
80
  uses: insightsengineering/coverage-action@v2
81
81
  with:
82
82
  # Path to the Cobertura XML report.
83
- path: artifacts/unit-test-results-python3.13-ubuntu-latest/coverage.xml
83
+ path: artifacts/unit-test-results-python3.14-ubuntu-latest/coverage.xml
84
84
  # Minimum total coverage, if you want to the
85
85
  # workflow to enforce it as a standard.
86
86
  # This has no effect if the `fail` arg is set to `false`.
@@ -112,7 +112,7 @@ jobs:
112
112
  uses: insightsengineering/coverage-action@v2
113
113
  with:
114
114
  # Path to the Cobertura XML report.
115
- path: artifacts/unit-test-results-python3.13-windows-latest/coverage.xml
115
+ path: artifacts/unit-test-results-python3.14-windows-latest/coverage.xml
116
116
  # Minimum total coverage, if you want to the
117
117
  # workflow to enforce it as a standard.
118
118
  # This has no effect if the `fail` arg is set to `false`.
@@ -107,6 +107,7 @@ search_results.geojson
107
107
  ext_collections.json
108
108
  !eodag/resources/ext_collections.json
109
109
  !tests/resources/ext_collections.json
110
+ eodag-config
110
111
 
111
112
  # IDE
112
113
  # Pycharm
@@ -40,3 +40,8 @@ repos:
40
40
  rev: v5.10.1
41
41
  hooks:
42
42
  - id: isort
43
+
44
+ - repo: https://github.com/gitleaks/gitleaks
45
+ rev: v8.24.2
46
+ hooks:
47
+ - id: gitleaks
@@ -3,6 +3,182 @@ Release history
3
3
  ===============
4
4
 
5
5
 
6
+ v4.0.0b1 (2026-02-03)
7
+ =====================
8
+
9
+ Features
10
+ --------
11
+
12
+ * **core**: STAC formatted serialization (`#1940`_, `cdb3a17`_)
13
+
14
+ * **providers**: Add collections to eumetsat_ds (`#1979`_, `7d72d64`_)
15
+
16
+ Bug Fixes
17
+ ---------
18
+
19
+ * **core**: Add Collection property for server extended metadata (`#1947`_, `e9ffb17`_)
20
+
21
+ * **core**: Asset name harmonization with query-string (`#1983`_, `a93c2c7`_)
22
+
23
+ * **core**: TypedDict from typing_extensions required by pydantic (`#1986`_, `6ada805`_)
24
+
25
+ * **core**: Wrong credentials sharing (`#1970`_, `6ad08cb`_)
26
+
27
+ * **plugins**: Aws streamed downloads (`#1975`_, `652c927`_)
28
+
29
+ * **plugins**: Dates formatting and missing param in ECMWFSearch queryables (`#1956`_, `0fed963`_)
30
+
31
+ * **plugins**: Delete download link when order not finish (`#1952`_, `f020e24`_)
32
+
33
+ * **plugins**: Handle disabled count on cop_marine (`#1955`_, `816cf99`_)
34
+
35
+ * **plugins**: Uncomplete search validation for cop_ads and wekeo_ecmwf (`#1951`_, `3cc1d7c`_)
36
+
37
+ * **providers**: Creodias processing:version as str (`#2015`_, `3f8c56a`_)
38
+
39
+ * **providers**: Renamed THEIA collections on geodes (`#1974`_, `39d0962`_)
40
+
41
+ * **providers**: Search parameters parsing on hydroweb_next (`#1981`_, `ee21c4f`_)
42
+
43
+ * **providers** Update wekeo_ecmwf collection_fetch_url (`#1995`_, `4559f41`_)
44
+
45
+ Build System
46
+ ------------
47
+
48
+ * Add docker image (`#1971`_, `0c5ed7c`_)(`#1972`_, `fa3fe3f`_)
49
+
50
+ * Add python3.14 support (`#1973`_, `07f484b`_)
51
+
52
+ * **docs**: Use sphinx 8 (`#2006`_, `811c176`_)
53
+
54
+ Chores
55
+ ------
56
+
57
+ * Allow pydantic >= 2.12.0 by buiding docs with python3.13 (`#1966`_, `a8261af`_)
58
+
59
+ * Labextension conf in gitignore (`#1984`_, `b28d179`_)
60
+
61
+ * Remove remaining server-mode related code (`#1963`_, `8131264`_)
62
+
63
+ * Update assets rendering depth (`#2016`_, `c060011`_)
64
+
65
+ Continuous Integration
66
+ ----------------------
67
+
68
+ * Gitleaks in pre-commit (`#1982`_, `e740d97`_)
69
+
70
+ Documentation
71
+ -------------
72
+
73
+ * Eodag-cube augment_from_xarray method (`#1989`_, `1fa56a3`_)
74
+
75
+ * Queryables guide update (`#2005`_, `c3429d8`_)
76
+
77
+ Refactoring
78
+ -----------
79
+
80
+ * **cli** Cli.py collision name on eodag (`#1993`_, `6d6f34f`_)
81
+
82
+ * **collections**: Add processor for Sentinel and MAJA collections (`#1999`_, `f9a51f0`_)
83
+
84
+ * **core** Updated STAC extensions schemas versions (`#2017`_, `5bc3f68`_)
85
+
86
+ * **core**: Use collection alias in EOProduct (`#1968`_, `b242061`_)
87
+
88
+ Testing
89
+ -------
90
+
91
+ * End-to-end tests fixes (`#1997`_, `2a238ed`_)
92
+
93
+ .. _#1940: https://github.com/CS-SI/eodag/pull/1940
94
+ .. _#1947: https://github.com/CS-SI/eodag/pull/1947
95
+ .. _#1951: https://github.com/CS-SI/eodag/pull/1951
96
+ .. _#1952: https://github.com/CS-SI/eodag/pull/1952
97
+ .. _#1955: https://github.com/CS-SI/eodag/pull/1955
98
+ .. _#1956: https://github.com/CS-SI/eodag/pull/1956
99
+ .. _#1963: https://github.com/CS-SI/eodag/pull/1963
100
+ .. _#1966: https://github.com/CS-SI/eodag/pull/1966
101
+ .. _#1968: https://github.com/CS-SI/eodag/pull/1968
102
+ .. _#1970: https://github.com/CS-SI/eodag/pull/1970
103
+ .. _#1971: https://github.com/CS-SI/eodag/pull/1971
104
+ .. _#1972: https://github.com/CS-SI/eodag/pull/1972
105
+ .. _#1973: https://github.com/CS-SI/eodag/pull/1973
106
+ .. _#1974: https://github.com/CS-SI/eodag/pull/1974
107
+ .. _#1975: https://github.com/CS-SI/eodag/pull/1975
108
+ .. _#1979: https://github.com/CS-SI/eodag/pull/1979
109
+ .. _#1981: https://github.com/CS-SI/eodag/pull/1981
110
+ .. _#1982: https://github.com/CS-SI/eodag/pull/1982
111
+ .. _#1983: https://github.com/CS-SI/eodag/pull/1983
112
+ .. _#1984: https://github.com/CS-SI/eodag/pull/1984
113
+ .. _#1986: https://github.com/CS-SI/eodag/pull/1986
114
+ .. _#1989: https://github.com/CS-SI/eodag/pull/1989
115
+ .. _#1993: https://github.com/CS-SI/eodag/pull/1993
116
+ .. _#1995: https://github.com/CS-SI/eodag/pull/1995
117
+ .. _#1997: https://github.com/CS-SI/eodag/pull/1997
118
+ .. _#1999: https://github.com/CS-SI/eodag/pull/1999
119
+ .. _#2005: https://github.com/CS-SI/eodag/pull/2005
120
+ .. _#2006: https://github.com/CS-SI/eodag/pull/2006
121
+ .. _#2015: https://github.com/CS-SI/eodag/pull/2015
122
+ .. _#2016: https://github.com/CS-SI/eodag/pull/2016
123
+ .. _#2017: https://github.com/CS-SI/eodag/pull/2017
124
+ .. _07f484b: https://github.com/CS-SI/eodag/commit/07f484bf5799866d75ca8afb6f84765820485c3f
125
+ .. _0c5ed7c: https://github.com/CS-SI/eodag/commit/0c5ed7c26200579f951596342dfddf3d214cbb55
126
+ .. _0fed963: https://github.com/CS-SI/eodag/commit/0fed9630f1965e804bad4364e5a920bec8414e62
127
+ .. _1fa56a3: https://github.com/CS-SI/eodag/commit/1fa56a3fb66de0035db14cd82b30e86d82f495a9
128
+ .. _2a238ed: https://github.com/CS-SI/eodag/commit/2a238edb621ce17eb99ae98fe28ad3fa56793ade
129
+ .. _39d0962: https://github.com/CS-SI/eodag/commit/39d096283e504c2c43eaadc039250a295edd6ac9
130
+ .. _3cc1d7c: https://github.com/CS-SI/eodag/commit/3cc1d7c85e140f03358990b3652d8c56d19e0321
131
+ .. _3f8c56a: https://github.com/CS-SI/eodag/commit/3f8c56a170d750295e0a708cd91b627d15a2408a
132
+ .. _4559f41: https://github.com/CS-SI/eodag/commit/4559f4198654338e99736046ed424612d50106be
133
+ .. _5bc3f68: https://github.com/CS-SI/eodag/commit/5bc3f68961eae2f5878f07182a0cb6624563793c
134
+ .. _652c927: https://github.com/CS-SI/eodag/commit/652c9278c04c962a7661cfbd2dcdd332a6e77e46
135
+ .. _6ad08cb: https://github.com/CS-SI/eodag/commit/6ad08cb4d7771c574401eafa41c37f4a5d898223
136
+ .. _6ada805: https://github.com/CS-SI/eodag/commit/6ada805f9d3db4b225a9c94c91fb296780e7b20d
137
+ .. _6d6f34f: https://github.com/CS-SI/eodag/commit/6d6f34fb247e9f51ed3576026ff3a90764023c38
138
+ .. _7d72d64: https://github.com/CS-SI/eodag/commit/7d72d649ae12c020052c600062585384ca0a9111
139
+ .. _811c176: https://github.com/CS-SI/eodag/commit/811c17621af246ff82670c02bb924899d887a6b3
140
+ .. _8131264: https://github.com/CS-SI/eodag/commit/8131264627b6143609868b9d3ebdcbf5b330eccd
141
+ .. _816cf99: https://github.com/CS-SI/eodag/commit/816cf99a08227201ca40df959a736128840b1947
142
+ .. _a8261af: https://github.com/CS-SI/eodag/commit/a8261afb2bb2129a152f6a498843bd015883f038
143
+ .. _a93c2c7: https://github.com/CS-SI/eodag/commit/a93c2c7ec99d5923aa550bf4a2eb76a7c9ac7e3b
144
+ .. _b242061: https://github.com/CS-SI/eodag/commit/b242061f4f7d73cc4d1681f891d1aeb0663a6504
145
+ .. _b28d179: https://github.com/CS-SI/eodag/commit/b28d179ded2588e0f44b131bfa959c7482139ff5
146
+ .. _c060011: https://github.com/CS-SI/eodag/commit/c06001160e00c8f4aa19811f5e7ec3bd85eaeb89
147
+ .. _c3429d8: https://github.com/CS-SI/eodag/commit/c3429d897e59bd8491a524d06b8c706d247a35ec
148
+ .. _cdb3a17: https://github.com/CS-SI/eodag/commit/cdb3a17047462037ea98eb31b0481e82dd62a438
149
+ .. _e740d97: https://github.com/CS-SI/eodag/commit/e740d97a1d2940d5c8f2b26393f535c3a9fdbc78
150
+ .. _e9ffb17: https://github.com/CS-SI/eodag/commit/e9ffb178ceda82c7d9f4b6f87e2eadfff6b1078e
151
+ .. _ee21c4f: https://github.com/CS-SI/eodag/commit/ee21c4fa134591f31e2b38c7db129287807688ac
152
+ .. _f020e24: https://github.com/CS-SI/eodag/commit/f020e240e0012863920e86ae670bc036b858c741
153
+ .. _f9a51f0: https://github.com/CS-SI/eodag/commit/f9a51f0347a2fc629915964e050bbf6a3befa02d
154
+ .. _fa3fe3f: https://github.com/CS-SI/eodag/commit/fa3fe3faeef275be4596f6435e5348ab3b9e833f
155
+
156
+
157
+ v4.0.0a5 (2025-12-04)
158
+ =====================
159
+
160
+ Chores
161
+ ------
162
+
163
+ * Ensure locations dir exists during init (`#1958`_, `df263c2`_)
164
+
165
+ Performance Improvements
166
+ ------------------------
167
+
168
+ * Download products and assets in parallel (`#1890`_, `b0b3799`_)
169
+
170
+ Refactoring
171
+ -----------
172
+
173
+ * Boto3 ServiceResource type check (`#1949`_, `90fafbe`_)
174
+
175
+ .. _#1890: https://github.com/CS-SI/eodag/pull/1890
176
+ .. _#1949: https://github.com/CS-SI/eodag/pull/1949
177
+ .. _#1958: https://github.com/CS-SI/eodag/pull/1958
178
+ .. _90fafbe: https://github.com/CS-SI/eodag/commit/90fafbe3501569ab394b14b6df14ff69f38c35f8
179
+ .. _b0b3799: https://github.com/CS-SI/eodag/commit/b0b37992c9d49d7e5743f2a638f84f47f1de440e
180
+ .. _df263c2: https://github.com/CS-SI/eodag/commit/df263c28042cc0aa4cdfeb88c24004aea9955cd5
181
+
6
182
  v4.0.0a4 (2025-11-28)
7
183
  =====================
8
184
 
@@ -86,7 +262,6 @@ Refactoring
86
262
  .. _#1730: https://github.com/CS-SI/eodag/pull/1730
87
263
  .. _#1731: https://github.com/CS-SI/eodag/pull/1731
88
264
  .. _#1745: https://github.com/CS-SI/eodag/pull/1745
89
- .. _#1781: https://github.com/CS-SI/eodag/pull/1781
90
265
  .. _#1789: https://github.com/CS-SI/eodag/pull/1789
91
266
  .. _#1839: https://github.com/CS-SI/eodag/pull/1839
92
267
  .. _#1840: https://github.com/CS-SI/eodag/pull/1840
@@ -104,7 +279,6 @@ Refactoring
104
279
  .. _#1906: https://github.com/CS-SI/eodag/pull/1906
105
280
  .. _#1907: https://github.com/CS-SI/eodag/pull/1907
106
281
  .. _#1908: https://github.com/CS-SI/eodag/pull/1908
107
- .. _#1911: https://github.com/CS-SI/eodag/pull/1911
108
282
  .. _#1914: https://github.com/CS-SI/eodag/pull/1914
109
283
  .. _#1915: https://github.com/CS-SI/eodag/pull/1915
110
284
  .. _#1917: https://github.com/CS-SI/eodag/pull/1917
@@ -74,7 +74,7 @@ To run the entire tests (units, integration and end-to-end):
74
74
  you, please `install <https://pandoc.org/installing.html>`_ pandoc and try
75
75
  again.
76
76
 
77
- * eodag is tested against python versions 3.9, 3.10, 3.11, 3.12 and 3.13. Ensure you have
77
+ * eodag is tested against python versions 3.9, 3.10, 3.11, 3.12, 3.13 and 3.14. Ensure you have
78
78
  these versions installed before you run tox. You can use
79
79
  `pyenv <https://github.com/pyenv/pyenv>`_ to manage many different versions
80
80
  of python
@@ -0,0 +1,41 @@
1
+ # Copyright 2025, CS GROUP - France, https://www.csgroup.eu/
2
+ #
3
+ # This file is part of EODAG project
4
+ # https://www.github.com/CS-SI/EODAG
5
+ #
6
+ # Licensed under the Apache License, Version 2.0 (the "License");
7
+ # you may not use this file except in compliance with the License.
8
+ # You may obtain a copy of the License at
9
+ #
10
+ # http://www.apache.org/licenses/LICENSE-2.0
11
+ #
12
+ # Unless required by applicable law or agreed to in writing, software
13
+ # distributed under the License is distributed on an "AS IS" BASIS,
14
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
+ # See the License for the specific language governing permissions and
16
+ # limitations under the License.
17
+
18
+ FROM python:alpine3.13
19
+
20
+ LABEL author="CS GROUP - France"
21
+
22
+ WORKDIR /app
23
+
24
+ COPY eodag/ eodag/
25
+ COPY setup.cfg pyproject.toml README.rst LICENSE MANIFEST.in ./
26
+
27
+ # build-base is required to enable logging
28
+ RUN apk add --no-cache build-base && \
29
+ pip install --no-cache-dir ".[all-providers]" && \
30
+ apk del build-base
31
+
32
+ # Create a non-root user to run the application
33
+ RUN addgroup -g 1000 eodag && \
34
+ adduser -u 1000 -G eodag \
35
+ -h /home/eodag \
36
+ -s /bin/sh \
37
+ -D eodag
38
+ USER eodag
39
+
40
+ ENTRYPOINT ["eodag"]
41
+ CMD ["--help"]
@@ -41,7 +41,6 @@ https://github.com/jupyter-widgets/ipyleaflet
41
41
  https://github.com/GeospatialPython/pyshp
42
42
  https://github.com/python-visualization/folium
43
43
  https://github.com/Unidata/netcdf4-python
44
- https://github.com/tiangolo/fastapi
45
44
  https://github.com/urllib3/urllib3
46
45
  https://github.com/annotated-types/annotated-types
47
46
  https://github.com/pypa/setuptools
@@ -78,8 +77,6 @@ https://github.com/mapbox/rasterio
78
77
  https://github.com/lxml/lxml
79
78
  https://github.com/jupyter-widgets/ipywidgets
80
79
  https://github.com/jupyter/jupyter
81
- https://github.com/encode/uvicorn
82
- https://github.com/encode/starlette
83
80
 
84
81
 
85
82
  The function slugify, located at eodag/utils/__init__.py is a modified version of the function with the same name from
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: eodag
3
- Version: 4.0.0a4
3
+ Version: 4.0.0b1
4
4
  Summary: Earth Observation Data Access Gateway
5
5
  Home-page: https://github.com/CS-SI/eodag
6
6
  Author: CS GROUP - France
@@ -23,6 +23,7 @@ Classifier: Programming Language :: Python :: 3.10
23
23
  Classifier: Programming Language :: Python :: 3.11
24
24
  Classifier: Programming Language :: Python :: 3.12
25
25
  Classifier: Programming Language :: Python :: 3.13
26
+ Classifier: Programming Language :: Python :: 3.14
26
27
  Classifier: Programming Language :: Python :: Implementation :: CPython
27
28
  Classifier: Topic :: Internet :: WWW/HTTP :: Indexing/Search
28
29
  Classifier: Topic :: Scientific/Engineering :: GIS
@@ -40,7 +41,7 @@ Requires-Dist: importlib_metadata>=5.0
40
41
  Requires-Dist: jsonpath-ng
41
42
  Requires-Dist: lxml
42
43
  Requires-Dist: orjson
43
- Requires-Dist: pydantic!=2.10.0,<2.12.0,>=2.1.0
44
+ Requires-Dist: pydantic!=2.10.0,>=2.1.0
44
45
  Requires-Dist: pydantic_core
45
46
  Requires-Dist: PyJWT[crypto]>=2.5.0
46
47
  Requires-Dist: pyproj>=2.1.0
@@ -56,7 +57,7 @@ Requires-Dist: typing_extensions>=4.8.0
56
57
  Requires-Dist: urllib3
57
58
  Requires-Dist: zipstream-ng
58
59
  Provides-Extra: all
59
- Requires-Dist: eodag[all-providers,csw,server,tutorials]; extra == "all"
60
+ Requires-Dist: eodag[all-providers,csw,tutorials]; extra == "all"
60
61
  Provides-Extra: all-providers
61
62
  Requires-Dist: eodag[ecmwf,usgs]; extra == "all-providers"
62
63
  Provides-Extra: csw
@@ -65,13 +66,6 @@ Provides-Extra: ecmwf
65
66
  Requires-Dist: ecmwf-api-client; extra == "ecmwf"
66
67
  Provides-Extra: usgs
67
68
  Requires-Dist: usgs>=0.3.6; extra == "usgs"
68
- Provides-Extra: server
69
- Requires-Dist: fastapi>=0.93.0; extra == "server"
70
- Requires-Dist: pygeofilter; extra == "server"
71
- Requires-Dist: starlette; extra == "server"
72
- Requires-Dist: uvicorn[standard]; extra == "server"
73
- Requires-Dist: pydantic-settings; extra == "server"
74
- Requires-Dist: cachetools; extra == "server"
75
69
  Provides-Extra: notebook
76
70
  Requires-Dist: tqdm[notebook]; extra == "notebook"
77
71
  Provides-Extra: tutorials
@@ -88,7 +82,7 @@ Requires-Dist: netcdf4; extra == "tutorials"
88
82
  Requires-Dist: cartopy; extra == "tutorials"
89
83
  Requires-Dist: covjsonkit; extra == "tutorials"
90
84
  Provides-Extra: dev
91
- Requires-Dist: eodag[all-providers,csw,server,stubs]; extra == "dev"
85
+ Requires-Dist: eodag[all-providers,csw,stubs]; extra == "dev"
92
86
  Requires-Dist: pytest; extra == "dev"
93
87
  Requires-Dist: pytest-cov; extra == "dev"
94
88
  Requires-Dist: py>=1.8.2; extra == "dev"
@@ -105,7 +99,7 @@ Requires-Dist: wheel; extra == "dev"
105
99
  Requires-Dist: flake8; extra == "dev"
106
100
  Requires-Dist: prek; extra == "dev"
107
101
  Requires-Dist: responses!=0.24.0; extra == "dev"
108
- Requires-Dist: fastapi[all]; extra == "dev"
102
+ Requires-Dist: stac-validator; extra == "dev"
109
103
  Requires-Dist: stdlib-list; extra == "dev"
110
104
  Requires-Dist: mypy; extra == "dev"
111
105
  Provides-Extra: stubs
@@ -123,7 +117,7 @@ Provides-Extra: docs
123
117
  Requires-Dist: eodag[all,stubs]; extra == "docs"
124
118
  Requires-Dist: autodoc_pydantic; extra == "docs"
125
119
  Requires-Dist: nbsphinx; extra == "docs"
126
- Requires-Dist: sphinx; extra == "docs"
120
+ Requires-Dist: sphinx<9.0.0; extra == "docs"
127
121
  Requires-Dist: sphinx-autodoc-typehints; extra == "docs"
128
122
  Requires-Dist: sphinx-book-theme>=1.0.0; extra == "docs"
129
123
  Requires-Dist: sphinx-copybutton; extra == "docs"
@@ -174,6 +174,10 @@ MSG_MFG_GSA_0,"MFG,MSG",L2,,,,,,,,,,,,,,,available,,,,,,,,,,,,,
174
174
  MSG_MSG15_RSS,MSG,L1,,,,,,,,,available,,,,,,available,,,,,,,,,,,,,
175
175
  MSG_OCA_CDR,MSG,L2,,,,,,,,,,,,,,,available,,,,,,,,,,,,,
176
176
  MSG_RSS_CLM,MSG,L2,,,,,,,,,available,,,,,,available,,,,,,,,,,,,,
177
+ MSG_SEVIRI_RSS_AMV_CDR_V1,MSG,L2,,,,,,,,,,,,,,,available,,,,,,,,,,,,,
178
+ MSG_SEVIRI_RSS_HR_IMG_L1_5_V1,MSG,L1,,,,,,,,,,,,,,,available,,,,,,,,,,,,,
179
+ MSG_SEVIRI_SARAH_CDR_V003,MSG,,,,,,,,,,,,,,,,available,,,,,,,,,,,,,
180
+ MTG_FCI_ACTIVE_FIRE_L2_V1,MTG,L2,,,,,,,,,,,,,,,available,,,,,,,,,,,,,
177
181
  MTG_FCI_AMV_BUFR,MTG,L2,,,,,,,,,,,,,,,available,,,,,,,,,,,,,
178
182
  MTG_FCI_AMV_NETCDF,MTG,L2,,,,,,,,,,,,,,,available,,,,,,,,,,,,,
179
183
  MTG_FCI_ASR_BUFR,MTG,L2,,,,,,,,,,,,,,,available,,,,,,,,,,,,,
@@ -190,6 +194,7 @@ MTG_LI_AFR,MTG,L2,,,,,,,,,,,,,,,available,,,,,,,,,,,,,
190
194
  MTG_LI_LEF,MTG,L2,,,,,,,,,,,,,,,available,,,,,,,,,,,,,
191
195
  MTG_LI_LFL,MTG,L2,,,,,,,,,,,,,,,available,,,,,,,,,,,,,
192
196
  MTG_LI_LGR,MTG,L2,,,,,,,,,,,,,,,available,,,,,,,,,,,,,
197
+ MULT_PMW_IR_GIRAFE_PRECIP_CDR_V001,MTG,L3,,,,,,,,,,,,,,,available,,,,,,,,,,,,,
193
198
  NAIP,National Agriculture Imagery Program,N/A,available,,,,,,,,,,,available,,,,,,,,,,available,,,,,,
194
199
  NEMSAUTO_TCDC,NEMSAUTO,,,,,,,,,,,,,,,,,,,,,available,,,,,,,,
195
200
  NEMSGLOBAL_TCDC,NEMSGLOBAL,,,,,,,,,,,,,,,,,,,,,available,,,,,,,,
@@ -226,6 +231,7 @@ S3_OLCI_L2WFR,SENTINEL3,L2,,,,available,,,available,available,available,,,,,,ava
226
231
  S3_OLCI_L2WFR_BC003,SENTINEL3,L2,,,,,,,,,,,,,,,available,,,,,,,,,,,,,
227
232
  S3_OLCI_L2WRR,SENTINEL3,L2,,,,available,,,available,available,available,,,,,,available,,,,,,,,available,,,,,available
228
233
  S3_OLCI_L2WRR_BC003,SENTINEL3,L2,,,,,,,,,,,,,,,available,,,,,,,,,,,,,
234
+ S3_OL_2_WFRBC003,SENTINEL3,L2,,,,,,,,,,,,,,,available,,,,,,,,,,,,,
229
235
  S3_RAC,SENTINEL3,L1,,,,,,,,,,,,,,,,,,,,,,,available,,,,,
230
236
  S3_SLSTR_L1RBT,SENTINEL3,L1,,,,available,,,available,available,available,,,,,,available,,,,,,,,available,,,,,available
231
237
  S3_SLSTR_L1RBT_BC003,SENTINEL3,L1,,,,,,,,,,,,,,,available,,,,,,,,,,,,,
@@ -6,7 +6,7 @@ acquisitionInformation,,,,,,,metadata only,,,,,,
6
6
  assets,,,,metadata only,metadata only,,metadata only,metadata only,metadata only,,metadata only,,metadata only
7
7
  beginningDateTime,metadata only,,metadata only,,,,,,,,,,
8
8
  collection,:green:`queryable metadata`,,:green:`queryable metadata`,,,,,,,,,,
9
- constellation,:green:`queryable metadata`,,:green:`queryable metadata`,:green:`queryable metadata`,:green:`queryable metadata`,,metadata only,:green:`queryable metadata`,:green:`queryable metadata`,metadata only,:green:`queryable metadata`,metadata only,:green:`queryable metadata`
9
+ constellation,:green:`queryable metadata`,,:green:`queryable metadata`,:green:`queryable metadata`,:green:`queryable metadata`,,,:green:`queryable metadata`,:green:`queryable metadata`,metadata only,:green:`queryable metadata`,metadata only,:green:`queryable metadata`
10
10
  created,,,,,,,,,,metadata only,,metadata only,
11
11
  datetime,,,,metadata only,metadata only,,,metadata only,metadata only,,metadata only,,metadata only
12
12
  description,,,,,,,,,,metadata only,,metadata only,
@@ -55,8 +55,9 @@ sar:beam_ids,,,,:green:`queryable metadata`,:green:`queryable metadata`,,,:green
55
55
  sar:instrument_mode,:green:`queryable metadata`,,:green:`queryable metadata`,,,,,,metadata only,:green:`queryable metadata`,,:green:`queryable metadata`,
56
56
  sar:polarizations,: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`
57
57
  sat:absolute_orbit,:green:`queryable metadata`,,:green:`queryable metadata`,,,,,,:green:`queryable metadata`,:green:`queryable metadata`,,:green:`queryable metadata`,
58
- sat:orbit_state,:green:`queryable metadata`,,:green:`queryable metadata`,,,,,,,:green:`queryable metadata`,,:green:`queryable metadata`,
58
+ sat:orbit_state,:green:`queryable metadata`,,:green:`queryable metadata`,,,,,,:green:`queryable metadata`,:green:`queryable metadata`,,:green:`queryable metadata`,
59
59
  sat:relative_orbit,:green:`queryable metadata`,,:green:`queryable metadata`,,,,,,:green:`queryable metadata`,:green:`queryable metadata`,,:green:`queryable metadata`,
60
+ sci:doi,,,,,,,,,metadata only,,,,
60
61
  services,,,,,,,,,,metadata only,,,
61
62
  size,,,,,,,metadata only,,,,,,
62
63
  start_datetime,:green:`queryable metadata`,,:green:`queryable metadata`,metadata only,metadata only,metadata only,:green:`queryable metadata`,metadata only,:green:`queryable metadata`,:green:`queryable metadata`,metadata only,:green:`queryable metadata`,metadata only
@@ -1 +1 @@
1
- {"_collection": {"parameter": "_collection", "open-search": "", "class": "", "description": "", "type": ""}, "_processor_name": {"parameter": "_processor_name", "open-search": "", "class": "", "description": "", "type": ""}, "_provider": {"parameter": "_provider", "open-search": "", "class": "", "description": "", "type": ""}, "acquisitionInformation": {"parameter": "acquisitionInformation", "open-search": "", "class": "", "description": "", "type": ""}, "assets": {"parameter": "assets", "open-search": "", "class": "", "description": "", "type": ""}, "beginningDateTime": {"parameter": "beginningDateTime", "open-search": "", "class": "", "description": "", "type": ""}, "collection": {"parameter": "collection", "open-search": "", "class": "", "description": "", "type": ""}, "constellation": {"parameter": "constellation", "open-search": "", "class": "", "description": "", "type": ""}, "created": {"parameter": "created", "open-search": "", "class": "", "description": "", "type": ""}, "datetime": {"parameter": "datetime", "open-search": "", "class": "", "description": "", "type": ""}, "description": {"parameter": "description", "open-search": "", "class": "", "description": "", "type": ""}, "end_datetime": {"parameter": "end_datetime", "open-search": "", "class": "", "description": "", "type": ""}, "endingDateTime": {"parameter": "endingDateTime", "open-search": "", "class": "", "description": "", "type": ""}, "eo:cloud_cover": {"parameter": "eo:cloud_cover", "open-search": "", "class": "", "description": "", "type": ""}, "eo:snow_cover": {"parameter": "eo:snow_cover", "open-search": "", "class": "", "description": "", "type": ""}, "eodag:default_geometry": {"parameter": "eodag:default_geometry", "open-search": "", "class": "", "description": "", "type": ""}, "eodag:download_link": {"parameter": "eodag:download_link", "open-search": "", "class": "", "description": "", "type": ""}, "eodag:quicklook": {"parameter": "eodag:quicklook", "open-search": "", "class": "", "description": "", "type": ""}, "eodag:thumbnail": {"parameter": "eodag:thumbnail", "open-search": "", "class": "", "description": "", "type": ""}, "extraInformation": {"parameter": "extraInformation", "open-search": "", "class": "", "description": "", "type": ""}, "geometry": {"parameter": "geometry", "open-search": "", "class": "", "description": "", "type": ""}, "grid:code": {"parameter": "grid:code", "open-search": "", "class": "", "description": "", "type": ""}, "gsd": {"parameter": "gsd", "open-search": "", "class": "", "description": "", "type": ""}, "id": {"parameter": "id", "open-search": "", "class": "", "description": "", "type": ""}, "instruments": {"parameter": "instruments", "open-search": "", "class": "", "description": "", "type": ""}, "keywords": {"parameter": "keywords", "open-search": "", "class": "", "description": "", "type": ""}, "license": {"parameter": "license", "open-search": "", "class": "", "description": "", "type": ""}, "links": {"parameter": "links", "open-search": "", "class": "", "description": "", "type": ""}, "order:status": {"parameter": "order:status", "open-search": "", "class": "", "description": "", "type": ""}, "platform": {"parameter": "platform", "open-search": true, "class": "OpenSearch Parameters for Collection Search", "description": "A string with the platform short name (e.g. Sentinel-1)", "type": "String"}, "platformSerialIdentifier": {"parameter": "platformSerialIdentifier", "open-search": true, "class": "OpenSearch Parameters for Collection Search", "description": "A string with the Platform serial identifier", "type": "String"}, "processing:datetime": {"parameter": "processing:datetime", "open-search": "", "class": "", "description": "", "type": ""}, "processing:facility": {"parameter": "processing:facility", "open-search": "", "class": "", "description": "", "type": ""}, "processing:level": {"parameter": "processing:level", "open-search": "", "class": "", "description": "", "type": ""}, "processing:software": {"parameter": "processing:software", "open-search": "", "class": "", "description": "", "type": ""}, "processing:version": {"parameter": "processing:version", "open-search": "", "class": "", "description": "", "type": ""}, "product:acquisition_type": {"parameter": "product:acquisition_type", "open-search": "", "class": "", "description": "", "type": ""}, "product:timeliness": {"parameter": "product:timeliness", "open-search": "", "class": "", "description": "", "type": ""}, "product:type": {"parameter": "product:type", "open-search": "", "class": "", "description": "", "type": ""}, "productInformation": {"parameter": "productInformation", "open-search": "", "class": "", "description": "", "type": ""}, "productType": {"parameter": "productType", "open-search": true, "class": "OpenSearch Parameters for Collection Search", "description": "A string identifying the entry type (e.g. ER02_SAR_IM__0P, MER_RR__1P, SM_SLC__1S, GES_DISC_AIRH3STD_V005)", "type": "String "}, "providers": {"parameter": "providers", "open-search": "", "class": "", "description": "", "type": ""}, "published": {"parameter": "published", "open-search": "", "class": "", "description": "", "type": ""}, "published_after": {"parameter": "published_after", "open-search": "", "class": "", "description": "", "type": ""}, "published_before": {"parameter": "published_before", "open-search": "", "class": "", "description": "", "type": ""}, "qs": {"parameter": "qs", "open-search": "", "class": "", "description": "", "type": ""}, "s1:datatake_id": {"parameter": "s1:datatake_id", "open-search": "", "class": "", "description": "", "type": ""}, "s1:instrument_configuration_ID": {"parameter": "s1:instrument_configuration_ID", "open-search": "", "class": "", "description": "", "type": ""}, "s1:slice_number": {"parameter": "s1:slice_number", "open-search": "", "class": "", "description": "", "type": ""}, "s1:total_slices": {"parameter": "s1:total_slices", "open-search": "", "class": "", "description": "", "type": ""}, "s2:datastrip_id": {"parameter": "s2:datastrip_id", "open-search": "", "class": "", "description": "", "type": ""}, "s2:datatake_id": {"parameter": "s2:datatake_id", "open-search": "", "class": "", "description": "", "type": ""}, "s2:datatake_type": {"parameter": "s2:datatake_type", "open-search": "", "class": "", "description": "", "type": ""}, "s2:product_uri": {"parameter": "s2:product_uri", "open-search": "", "class": "", "description": "", "type": ""}, "s2:tile_id": {"parameter": "s2:tile_id", "open-search": "", "class": "", "description": "", "type": ""}, "sar:beam_ids": {"parameter": "sar:beam_ids", "open-search": "", "class": "", "description": "", "type": ""}, "sar:instrument_mode": {"parameter": "sar:instrument_mode", "open-search": "", "class": "", "description": "", "type": ""}, "sar:polarizations": {"parameter": "sar:polarizations", "open-search": "", "class": "", "description": "", "type": ""}, "sat:absolute_orbit": {"parameter": "sat:absolute_orbit", "open-search": "", "class": "", "description": "", "type": ""}, "sat:orbit_state": {"parameter": "sat:orbit_state", "open-search": "", "class": "", "description": "", "type": ""}, "sat:relative_orbit": {"parameter": "sat:relative_orbit", "open-search": "", "class": "", "description": "", "type": ""}, "services": {"parameter": "services", "open-search": "", "class": "", "description": "", "type": ""}, "size": {"parameter": "size", "open-search": "", "class": "", "description": "", "type": ""}, "start_datetime": {"parameter": "start_datetime", "open-search": "", "class": "", "description": "", "type": ""}, "title": {"parameter": "title", "open-search": true, "class": "Additional INSPIRE obligated OpenSearch Parameters for Collection Search", "description": "A name given to the resource", "type": "String "}, "type": {"parameter": "type", "open-search": "", "class": "", "description": "", "type": ""}, "uid": {"parameter": "uid", "open-search": "", "class": "", "description": "", "type": ""}, "updated": {"parameter": "updated", "open-search": "", "class": "", "description": "", "type": ""}, "updated_after": {"parameter": "updated_after", "open-search": "", "class": "", "description": "", "type": ""}, "updated_before": {"parameter": "updated_before", "open-search": "", "class": "", "description": "", "type": ""}, "version": {"parameter": "version", "open-search": "", "class": "", "description": "", "type": ""}}
1
+ {"_collection": {"parameter": "_collection", "open-search": "", "class": "", "description": "", "type": ""}, "_processor_name": {"parameter": "_processor_name", "open-search": "", "class": "", "description": "", "type": ""}, "_provider": {"parameter": "_provider", "open-search": "", "class": "", "description": "", "type": ""}, "acquisitionInformation": {"parameter": "acquisitionInformation", "open-search": "", "class": "", "description": "", "type": ""}, "assets": {"parameter": "assets", "open-search": "", "class": "", "description": "", "type": ""}, "beginningDateTime": {"parameter": "beginningDateTime", "open-search": "", "class": "", "description": "", "type": ""}, "collection": {"parameter": "collection", "open-search": "", "class": "", "description": "", "type": ""}, "constellation": {"parameter": "constellation", "open-search": "", "class": "", "description": "", "type": ""}, "created": {"parameter": "created", "open-search": "", "class": "", "description": "", "type": ""}, "datetime": {"parameter": "datetime", "open-search": "", "class": "", "description": "", "type": ""}, "description": {"parameter": "description", "open-search": "", "class": "", "description": "", "type": ""}, "end_datetime": {"parameter": "end_datetime", "open-search": "", "class": "", "description": "", "type": ""}, "endingDateTime": {"parameter": "endingDateTime", "open-search": "", "class": "", "description": "", "type": ""}, "eo:cloud_cover": {"parameter": "eo:cloud_cover", "open-search": "", "class": "", "description": "", "type": ""}, "eo:snow_cover": {"parameter": "eo:snow_cover", "open-search": "", "class": "", "description": "", "type": ""}, "eodag:default_geometry": {"parameter": "eodag:default_geometry", "open-search": "", "class": "", "description": "", "type": ""}, "eodag:download_link": {"parameter": "eodag:download_link", "open-search": "", "class": "", "description": "", "type": ""}, "eodag:quicklook": {"parameter": "eodag:quicklook", "open-search": "", "class": "", "description": "", "type": ""}, "eodag:thumbnail": {"parameter": "eodag:thumbnail", "open-search": "", "class": "", "description": "", "type": ""}, "extraInformation": {"parameter": "extraInformation", "open-search": "", "class": "", "description": "", "type": ""}, "geometry": {"parameter": "geometry", "open-search": "", "class": "", "description": "", "type": ""}, "grid:code": {"parameter": "grid:code", "open-search": "", "class": "", "description": "", "type": ""}, "gsd": {"parameter": "gsd", "open-search": "", "class": "", "description": "", "type": ""}, "id": {"parameter": "id", "open-search": "", "class": "", "description": "", "type": ""}, "instruments": {"parameter": "instruments", "open-search": "", "class": "", "description": "", "type": ""}, "keywords": {"parameter": "keywords", "open-search": "", "class": "", "description": "", "type": ""}, "license": {"parameter": "license", "open-search": "", "class": "", "description": "", "type": ""}, "links": {"parameter": "links", "open-search": "", "class": "", "description": "", "type": ""}, "order:status": {"parameter": "order:status", "open-search": "", "class": "", "description": "", "type": ""}, "platform": {"parameter": "platform", "open-search": true, "class": "OpenSearch Parameters for Collection Search", "description": "A string with the platform short name (e.g. Sentinel-1)", "type": "String"}, "platformSerialIdentifier": {"parameter": "platformSerialIdentifier", "open-search": true, "class": "OpenSearch Parameters for Collection Search", "description": "A string with the Platform serial identifier", "type": "String"}, "processing:datetime": {"parameter": "processing:datetime", "open-search": "", "class": "", "description": "", "type": ""}, "processing:facility": {"parameter": "processing:facility", "open-search": "", "class": "", "description": "", "type": ""}, "processing:level": {"parameter": "processing:level", "open-search": "", "class": "", "description": "", "type": ""}, "processing:software": {"parameter": "processing:software", "open-search": "", "class": "", "description": "", "type": ""}, "processing:version": {"parameter": "processing:version", "open-search": "", "class": "", "description": "", "type": ""}, "product:acquisition_type": {"parameter": "product:acquisition_type", "open-search": "", "class": "", "description": "", "type": ""}, "product:timeliness": {"parameter": "product:timeliness", "open-search": "", "class": "", "description": "", "type": ""}, "product:type": {"parameter": "product:type", "open-search": "", "class": "", "description": "", "type": ""}, "productInformation": {"parameter": "productInformation", "open-search": "", "class": "", "description": "", "type": ""}, "productType": {"parameter": "productType", "open-search": true, "class": "OpenSearch Parameters for Collection Search", "description": "A string identifying the entry type (e.g. ER02_SAR_IM__0P, MER_RR__1P, SM_SLC__1S, GES_DISC_AIRH3STD_V005)", "type": "String "}, "providers": {"parameter": "providers", "open-search": "", "class": "", "description": "", "type": ""}, "published": {"parameter": "published", "open-search": "", "class": "", "description": "", "type": ""}, "published_after": {"parameter": "published_after", "open-search": "", "class": "", "description": "", "type": ""}, "published_before": {"parameter": "published_before", "open-search": "", "class": "", "description": "", "type": ""}, "qs": {"parameter": "qs", "open-search": "", "class": "", "description": "", "type": ""}, "s1:datatake_id": {"parameter": "s1:datatake_id", "open-search": "", "class": "", "description": "", "type": ""}, "s1:instrument_configuration_ID": {"parameter": "s1:instrument_configuration_ID", "open-search": "", "class": "", "description": "", "type": ""}, "s1:slice_number": {"parameter": "s1:slice_number", "open-search": "", "class": "", "description": "", "type": ""}, "s1:total_slices": {"parameter": "s1:total_slices", "open-search": "", "class": "", "description": "", "type": ""}, "s2:datastrip_id": {"parameter": "s2:datastrip_id", "open-search": "", "class": "", "description": "", "type": ""}, "s2:datatake_id": {"parameter": "s2:datatake_id", "open-search": "", "class": "", "description": "", "type": ""}, "s2:datatake_type": {"parameter": "s2:datatake_type", "open-search": "", "class": "", "description": "", "type": ""}, "s2:product_uri": {"parameter": "s2:product_uri", "open-search": "", "class": "", "description": "", "type": ""}, "s2:tile_id": {"parameter": "s2:tile_id", "open-search": "", "class": "", "description": "", "type": ""}, "sar:beam_ids": {"parameter": "sar:beam_ids", "open-search": "", "class": "", "description": "", "type": ""}, "sar:instrument_mode": {"parameter": "sar:instrument_mode", "open-search": "", "class": "", "description": "", "type": ""}, "sar:polarizations": {"parameter": "sar:polarizations", "open-search": "", "class": "", "description": "", "type": ""}, "sat:absolute_orbit": {"parameter": "sat:absolute_orbit", "open-search": "", "class": "", "description": "", "type": ""}, "sat:orbit_state": {"parameter": "sat:orbit_state", "open-search": "", "class": "", "description": "", "type": ""}, "sat:relative_orbit": {"parameter": "sat:relative_orbit", "open-search": "", "class": "", "description": "", "type": ""}, "sci:doi": {"parameter": "sci:doi", "open-search": "", "class": "", "description": "", "type": ""}, "services": {"parameter": "services", "open-search": "", "class": "", "description": "", "type": ""}, "size": {"parameter": "size", "open-search": "", "class": "", "description": "", "type": ""}, "start_datetime": {"parameter": "start_datetime", "open-search": "", "class": "", "description": "", "type": ""}, "title": {"parameter": "title", "open-search": true, "class": "Additional INSPIRE obligated OpenSearch Parameters for Collection Search", "description": "A name given to the resource", "type": "String "}, "type": {"parameter": "type", "open-search": "", "class": "", "description": "", "type": ""}, "uid": {"parameter": "uid", "open-search": "", "class": "", "description": "", "type": ""}, "updated": {"parameter": "updated", "open-search": "", "class": "", "description": "", "type": ""}, "updated_after": {"parameter": "updated_after", "open-search": "", "class": "", "description": "", "type": ""}, "updated_before": {"parameter": "updated_before", "open-search": "", "class": "", "description": "", "type": ""}, "version": {"parameter": "version", "open-search": "", "class": "", "description": "", "type": ""}}
@@ -1,5 +1,5 @@
1
1
  parameter,cop_dataspace,cop_marine,creodias,earth_search,earth_search_gcs,ecmwf,eumetsat_ds,fedeo_ceda,geodes,peps,planetary_computer,sara,usgs_satapi_aws
2
- :abbr:`platform ([OpenSearch Parameters for Collection Search] A string with the platform short name (e.g. Sentinel-1) (String))`,:green:`queryable metadata`,,:green:`queryable metadata`,:green:`queryable metadata`,:green:`queryable metadata`,,,:green:`queryable metadata`,:green:`queryable metadata`,:green:`queryable metadata`,:green:`queryable metadata`,:green:`queryable metadata`,:green:`queryable metadata`
2
+ :abbr:`platform ([OpenSearch Parameters for Collection Search] A string with the platform short name (e.g. Sentinel-1) (String))`,:green:`queryable metadata`,,:green:`queryable metadata`,:green:`queryable metadata`,:green:`queryable metadata`,,metadata only,:green:`queryable metadata`,:green:`queryable metadata`,:green:`queryable metadata`,:green:`queryable metadata`,:green:`queryable metadata`,:green:`queryable metadata`
3
3
  :abbr:`platformSerialIdentifier ([OpenSearch Parameters for Collection Search] A string with the Platform serial identifier (String))`,metadata only,,metadata only,,,,,,,,,,
4
4
  ":abbr:`productType ([OpenSearch Parameters for Collection Search] A string identifying the entry type (e.g. ER02_SAR_IM__0P, MER_RR__1P, SM_SLC__1S, GES_DISC_AIRH3STD_V005) (String ))`",,,,metadata only,metadata only,,,metadata only,metadata only,,metadata only,,metadata only
5
5
  :abbr:`title ([Additional INSPIRE obligated OpenSearch Parameters for Collection Search] A name given to the resource (String ))`,metadata only,,metadata only,metadata only,metadata only,,metadata only,metadata only,metadata only,metadata only,metadata only,metadata only,metadata only
@@ -57,3 +57,4 @@ Pixel access
57
57
  .. automethod:: eodag_cube.api.product._product.EOProduct.to_xarray
58
58
  .. automethod:: eodag_cube.api.product._product.EOProduct.get_file_obj
59
59
  .. automethod:: eodag_cube.api.product._product.EOProduct.rio_env
60
+ .. automethod:: eodag_cube.api.product._product.EOProduct.augment_from_xarray