eodag 3.9.1__py3-none-any.whl → 3.10.0__py3-none-any.whl
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/plugins/authentication/aws_auth.py +36 -1
- eodag/plugins/authentication/base.py +17 -0
- eodag/plugins/authentication/sas_auth.py +15 -0
- eodag/plugins/download/creodias_s3.py +7 -0
- eodag/resources/ext_collections.json +1 -0
- eodag/resources/ext_product_types.json +1 -1
- eodag/resources/providers.yml +11 -1
- {eodag-3.9.1.dist-info → eodag-3.10.0.dist-info}/METADATA +3 -3
- {eodag-3.9.1.dist-info → eodag-3.10.0.dist-info}/RECORD +13 -12
- {eodag-3.9.1.dist-info → eodag-3.10.0.dist-info}/WHEEL +0 -0
- {eodag-3.9.1.dist-info → eodag-3.10.0.dist-info}/entry_points.txt +0 -0
- {eodag-3.9.1.dist-info → eodag-3.10.0.dist-info}/licenses/LICENSE +0 -0
- {eodag-3.9.1.dist-info → eodag-3.10.0.dist-info}/top_level.txt +0 -0
eodag/resources/providers.yml
CHANGED
|
@@ -1498,6 +1498,7 @@
|
|
|
1498
1498
|
type: AwsAuth
|
|
1499
1499
|
matching_url: s3://
|
|
1500
1500
|
s3_endpoint: https://storage.googleapis.com
|
|
1501
|
+
support_presign_url: False
|
|
1501
1502
|
matching_conf:
|
|
1502
1503
|
s3_endpoint: https://storage.googleapis.com
|
|
1503
1504
|
---
|
|
@@ -2078,6 +2079,14 @@
|
|
|
2078
2079
|
period: 1_5_c
|
|
2079
2080
|
CMIP6_CLIMATE_PROJECTIONS:
|
|
2080
2081
|
dataset: projections-cmip6
|
|
2082
|
+
experiment: historical
|
|
2083
|
+
variable: air_temperature
|
|
2084
|
+
model: access_cm2
|
|
2085
|
+
level: ["1"]
|
|
2086
|
+
year: ["1850"]
|
|
2087
|
+
month: ["01"]
|
|
2088
|
+
metadata_mapping:
|
|
2089
|
+
<<: *month_year
|
|
2081
2090
|
GENERIC_PRODUCT_TYPE:
|
|
2082
2091
|
dataset: '{productType}'
|
|
2083
2092
|
---
|
|
@@ -4295,7 +4304,7 @@
|
|
|
4295
4304
|
quicklook: '$.Assets[?(@.Type="QUICKLOOK")].DownloadLink'
|
|
4296
4305
|
thumbnail: '$.Assets[?(@.Type="QUICKLOOK")].DownloadLink'
|
|
4297
4306
|
download: !plugin
|
|
4298
|
-
type:
|
|
4307
|
+
type: AwsDownload
|
|
4299
4308
|
s3_endpoint: 'https://eodata.cloudferro.com'
|
|
4300
4309
|
s3_bucket: 'eodata'
|
|
4301
4310
|
ssl_verify: true
|
|
@@ -4303,6 +4312,7 @@
|
|
|
4303
4312
|
type: AwsAuth
|
|
4304
4313
|
auth_error_code: 403
|
|
4305
4314
|
s3_endpoint: 'https://eodata.cloudferro.com'
|
|
4315
|
+
support_presign_url: False
|
|
4306
4316
|
matching_conf:
|
|
4307
4317
|
s3_endpoint: 'https://eodata.cloudferro.com'
|
|
4308
4318
|
products:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: eodag
|
|
3
|
-
Version: 3.
|
|
3
|
+
Version: 3.10.0
|
|
4
4
|
Summary: Earth Observation Data Access Gateway
|
|
5
5
|
Home-page: https://github.com/CS-SI/eodag
|
|
6
6
|
Author: CS GROUP - France
|
|
@@ -40,7 +40,7 @@ Requires-Dist: importlib_metadata>=5.0
|
|
|
40
40
|
Requires-Dist: jsonpath-ng
|
|
41
41
|
Requires-Dist: lxml
|
|
42
42
|
Requires-Dist: orjson
|
|
43
|
-
Requires-Dist: pydantic!=2.10.0,>=2.1.0
|
|
43
|
+
Requires-Dist: pydantic!=2.10.0,<2.12.0,>=2.1.0
|
|
44
44
|
Requires-Dist: pydantic_core
|
|
45
45
|
Requires-Dist: PyJWT[crypto]>=2.5.0
|
|
46
46
|
Requires-Dist: pyproj>=2.1.0
|
|
@@ -317,7 +317,7 @@ An eodag instance can be exposed through a STAC compliant REST api from the comm
|
|
|
317
317
|
|
|
318
318
|
.. code-block:: bash
|
|
319
319
|
|
|
320
|
-
docker run -p 5000:5000 --rm csspace/eodag-server:3.
|
|
320
|
+
docker run -p 5000:5000 --rm csspace/eodag-server:3.10.0
|
|
321
321
|
|
|
322
322
|
You can also browse over your STAC API server using `STAC Browser <https://github.com/radiantearth/stac-browser>`_.
|
|
323
323
|
Simply run:
|
|
@@ -23,15 +23,15 @@ eodag/plugins/apis/base.py,sha256=oCEKVtIbOjzNgM3lzaCCtO-DhU2PvGfKaATG6OxR-V8,28
|
|
|
23
23
|
eodag/plugins/apis/ecmwf.py,sha256=TTlxTt93B3c1KxDkwjQiwgnZnjBVlFSro6pov3fgcCA,11455
|
|
24
24
|
eodag/plugins/apis/usgs.py,sha256=M1JcIBIGxbSvDNomy3g-G0OcoegghpFleRiZ8xJDXIQ,19686
|
|
25
25
|
eodag/plugins/authentication/__init__.py,sha256=_LVw42Bb1IhGAZH5xHRaS4b1iFoF9e27KDZOyoSoJHY,1039
|
|
26
|
-
eodag/plugins/authentication/aws_auth.py,sha256=
|
|
27
|
-
eodag/plugins/authentication/base.py,sha256=
|
|
26
|
+
eodag/plugins/authentication/aws_auth.py,sha256=A0sr5mVmCkAwCldlGSGFcZqnthusbcB52THthja77cw,12651
|
|
27
|
+
eodag/plugins/authentication/base.py,sha256=U04WwX3rUHD5BoqhcYonttVLwdAF00gQAzce3X1SYkc,3568
|
|
28
28
|
eodag/plugins/authentication/generic.py,sha256=z-u4WMixeG4nKwc70cUGVBXt3IVheDPA6tQWs2iDH4Q,2673
|
|
29
29
|
eodag/plugins/authentication/header.py,sha256=U_KnUqgZTLHXM5OKdGbH6jRqoQ0uIfOoxO6krUeAAcQ,4284
|
|
30
30
|
eodag/plugins/authentication/keycloak.py,sha256=m5c6Os_T8UGfdXS9SemhuUBhwsC4foxmrVA6VXEXamU,7358
|
|
31
31
|
eodag/plugins/authentication/oauth.py,sha256=KEnC6CKmntuZPKUtsgvh0L-_AO244f1FC6blYWHR_LQ,2113
|
|
32
32
|
eodag/plugins/authentication/openid_connect.py,sha256=lj-9RPz2BADU-1ckawLmuSi3TSexABsDDPCHLp8Frsc,27084
|
|
33
33
|
eodag/plugins/authentication/qsauth.py,sha256=bkepO_sFRIhYm3Dzecx3VJP0Ap37vUuJSRmEY8HrV1U,3947
|
|
34
|
-
eodag/plugins/authentication/sas_auth.py,sha256
|
|
34
|
+
eodag/plugins/authentication/sas_auth.py,sha256=-ye_Bgarni91V7B7XWzMyJwekFhujyRbw1seTa1Xi8w,5777
|
|
35
35
|
eodag/plugins/authentication/token.py,sha256=f2SossIJ_XlnBuOw_OprLNrF1p-uolL_KEX71_BhzKw,15798
|
|
36
36
|
eodag/plugins/authentication/token_exchange.py,sha256=raFIN8UnO9MpqQukDJg4Pog-LJLzq8Bk54_6k9cCwFc,4963
|
|
37
37
|
eodag/plugins/crunch/__init__.py,sha256=58D7kJhEpHJWobIKaNFPynfbSqAWgS90BiHzitqS5Ds,746
|
|
@@ -44,7 +44,7 @@ eodag/plugins/crunch/filter_property.py,sha256=2BKb7wxw1Yi2NTtnPCBtdZ-caJXxlVUUS
|
|
|
44
44
|
eodag/plugins/download/__init__.py,sha256=zqszaeNgYP0YHlZDkLMf6odcwNw0KrAahGpcA-l0kAw,740
|
|
45
45
|
eodag/plugins/download/aws.py,sha256=ZTszeNNU_JZesnINVMpW_7lPCBc0_MA4Xi_7AqTZxjA,46713
|
|
46
46
|
eodag/plugins/download/base.py,sha256=ub217oE_IarzfrSk8DFN6Sfj9aE3VcCENjVGt9xjzKA,30899
|
|
47
|
-
eodag/plugins/download/creodias_s3.py,sha256=
|
|
47
|
+
eodag/plugins/download/creodias_s3.py,sha256=iSS2iqyvzW_SaxYvq2SeFshzHQKv94-NOgqLJsiyL-4,2998
|
|
48
48
|
eodag/plugins/download/http.py,sha256=b5od-j28B0dYxIXoOSNz1OmVgPVqLPD-eO9vfrrUorM,58532
|
|
49
49
|
eodag/plugins/download/s3rest.py,sha256=9gNoCf9UPr8XffuPrZeyf2B67IXoibmOIhSeiH1PIOA,15215
|
|
50
50
|
eodag/plugins/search/__init__.py,sha256=dShNJxU5NzF27aW-PgYtpyKimCibTlgf38PFsf_Rqa8,2086
|
|
@@ -57,10 +57,11 @@ eodag/plugins/search/data_request_search.py,sha256=m38kpTXJT2fC8Mk894KlxKb14dz-n
|
|
|
57
57
|
eodag/plugins/search/qssearch.py,sha256=X4U9VYcHkCj_EGwXbQ9G6iRe97_u3cbatQ0ZSgG4sL4,94886
|
|
58
58
|
eodag/plugins/search/stac_list_assets.py,sha256=OOCMyjD8XD-m39k0SyKMrRi4K8Ii5mOQsA6zSAeQDGI,3435
|
|
59
59
|
eodag/plugins/search/static_stac_search.py,sha256=CPynjpNw0gXa6g6hA2zSkbwhfgU-9IBCmJtknuhnFKk,10515
|
|
60
|
-
eodag/resources/
|
|
60
|
+
eodag/resources/ext_collections.json,sha256=q_XP7evZIdYZJvjucMlDqMBERJnlggcqCeAUmJbw1gU,2586798
|
|
61
|
+
eodag/resources/ext_product_types.json,sha256=5AHQ6O8BqilEQBoXWDdb12FZHJW1CHEfHJPe-RmPKzI,2526068
|
|
61
62
|
eodag/resources/locations_conf_template.yml,sha256=_eBv-QKHYMIKhY0b0kp4Ee33RsayxN8LWH3kDXxfFSk,986
|
|
62
63
|
eodag/resources/product_types.yml,sha256=4qEeKi7rYGTBWmNAsqk40ml-tD4V0AMeiZxqkN7TYhM,422350
|
|
63
|
-
eodag/resources/providers.yml,sha256=
|
|
64
|
+
eodag/resources/providers.yml,sha256=BKxaV9wSWCdoy_PLGnNwjp7-3vBS3vEvUv3TI226eE8,232043
|
|
64
65
|
eodag/resources/stac.yml,sha256=QnrBulL2pHZrPH4pI7rQtKDxmgP2ZbBcufFqFJPCL7A,10473
|
|
65
66
|
eodag/resources/stac_api.yml,sha256=2FdQL_qBTIUlu6KH836T4CXBKO9AvVxA_Ub3J1RP81A,68881
|
|
66
67
|
eodag/resources/stac_provider.yml,sha256=0nldbieF2CGf6QyqjEa-R96V3H1pV-jJwzRmaS2VzaQ,6804
|
|
@@ -107,9 +108,9 @@ eodag/utils/repr.py,sha256=o6NhScogBPI69m83GsHh3hXONb9-byPfuWgJ1U39Kfw,5463
|
|
|
107
108
|
eodag/utils/requests.py,sha256=avNHKrOZ7Kp6lUA7u4kqupIth9MoirLzDsMrrmQDt4s,4560
|
|
108
109
|
eodag/utils/s3.py,sha256=eESanPLVv-Luqo_o1WgUuO7YLqiXg_iEzHZ15fu-ugY,30063
|
|
109
110
|
eodag/utils/stac_reader.py,sha256=8r6amio5EtwGF9iu9zHaGDz4oUPKKeXRuyTzPNakrO4,9406
|
|
110
|
-
eodag-3.
|
|
111
|
-
eodag-3.
|
|
112
|
-
eodag-3.
|
|
113
|
-
eodag-3.
|
|
114
|
-
eodag-3.
|
|
115
|
-
eodag-3.
|
|
111
|
+
eodag-3.10.0.dist-info/licenses/LICENSE,sha256=4MAecetnRTQw5DlHtiikDSzKWO1xVLwzM5_DsPMYlnE,10172
|
|
112
|
+
eodag-3.10.0.dist-info/METADATA,sha256=tPcEC8TjW6HoXZB8XZ-GsnYEY1E_jcXht20ZjemEJjs,15530
|
|
113
|
+
eodag-3.10.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
114
|
+
eodag-3.10.0.dist-info/entry_points.txt,sha256=4b6l049qcMbT60_9GebzhtCOVWLGa66_-sesZWqzLQg,2519
|
|
115
|
+
eodag-3.10.0.dist-info/top_level.txt,sha256=025IMTmVe5eDjIPP4KEFQKespOPMQdne4U4jOy8nftM,6
|
|
116
|
+
eodag-3.10.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|