eodag 3.2.1__py3-none-any.whl → 3.3.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/core.py +2 -1
- eodag/api/search_result.py +3 -4
- eodag/config.py +3 -0
- eodag/plugins/authentication/token.py +16 -1
- eodag/plugins/download/http.py +46 -17
- eodag/plugins/search/build_search_result.py +269 -83
- eodag/resources/ext_product_types.json +1 -1
- eodag/resources/providers.yml +57 -10
- eodag/utils/__init__.py +7 -1
- {eodag-3.2.1.dist-info → eodag-3.3.0.dist-info}/METADATA +2 -2
- {eodag-3.2.1.dist-info → eodag-3.3.0.dist-info}/RECORD +15 -15
- {eodag-3.2.1.dist-info → eodag-3.3.0.dist-info}/WHEEL +0 -0
- {eodag-3.2.1.dist-info → eodag-3.3.0.dist-info}/entry_points.txt +0 -0
- {eodag-3.2.1.dist-info → eodag-3.3.0.dist-info}/licenses/LICENSE +0 -0
- {eodag-3.2.1.dist-info → eodag-3.3.0.dist-info}/top_level.txt +0 -0
eodag/resources/providers.yml
CHANGED
|
@@ -1602,7 +1602,6 @@
|
|
|
1602
1602
|
- '{$.completionTimeFromAscendingNode#to_iso_date}'
|
|
1603
1603
|
auth: !plugin
|
|
1604
1604
|
type: HTTPHeaderAuth
|
|
1605
|
-
matching_url: https://ads.atmosphere.copernicus.eu
|
|
1606
1605
|
ssl_verify: true
|
|
1607
1606
|
headers:
|
|
1608
1607
|
PRIVATE-TOKEN: "{apikey}"
|
|
@@ -1616,13 +1615,19 @@
|
|
|
1616
1615
|
order_on_response:
|
|
1617
1616
|
metadata_mapping:
|
|
1618
1617
|
orderId: $.json.jobID
|
|
1619
|
-
orderStatusLink: https://ads.atmosphere.copernicus.eu/api/retrieve/v1/jobs/{orderId}
|
|
1618
|
+
orderStatusLink: https://ads.atmosphere.copernicus.eu/api/retrieve/v1/jobs/{orderId}?request=true
|
|
1620
1619
|
searchLink: https://ads.atmosphere.copernicus.eu/api/retrieve/v1/jobs/{orderId}/results
|
|
1621
1620
|
order_status:
|
|
1622
1621
|
request:
|
|
1623
1622
|
method: GET
|
|
1624
1623
|
metadata_mapping:
|
|
1625
1624
|
status: $.json.status
|
|
1625
|
+
order:date: $.json.created
|
|
1626
|
+
creationDate: $.json.created
|
|
1627
|
+
publicationDate: $.json.finished
|
|
1628
|
+
modificationDate: $.json.updated
|
|
1629
|
+
ecmwf:dataset: $.json.processID
|
|
1630
|
+
request_params: $.json.metadata.request.ids
|
|
1626
1631
|
error:
|
|
1627
1632
|
status: failed
|
|
1628
1633
|
success:
|
|
@@ -1633,7 +1638,9 @@
|
|
|
1633
1638
|
downloadLink: $.json.asset.value.href
|
|
1634
1639
|
search: !plugin
|
|
1635
1640
|
type: ECMWFSearch
|
|
1641
|
+
need_auth: true
|
|
1636
1642
|
ssl_verify: true
|
|
1643
|
+
timeout: 30
|
|
1637
1644
|
end_date_excluded: false
|
|
1638
1645
|
dates_required: true
|
|
1639
1646
|
remove_from_query:
|
|
@@ -1782,7 +1789,7 @@
|
|
|
1782
1789
|
- host
|
|
1783
1790
|
url: https://cds.climate.copernicus.eu
|
|
1784
1791
|
# anchors to avoid duplications
|
|
1785
|
-
|
|
1792
|
+
anchor_nday_month_year: &nday_month_year
|
|
1786
1793
|
completionTimeFromAscendingNode:
|
|
1787
1794
|
- |
|
|
1788
1795
|
{{
|
|
@@ -1829,7 +1836,6 @@
|
|
|
1829
1836
|
- '{$.completionTimeFromAscendingNode#to_iso_date}'
|
|
1830
1837
|
auth: !plugin
|
|
1831
1838
|
type: HTTPHeaderAuth
|
|
1832
|
-
matching_url: https://cds.climate.copernicus.eu
|
|
1833
1839
|
ssl_verify: true
|
|
1834
1840
|
headers:
|
|
1835
1841
|
PRIVATE-TOKEN: "{apikey}"
|
|
@@ -1837,19 +1843,25 @@
|
|
|
1837
1843
|
type: HTTPDownload
|
|
1838
1844
|
timeout: 30
|
|
1839
1845
|
ssl_verify: true
|
|
1840
|
-
auth_error_code: 401
|
|
1841
1846
|
order_enabled: true
|
|
1847
|
+
auth_error_code: 401
|
|
1842
1848
|
order_method: POST
|
|
1843
1849
|
order_on_response:
|
|
1844
1850
|
metadata_mapping:
|
|
1845
1851
|
orderId: $.json.jobID
|
|
1846
|
-
orderStatusLink: https://cds.climate.copernicus.eu/api/retrieve/v1/jobs/{orderId}
|
|
1852
|
+
orderStatusLink: https://cds.climate.copernicus.eu/api/retrieve/v1/jobs/{orderId}?request=true
|
|
1847
1853
|
searchLink: https://cds.climate.copernicus.eu/api/retrieve/v1/jobs/{orderId}/results
|
|
1848
1854
|
order_status:
|
|
1849
1855
|
request:
|
|
1850
1856
|
method: GET
|
|
1851
1857
|
metadata_mapping:
|
|
1852
1858
|
status: $.json.status
|
|
1859
|
+
order:date: $.json.created
|
|
1860
|
+
creationDate: $.json.created
|
|
1861
|
+
publicationDate: $.json.finished
|
|
1862
|
+
modificationDate: $.json.updated
|
|
1863
|
+
ecmwf:dataset: $.json.processID
|
|
1864
|
+
request_params: $.json.metadata.request.ids
|
|
1853
1865
|
error:
|
|
1854
1866
|
status: failed
|
|
1855
1867
|
success:
|
|
@@ -1860,7 +1872,9 @@
|
|
|
1860
1872
|
downloadLink: $.json.asset.value.href
|
|
1861
1873
|
search: !plugin
|
|
1862
1874
|
type: ECMWFSearch
|
|
1875
|
+
need_auth: true
|
|
1863
1876
|
ssl_verify: true
|
|
1877
|
+
timeout: 30
|
|
1864
1878
|
end_date_excluded: false
|
|
1865
1879
|
dates_required: true
|
|
1866
1880
|
remove_from_query:
|
|
@@ -3442,6 +3456,7 @@
|
|
|
3442
3456
|
token_type: json
|
|
3443
3457
|
token_key: access_token
|
|
3444
3458
|
refresh_token_key: refresh_token
|
|
3459
|
+
token_expiration_key: expires_in
|
|
3445
3460
|
download: !plugin
|
|
3446
3461
|
type: HTTPDownload
|
|
3447
3462
|
base_uri: https://gateway.prod.wekeo2.eu/hda-broker/api/v1/dataaccess
|
|
@@ -3513,6 +3528,7 @@
|
|
|
3513
3528
|
search: !plugin
|
|
3514
3529
|
type: WekeoECMWFSearch
|
|
3515
3530
|
api_endpoint: https://gateway.prod.wekeo2.eu/hda-broker/api/v1/dataaccess/search
|
|
3531
|
+
need_auth: true
|
|
3516
3532
|
timeout: 60
|
|
3517
3533
|
need_auth: true
|
|
3518
3534
|
auth_error_code: 401
|
|
@@ -3535,6 +3551,9 @@
|
|
|
3535
3551
|
completionTimeFromAscendingNode:
|
|
3536
3552
|
- '{{"enddate": "{completionTimeFromAscendingNode#to_iso_utc_datetime}"}}'
|
|
3537
3553
|
- $.properties.enddate
|
|
3554
|
+
productType:
|
|
3555
|
+
- dataset_id
|
|
3556
|
+
- $.dataset
|
|
3538
3557
|
downloadLink: $.properties.location
|
|
3539
3558
|
dataset:
|
|
3540
3559
|
- dataset_id
|
|
@@ -3907,12 +3926,12 @@
|
|
|
3907
3926
|
- '$.null'
|
|
3908
3927
|
auth: !plugin
|
|
3909
3928
|
type: TokenAuth
|
|
3910
|
-
matching_url: https://[-\w\.]+.wekeo2.eu
|
|
3911
3929
|
auth_uri: 'https://gateway.prod.wekeo2.eu/hda-broker/gettoken'
|
|
3912
3930
|
refresh_uri: 'https://gateway.prod.wekeo2.eu/hda-broker/refreshtoken'
|
|
3913
3931
|
token_type: json
|
|
3914
3932
|
token_key: access_token
|
|
3915
3933
|
refresh_token_key: refresh_token
|
|
3934
|
+
token_expiration_key: expires_in
|
|
3916
3935
|
download: !plugin
|
|
3917
3936
|
type: HTTPDownload
|
|
3918
3937
|
auth_error_code: 401
|
|
@@ -3927,7 +3946,11 @@
|
|
|
3927
3946
|
method: GET
|
|
3928
3947
|
metadata_mapping:
|
|
3929
3948
|
status: $.json.features[0].status
|
|
3949
|
+
order:date: $.json.features[0].started_at
|
|
3950
|
+
creationDate: $.json.features[0].started_at
|
|
3930
3951
|
message: $.json.features[0].message
|
|
3952
|
+
orderId: $.json.features[0]._id
|
|
3953
|
+
ecmwf:dataset: $.json.features[0].dataset_id
|
|
3931
3954
|
error:
|
|
3932
3955
|
status: Error
|
|
3933
3956
|
success:
|
|
@@ -4427,6 +4450,7 @@
|
|
|
4427
4450
|
url: https://polytope.lumi.apps.dte.destination-earth.eu/openapi
|
|
4428
4451
|
search: !plugin
|
|
4429
4452
|
type: ECMWFSearch
|
|
4453
|
+
need_auth: true
|
|
4430
4454
|
ssl_verify: true
|
|
4431
4455
|
dates_required: True
|
|
4432
4456
|
discover_queryables:
|
|
@@ -4438,6 +4462,9 @@
|
|
|
4438
4462
|
completionTimeFromAscendingNode:
|
|
4439
4463
|
- '{{"date": "{startTimeFromAscendingNode#to_non_separated_date}/to/{completionTimeFromAscendingNode#to_non_separated_date}"}}'
|
|
4440
4464
|
- '{$.completionTimeFromAscendingNode#to_iso_utc_datetime}'
|
|
4465
|
+
productType:
|
|
4466
|
+
- dataset
|
|
4467
|
+
- $.dataset
|
|
4441
4468
|
qs: $.qs
|
|
4442
4469
|
orderLink: 'https://polytope.lumi.apps.dte.destination-earth.eu/api/v1/requests/destination-earth?{{"verb": "retrieve", "request": {qs#to_geojson} }}'
|
|
4443
4470
|
products:
|
|
@@ -4500,7 +4527,6 @@
|
|
|
4500
4527
|
DT_CLIMATE_ADAPTATION:
|
|
4501
4528
|
auth: !plugin
|
|
4502
4529
|
type: OIDCAuthorizationCodeFlowAuth
|
|
4503
|
-
matching_url: https://[-\w\.]+.dte.destination-earth.eu
|
|
4504
4530
|
oidc_config_url: https://auth.destine.eu/realms/desp/.well-known/openid-configuration
|
|
4505
4531
|
redirect_uri: https://polytope.lumi.apps.dte.destination-earth.eu/
|
|
4506
4532
|
client_id: polytope-api-public
|
|
@@ -5503,6 +5529,7 @@
|
|
|
5503
5529
|
grant_type: client_credentials
|
|
5504
5530
|
token_type: json
|
|
5505
5531
|
token_key: access_token
|
|
5532
|
+
token_expiration_key: expires_in
|
|
5506
5533
|
ssl_verify: true
|
|
5507
5534
|
|
|
5508
5535
|
---
|
|
@@ -5735,6 +5762,13 @@
|
|
|
5735
5762
|
cloudCover:
|
|
5736
5763
|
- '{{"query":{{"eo:cloud_cover":{{"lte":{cloudCover}}}}}}}'
|
|
5737
5764
|
- '$.properties."eo:cloud_cover"'
|
|
5765
|
+
# OpenSearch Parameters for Acquistion Parameters Search (Table 6)
|
|
5766
|
+
startTimeFromAscendingNode:
|
|
5767
|
+
- '{{"query":{{"end_datetime":{{"gte":"{startTimeFromAscendingNode#to_iso_utc_datetime}"}}}}}}'
|
|
5768
|
+
- '$.properties.start_datetime'
|
|
5769
|
+
completionTimeFromAscendingNode:
|
|
5770
|
+
- '{{"query":{{"start_datetime":{{"lte":"{completionTimeFromAscendingNode#to_iso_utc_datetime}"}}}}}}'
|
|
5771
|
+
- '$.properties.end_datetime'
|
|
5738
5772
|
swathIdentifier:
|
|
5739
5773
|
- '{{"query":{{"swath":{{"eq":"{swathIdentifier}"}}}}}}'
|
|
5740
5774
|
- '$.properties.swath'
|
|
@@ -5851,6 +5885,13 @@
|
|
|
5851
5885
|
cloudCover:
|
|
5852
5886
|
- '{{"query":{{"eo:cloud_cover":{{"lte":{cloudCover}}}}}}}'
|
|
5853
5887
|
- '$.properties."eo:cloud_cover"'
|
|
5888
|
+
# OpenSearch Parameters for Acquistion Parameters Search (Table 6)
|
|
5889
|
+
startTimeFromAscendingNode:
|
|
5890
|
+
- '{{"query":{{"end_datetime":{{"gte":"{startTimeFromAscendingNode#to_iso_utc_datetime}"}}}}}}'
|
|
5891
|
+
- '$.properties.start_datetime'
|
|
5892
|
+
completionTimeFromAscendingNode:
|
|
5893
|
+
- '{{"query":{{"start_datetime":{{"lte":"{completionTimeFromAscendingNode#to_iso_utc_datetime}"}}}}}}'
|
|
5894
|
+
- '$.properties.end_datetime'
|
|
5854
5895
|
swathIdentifier:
|
|
5855
5896
|
- '{{"query":{{"swath":{{"eq":"{swathIdentifier}"}}}}}}'
|
|
5856
5897
|
- '$.properties.swath'
|
|
@@ -5965,7 +6006,6 @@
|
|
|
5965
6006
|
- '{$.completionTimeFromAscendingNode#to_iso_date}'
|
|
5966
6007
|
auth: !plugin
|
|
5967
6008
|
type: HTTPHeaderAuth
|
|
5968
|
-
matching_url: https://ewds.climate.copernicus.eu
|
|
5969
6009
|
ssl_verify: true
|
|
5970
6010
|
headers:
|
|
5971
6011
|
PRIVATE-TOKEN: "{apikey}"
|
|
@@ -5980,13 +6020,19 @@
|
|
|
5980
6020
|
order_on_response:
|
|
5981
6021
|
metadata_mapping:
|
|
5982
6022
|
orderId: $.json.jobID
|
|
5983
|
-
orderStatusLink: https://ewds.climate.copernicus.eu/api/retrieve/v1/jobs/{orderId}
|
|
6023
|
+
orderStatusLink: https://ewds.climate.copernicus.eu/api/retrieve/v1/jobs/{orderId}?request=true
|
|
5984
6024
|
searchLink: https://ewds.climate.copernicus.eu/api/retrieve/v1/jobs/{orderId}/results
|
|
5985
6025
|
order_status:
|
|
5986
6026
|
request:
|
|
5987
6027
|
method: GET
|
|
5988
6028
|
metadata_mapping:
|
|
5989
6029
|
status: $.json.status
|
|
6030
|
+
order:date: $.json.created
|
|
6031
|
+
creationDate: $.json.created
|
|
6032
|
+
publicationDate: $.json.finished
|
|
6033
|
+
modificationDate: $.json.updated
|
|
6034
|
+
ecmwf:dataset: $.json.processID
|
|
6035
|
+
request_params: $.json.metadata.request.ids
|
|
5990
6036
|
error:
|
|
5991
6037
|
status: failed
|
|
5992
6038
|
success:
|
|
@@ -5997,6 +6043,7 @@
|
|
|
5997
6043
|
downloadLink: $.json.asset.value.href
|
|
5998
6044
|
search: !plugin
|
|
5999
6045
|
type: ECMWFSearch
|
|
6046
|
+
need_auth: true
|
|
6000
6047
|
ssl_verify: true
|
|
6001
6048
|
end_date_excluded: false
|
|
6002
6049
|
dates_required: True
|
eodag/utils/__init__.py
CHANGED
|
@@ -1192,10 +1192,16 @@ def get_geometry_from_various(
|
|
|
1192
1192
|
class MockResponse:
|
|
1193
1193
|
"""Fake requests response"""
|
|
1194
1194
|
|
|
1195
|
-
def __init__(
|
|
1195
|
+
def __init__(
|
|
1196
|
+
self,
|
|
1197
|
+
json_data: Any = None,
|
|
1198
|
+
status_code: int = 200,
|
|
1199
|
+
headers: Optional[dict[str, Any]] = None,
|
|
1200
|
+
) -> None:
|
|
1196
1201
|
self.json_data = json_data
|
|
1197
1202
|
self.status_code = status_code
|
|
1198
1203
|
self.content = json_data
|
|
1204
|
+
self.headers = headers
|
|
1199
1205
|
|
|
1200
1206
|
def json(self) -> Any:
|
|
1201
1207
|
"""Return json data"""
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: eodag
|
|
3
|
-
Version: 3.
|
|
3
|
+
Version: 3.3.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
|
|
@@ -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.3.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:
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
eodag/__init__.py,sha256=qADIO6H3KR0CMs0qePdJROjSzcGnHaYpv-RFIk18WGQ,1608
|
|
2
2
|
eodag/cli.py,sha256=63QvLzyZEf6dsTB1jK_80lOTtp6fbjoSJROqKIL-mR4,29959
|
|
3
|
-
eodag/config.py,sha256=
|
|
3
|
+
eodag/config.py,sha256=W2cKC2Br00Nh8-_-LHWF4gpcjhQpj51w0my7f1niI60,45980
|
|
4
4
|
eodag/crunch.py,sha256=fLVAPGVPw31N_DrnFk4gkCpQZLMY8oBhK6NUSYmdr24,1099
|
|
5
5
|
eodag/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
6
|
eodag/api/__init__.py,sha256=ytr30NUVmEtmJTsp3QCwkCIhS1nF6UlFCv0vmySHN7g,735
|
|
7
|
-
eodag/api/core.py,sha256=
|
|
8
|
-
eodag/api/search_result.py,sha256=
|
|
7
|
+
eodag/api/core.py,sha256=L0xuyoxnbbu3ZdvGcO5Yj6q8-ezzkX35kZ3wJkdupkw,109502
|
|
8
|
+
eodag/api/search_result.py,sha256=Qj3-2ru7lo3VHQZ9SMMRxykVU5PtEbW_dkgMp1HEe8U,8164
|
|
9
9
|
eodag/api/product/__init__.py,sha256=klSKudmnHHeXvcwIX6Y30UTiP39tMfTwLNexSnAZnx0,1154
|
|
10
10
|
eodag/api/product/_assets.py,sha256=9bWIe_SYvsQO-q_lQFd7SxhUIWv7feze2-wnXOe8hhs,7570
|
|
11
11
|
eodag/api/product/_product.py,sha256=1Jz-oPg65Njc7DOWw4ADT9QmNXReiD1LeXFDosnXsOA,23458
|
|
@@ -32,7 +32,7 @@ eodag/plugins/authentication/oauth.py,sha256=fCMx7OxS3JNO9lLZhQNnL9lsBB9nFwZJLEY
|
|
|
32
32
|
eodag/plugins/authentication/openid_connect.py,sha256=LbpQzekxin_bLrKfk7bzU3LGxlfaABSm1fwx7S1O58M,24913
|
|
33
33
|
eodag/plugins/authentication/qsauth.py,sha256=bkepO_sFRIhYm3Dzecx3VJP0Ap37vUuJSRmEY8HrV1U,3947
|
|
34
34
|
eodag/plugins/authentication/sas_auth.py,sha256=gZp5UDeAi6iEi-IXv_RjrmAVpQCD5s9A0b3V7HV6KnU,4773
|
|
35
|
-
eodag/plugins/authentication/token.py,sha256=
|
|
35
|
+
eodag/plugins/authentication/token.py,sha256=1aQ_R1PMo47VUU93AQiC0oV5Dh5-xsMhDwP1ilgmZCQ,13645
|
|
36
36
|
eodag/plugins/authentication/token_exchange.py,sha256=m0KHc4KOhlw0YYXCWEAwB7n7cJLScq3pXa6M6fiXNAQ,4902
|
|
37
37
|
eodag/plugins/crunch/__init__.py,sha256=58D7kJhEpHJWobIKaNFPynfbSqAWgS90BiHzitqS5Ds,746
|
|
38
38
|
eodag/plugins/crunch/base.py,sha256=XW4HISgR0UswiEZmE4t42HxnSxknZBtVpuK8XVLYHzU,1415
|
|
@@ -45,11 +45,11 @@ eodag/plugins/download/__init__.py,sha256=zqszaeNgYP0YHlZDkLMf6odcwNw0KrAahGpcA-
|
|
|
45
45
|
eodag/plugins/download/aws.py,sha256=SwyiF1j2MBvUJi-LwVT8NmQfxZYRfi7kk5Uxd8vFVW8,58623
|
|
46
46
|
eodag/plugins/download/base.py,sha256=ulkGfiY2qMtzyEPdUlP8CZ6w5Bqi2hckuX-sGqpkVeQ,29994
|
|
47
47
|
eodag/plugins/download/creodias_s3.py,sha256=RoEhYHtsPDbfrZhBllYoek0r7YzP8Upf5CPgc-PnlZM,4151
|
|
48
|
-
eodag/plugins/download/http.py,sha256=
|
|
48
|
+
eodag/plugins/download/http.py,sha256=Rg6NOcxKHSoDOzqi_nY9rzb_pJ-RrnVuevs4AqsS5uw,58110
|
|
49
49
|
eodag/plugins/download/s3rest.py,sha256=BYkKglGhTVyR0A-8ls5gLhWOPwc_DgB4aydj79wpqoM,14825
|
|
50
50
|
eodag/plugins/search/__init__.py,sha256=bBrl3TffoU1wVpaeXmTEIailoh9W6fla4IP-8SWqA9U,2019
|
|
51
51
|
eodag/plugins/search/base.py,sha256=b9zAPLQITBSOJ9n5zBxtiHlPkQwACjjJkD894oYZ7L8,18555
|
|
52
|
-
eodag/plugins/search/build_search_result.py,sha256=
|
|
52
|
+
eodag/plugins/search/build_search_result.py,sha256=ZWd87uPrbzAZTfSUA9-OMvBbsaZtJ0fAADzrojp-3FI,56808
|
|
53
53
|
eodag/plugins/search/cop_marine.py,sha256=pRWNY9MXY-XzlpQjqOI8ImOiNUehv9pwNl6oR9r171w,19720
|
|
54
54
|
eodag/plugins/search/creodias_s3.py,sha256=rBZf3Uza7z3VuBdoUJQ9kuufGgACKVsEvK3phUo7C7M,3379
|
|
55
55
|
eodag/plugins/search/csw.py,sha256=de8CNjz4bjEny27V0RXC7V8LRz0Ik3yqQVjTAc_JlyA,12548
|
|
@@ -57,10 +57,10 @@ eodag/plugins/search/data_request_search.py,sha256=yrKu3EXhn6Utyai3qv5NPnH-V4EuG
|
|
|
57
57
|
eodag/plugins/search/qssearch.py,sha256=WZYKd0cySgbcF6RKObz-Sc55c3gXRZQCKJXM1sdtR84,91586
|
|
58
58
|
eodag/plugins/search/stac_list_assets.py,sha256=OOCMyjD8XD-m39k0SyKMrRi4K8Ii5mOQsA6zSAeQDGI,3435
|
|
59
59
|
eodag/plugins/search/static_stac_search.py,sha256=rfcKBD-0-gDFg6jbR_XCsVH1t9Yf9HIlnFE_Drr0BAs,9259
|
|
60
|
-
eodag/resources/ext_product_types.json,sha256=
|
|
60
|
+
eodag/resources/ext_product_types.json,sha256=868xoClXO9yhlpJ0RDQeLw2QtfDbw8albP92nsol5TM,3166884
|
|
61
61
|
eodag/resources/locations_conf_template.yml,sha256=_eBv-QKHYMIKhY0b0kp4Ee33RsayxN8LWH3kDXxfFSk,986
|
|
62
62
|
eodag/resources/product_types.yml,sha256=vN-VNxKmRbMmRfdjMI3Tc3vs66yhU3Oep8_v2AXWH9Y,409966
|
|
63
|
-
eodag/resources/providers.yml,sha256=
|
|
63
|
+
eodag/resources/providers.yml,sha256=pf_96hfc_22I0YXzHZJ5PhA6mv6Ek3n9ujeKx6ggTPY,223198
|
|
64
64
|
eodag/resources/stac.yml,sha256=XgQFkJEfu_f2ZiVM5L1flkew7wq55p_PJmDuVkOG3fs,10442
|
|
65
65
|
eodag/resources/stac_api.yml,sha256=2FdQL_qBTIUlu6KH836T4CXBKO9AvVxA_Ub3J1RP81A,68881
|
|
66
66
|
eodag/resources/stac_provider.yml,sha256=2yfdnuhJYV1f5el3aFkunoPqHAcD8oCDzvASbmldIvY,6703
|
|
@@ -95,7 +95,7 @@ eodag/types/download_args.py,sha256=urSl5KbLRN1XetMa2XzxYltny8CCFmHpjxU3j3BEGO8,
|
|
|
95
95
|
eodag/types/queryables.py,sha256=9Jllvoq0SgCKQUmnhVNqj55_xdMq2Yw49-1SWFh_nI8,9880
|
|
96
96
|
eodag/types/search_args.py,sha256=EtG8nXnApBnYrFo5FVvsvvEqRlqTxJ0lrmIem9Wtg8c,5649
|
|
97
97
|
eodag/types/whoosh.py,sha256=VXpWAZaXLR_RRnI9gh5iwkqn1n63krVGj2SX0rB2mQo,7225
|
|
98
|
-
eodag/utils/__init__.py,sha256
|
|
98
|
+
eodag/utils/__init__.py,sha256=FFkJK6apDqYi3XOpXuyqS7DGMfUJkVQTBM7YaSK104I,52895
|
|
99
99
|
eodag/utils/exceptions.py,sha256=hYeq5GzMqW50o6mSUUlvOpsfU0eRjwhpqXTSE5MFv9Q,4452
|
|
100
100
|
eodag/utils/import_system.py,sha256=1vwcSRlsZwuaP8ssrpRBP5jldZ54eLv2ttNCdLf0TtA,3901
|
|
101
101
|
eodag/utils/logging.py,sha256=KoMsyS1f6O1hr_SMDOIxvt842mOJgmu_yLUk0-0EKFs,3507
|
|
@@ -105,9 +105,9 @@ eodag/utils/requests.py,sha256=avNHKrOZ7Kp6lUA7u4kqupIth9MoirLzDsMrrmQDt4s,4560
|
|
|
105
105
|
eodag/utils/rest.py,sha256=a9tlG_Y9iQXLeyeLyecxFNbopGHV-8URecMSRs0UXu0,3348
|
|
106
106
|
eodag/utils/s3.py,sha256=2mspYgEYGA1IDbruMMDdJ2DoxyX3riSlV7PDIu7carg,7989
|
|
107
107
|
eodag/utils/stac_reader.py,sha256=d1tv82_E5dEmK9Vlw3TQfU1ndXg_iUGatxMeWMnIWPo,9236
|
|
108
|
-
eodag-3.
|
|
109
|
-
eodag-3.
|
|
110
|
-
eodag-3.
|
|
111
|
-
eodag-3.
|
|
112
|
-
eodag-3.
|
|
113
|
-
eodag-3.
|
|
108
|
+
eodag-3.3.0.dist-info/licenses/LICENSE,sha256=4MAecetnRTQw5DlHtiikDSzKWO1xVLwzM5_DsPMYlnE,10172
|
|
109
|
+
eodag-3.3.0.dist-info/METADATA,sha256=BqJyA46-XwzYUiGpN3bWb6FE4s79Jwbv2QtJWG9GlWk,15476
|
|
110
|
+
eodag-3.3.0.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
|
111
|
+
eodag-3.3.0.dist-info/entry_points.txt,sha256=krdrBOQso6kAcSekV9ItEYAkE8syTC4Ev75bI781VgE,2561
|
|
112
|
+
eodag-3.3.0.dist-info/top_level.txt,sha256=025IMTmVe5eDjIPP4KEFQKespOPMQdne4U4jOy8nftM,6
|
|
113
|
+
eodag-3.3.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|