eodag 3.9.0__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/api/product/metadata_mapping.py +26 -30
- eodag/plugins/authentication/aws_auth.py +44 -2
- 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 +15 -5
- eodag/resources/stac_provider.yml +1 -1
- {eodag-3.9.0.dist-info → eodag-3.10.0.dist-info}/METADATA +3 -3
- {eodag-3.9.0.dist-info → eodag-3.10.0.dist-info}/RECORD +15 -14
- {eodag-3.9.0.dist-info → eodag-3.10.0.dist-info}/WHEEL +0 -0
- {eodag-3.9.0.dist-info → eodag-3.10.0.dist-info}/entry_points.txt +0 -0
- {eodag-3.9.0.dist-info → eodag-3.10.0.dist-info}/licenses/LICENSE +0 -0
- {eodag-3.9.0.dist-info → eodag-3.10.0.dist-info}/top_level.txt +0 -0
eodag/resources/providers.yml
CHANGED
|
@@ -752,7 +752,7 @@
|
|
|
752
752
|
- "Attributes/OData.CSC.StringAttribute/any(att:att/Name eq 'tileId' and att/OData.CSC.StringAttribute/Value eq '{tileIdentifier}')"
|
|
753
753
|
- "ContentDate/Start lt {completionTimeFromAscendingNode#to_iso_utc_datetime}"
|
|
754
754
|
- "ContentDate/End gt {startTimeFromAscendingNode#to_iso_utc_datetime}"
|
|
755
|
-
- "Attributes/OData.CSC.StringAttribute/any(att:att/Name eq 'polarisationChannels' and att/OData.CSC.StringAttribute/Value eq '{polarizationChannels#replace_str('
|
|
755
|
+
- "Attributes/OData.CSC.StringAttribute/any(att:att/Name eq 'polarisationChannels' and att/OData.CSC.StringAttribute/Value eq '{polarizationChannels#replace_str('\\\\+','%26')}')"
|
|
756
756
|
- contains(Name,'{id}')
|
|
757
757
|
discover_metadata:
|
|
758
758
|
auto_discovery: true
|
|
@@ -1402,7 +1402,7 @@
|
|
|
1402
1402
|
S2_MSI_L2A_COG:
|
|
1403
1403
|
productType: sentinel-2-l2a
|
|
1404
1404
|
metadata_mapping:
|
|
1405
|
-
assets: '{$.assets#dict_filter_and_sub("$[?(@.href =~ \"^https://sentinel-cogs
|
|
1405
|
+
assets: '{$.assets#dict_filter_and_sub("$[?(@.href =~ \"^https://sentinel-cogs.*/\")]","https\u003A//[a-z0-9-\.]+/","s3\u003A//sentinel-cogs/")}'
|
|
1406
1406
|
LANDSAT_C2L2:
|
|
1407
1407
|
productType: landsat-c2-l2
|
|
1408
1408
|
NAIP:
|
|
@@ -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
|
---
|
|
@@ -2532,7 +2541,7 @@
|
|
|
2532
2541
|
- "Attributes/OData.CSC.StringAttribute/any(att:att/Name eq 'orbitDirection' and att/OData.CSC.StringAttribute/Value eq '{orbitDirection#to_upper}')"
|
|
2533
2542
|
- "Attributes/OData.CSC.DoubleAttribute/any(att:att/Name eq 'cloudCover' and att/OData.CSC.DoubleAttribute/Value le {cloudCover})"
|
|
2534
2543
|
- "Attributes/OData.CSC.StringAttribute/any(att:att/Name eq 'operationalMode' and att/OData.CSC.StringAttribute/Value eq '{sensorMode}')"
|
|
2535
|
-
- "Attributes/OData.CSC.StringAttribute/any(att:att/Name eq 'polarisationChannels' and att/OData.CSC.StringAttribute/Value eq '{polarizationChannels#replace_str('
|
|
2544
|
+
- "Attributes/OData.CSC.StringAttribute/any(att:att/Name eq 'polarisationChannels' and att/OData.CSC.StringAttribute/Value eq '{polarizationChannels#replace_str('\\\\+','%26')}')"
|
|
2536
2545
|
- "Attributes/OData.CSC.StringAttribute/any(att:att/Name eq 'tileId' and att/OData.CSC.StringAttribute/Value eq '{tileIdentifier}')"
|
|
2537
2546
|
- "ModificationDate gt {modifiedAfter#to_iso_utc_datetime}"
|
|
2538
2547
|
- "ModificationDate lt {modifiedBefore#to_iso_utc_datetime}"
|
|
@@ -4199,7 +4208,7 @@
|
|
|
4199
4208
|
- "Attributes/OData.CSC.StringAttribute/any(att:att/Name eq 'tileId' and att/OData.CSC.StringAttribute/Value eq '{tileIdentifier}')"
|
|
4200
4209
|
- "ContentDate/Start lt {completionTimeFromAscendingNode#to_iso_utc_datetime}"
|
|
4201
4210
|
- "ContentDate/End gt {startTimeFromAscendingNode#to_iso_utc_datetime}"
|
|
4202
|
-
- "Attributes/OData.CSC.StringAttribute/any(att:att/Name eq 'polarisationChannels' and att/OData.CSC.StringAttribute/Value eq '{polarizationChannels#replace_str('
|
|
4211
|
+
- "Attributes/OData.CSC.StringAttribute/any(att:att/Name eq 'polarisationChannels' and att/OData.CSC.StringAttribute/Value eq '{polarizationChannels#replace_str('\\\\+','%26')}')"
|
|
4203
4212
|
- contains(Name,'{id}')
|
|
4204
4213
|
discover_metadata:
|
|
4205
4214
|
auto_discovery: true
|
|
@@ -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:
|
|
@@ -140,7 +140,7 @@ search:
|
|
|
140
140
|
- '$.properties."view:sun_elevation"'
|
|
141
141
|
polarizationChannels:
|
|
142
142
|
- '{{"query":{{"sar:polarizations":{{"eq":"{polarizationChannels}"}}}}}}'
|
|
143
|
-
- '{$.properties.
|
|
143
|
+
- '{$.properties.sar:polarizations#csv_list(+)}'
|
|
144
144
|
dopplerFrequency:
|
|
145
145
|
- '{{"query":{{"sar:frequency_band":{{"eq":"{dopplerFrequency}"}}}}}}'
|
|
146
146
|
- '$.properties."sar:frequency_band"'
|
|
@@ -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:
|
|
@@ -9,7 +9,7 @@ eodag/api/search_result.py,sha256=2Y2W3xDUyainwcyYBQljGRi6oyOqTTspgCgIlNG4kCc,14
|
|
|
9
9
|
eodag/api/product/__init__.py,sha256=k5iNHxXX6wDLsUo725W4U_Jz8CVbZTbfE8R9s1YQwKA,2508
|
|
10
10
|
eodag/api/product/_assets.py,sha256=9bWIe_SYvsQO-q_lQFd7SxhUIWv7feze2-wnXOe8hhs,7570
|
|
11
11
|
eodag/api/product/_product.py,sha256=UXCaWUtkAGWVCfF68zWCYDoEUUfxAdC0RGaNLZ3vUQ8,26794
|
|
12
|
-
eodag/api/product/metadata_mapping.py,sha256=
|
|
12
|
+
eodag/api/product/metadata_mapping.py,sha256=oACFPL14EdbIzD83Voi81-sFts_VD9N-3OsX5IN9hFg,79186
|
|
13
13
|
eodag/api/product/drivers/__init__.py,sha256=Sy9bGmDhWCAxvxRUf3QGijjQoQvzS1LSUMN34Usq6fM,3357
|
|
14
14
|
eodag/api/product/drivers/base.py,sha256=iPAE5Jx3isxmHHFPP-jysdUylYbsbIq6UejU3qsMROE,4111
|
|
15
15
|
eodag/api/product/drivers/generic.py,sha256=obwH8paf2TP7afnjfx4GxSZPSrTs3suTYJWQvebmigY,2207
|
|
@@ -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,13 +57,14 @@ 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
|
-
eodag/resources/stac_provider.yml,sha256=
|
|
67
|
+
eodag/resources/stac_provider.yml,sha256=0nldbieF2CGf6QyqjEa-R96V3H1pV-jJwzRmaS2VzaQ,6804
|
|
67
68
|
eodag/resources/user_conf_template.yml,sha256=jqyWzPDm7_61ooVG7JcgHnfOypNnXvOie_tqROdSeRs,7348
|
|
68
69
|
eodag/resources/shp/ne_110m_admin_0_map_units.VERSION.txt,sha256=CHSo_jbv-4d4D0MYRbWn2FvmV_K9mYzo7qznF4YNO3g,7
|
|
69
70
|
eodag/resources/shp/ne_110m_admin_0_map_units.cpg,sha256=FG1nif_gM6UpfBrQRuamLuNTGbhrAhRE8FtuoqqKH0o,6
|
|
@@ -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
|