eodag 4.0.0a1__py3-none-any.whl → 4.0.0a2__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/__init__.py +6 -1
- eodag/api/collection.py +353 -0
- eodag/api/core.py +308 -296
- eodag/api/product/_product.py +15 -29
- eodag/api/product/drivers/__init__.py +2 -42
- eodag/api/product/drivers/base.py +0 -11
- eodag/api/product/metadata_mapping.py +34 -5
- eodag/api/search_result.py +144 -9
- eodag/cli.py +18 -15
- eodag/config.py +37 -3
- eodag/plugins/apis/ecmwf.py +16 -4
- eodag/plugins/apis/usgs.py +18 -7
- eodag/plugins/crunch/filter_latest_intersect.py +1 -0
- eodag/plugins/crunch/filter_overlap.py +3 -7
- eodag/plugins/search/__init__.py +3 -0
- eodag/plugins/search/base.py +6 -6
- eodag/plugins/search/build_search_result.py +157 -56
- eodag/plugins/search/cop_marine.py +48 -8
- eodag/plugins/search/csw.py +18 -8
- eodag/plugins/search/qssearch.py +331 -88
- eodag/plugins/search/static_stac_search.py +11 -12
- eodag/resources/collections.yml +610 -348
- eodag/resources/ext_collections.json +1 -1
- eodag/resources/ext_product_types.json +1 -1
- eodag/resources/providers.yml +330 -58
- eodag/resources/stac_provider.yml +4 -2
- eodag/resources/user_conf_template.yml +9 -0
- eodag/types/__init__.py +2 -0
- eodag/types/queryables.py +16 -0
- eodag/utils/__init__.py +47 -2
- eodag/utils/repr.py +2 -0
- {eodag-4.0.0a1.dist-info → eodag-4.0.0a2.dist-info}/METADATA +4 -2
- {eodag-4.0.0a1.dist-info → eodag-4.0.0a2.dist-info}/RECORD +37 -36
- {eodag-4.0.0a1.dist-info → eodag-4.0.0a2.dist-info}/WHEEL +0 -0
- {eodag-4.0.0a1.dist-info → eodag-4.0.0a2.dist-info}/entry_points.txt +0 -0
- {eodag-4.0.0a1.dist-info → eodag-4.0.0a2.dist-info}/licenses/LICENSE +0 -0
- {eodag-4.0.0a1.dist-info → eodag-4.0.0a2.dist-info}/top_level.txt +0 -0
eodag/types/queryables.py
CHANGED
|
@@ -153,6 +153,22 @@ class QueryablesDict(UserDict[str, Any]):
|
|
|
153
153
|
self.additional_properties = additional_properties
|
|
154
154
|
self.additional_information = additional_information
|
|
155
155
|
super().__init__(kwargs)
|
|
156
|
+
# sort queryables: first without then with extension prefix
|
|
157
|
+
no_prefix_queryables = {
|
|
158
|
+
key: self.data[key]
|
|
159
|
+
for key in sorted(self.data)
|
|
160
|
+
if ":"
|
|
161
|
+
not in str(
|
|
162
|
+
getattr(self.data[key], "__metadata__", [Field()])[0].alias or key
|
|
163
|
+
)
|
|
164
|
+
}
|
|
165
|
+
with_prefix_queryables = {
|
|
166
|
+
key: self.data[key]
|
|
167
|
+
for key in sorted(self.data)
|
|
168
|
+
if ":"
|
|
169
|
+
in str(getattr(self.data[key], "__metadata__", [Field()])[0].alias or key)
|
|
170
|
+
}
|
|
171
|
+
self.data = no_prefix_queryables | with_prefix_queryables
|
|
156
172
|
|
|
157
173
|
def _repr_html_(self, embedded: bool = False) -> str:
|
|
158
174
|
add_info = (
|
eodag/utils/__init__.py
CHANGED
|
@@ -79,7 +79,7 @@ from jsonpath_ng import jsonpath
|
|
|
79
79
|
from jsonpath_ng.ext import parse
|
|
80
80
|
from jsonpath_ng.jsonpath import Child, Fields, Index, Root, Slice
|
|
81
81
|
from requests import HTTPError, Response
|
|
82
|
-
from shapely.geometry import Polygon, shape
|
|
82
|
+
from shapely.geometry import Polygon, box, shape
|
|
83
83
|
from shapely.geometry.base import GEOMETRY_TYPES, BaseGeometry
|
|
84
84
|
from tqdm.auto import tqdm
|
|
85
85
|
|
|
@@ -134,9 +134,15 @@ DEFAULT_MAX_ITEMS_PER_PAGE = 50
|
|
|
134
134
|
# default collections start date
|
|
135
135
|
DEFAULT_MISSION_START_DATE = "2015-01-01T00:00:00.000Z"
|
|
136
136
|
|
|
137
|
+
# default geometry / whole world bounding box
|
|
138
|
+
DEFAULT_SHAPELY_GEOMETRY = box(-180, -90, 180, 90)
|
|
139
|
+
|
|
137
140
|
# default token expiration margin in seconds
|
|
138
141
|
DEFAULT_TOKEN_EXPIRATION_MARGIN = 60
|
|
139
142
|
|
|
143
|
+
# knwown next page token keys used to guess key in STAC providers next link responses
|
|
144
|
+
KNOWN_NEXT_PAGE_TOKEN_KEYS = ["token", "next", "page", "skip"]
|
|
145
|
+
|
|
140
146
|
# update missing mimetypes
|
|
141
147
|
mimetypes.add_type("text/xml", ".xsd")
|
|
142
148
|
mimetypes.add_type("application/x-grib", ".grib")
|
|
@@ -1063,7 +1069,7 @@ def nested_pairs2dict(pairs: Union[list[Any], Any]) -> Union[Any, dict[Any, Any]
|
|
|
1063
1069
|
|
|
1064
1070
|
def get_geometry_from_various(
|
|
1065
1071
|
locations_config: list[dict[str, Any]] = [], **query_args: Any
|
|
1066
|
-
) -> BaseGeometry:
|
|
1072
|
+
) -> Optional[BaseGeometry]:
|
|
1067
1073
|
"""Creates a ``shapely.geometry`` using given query kwargs arguments
|
|
1068
1074
|
|
|
1069
1075
|
:param locations_config: (optional) EODAG locations configuration
|
|
@@ -1148,6 +1154,45 @@ def get_geometry_from_various(
|
|
|
1148
1154
|
return geom
|
|
1149
1155
|
|
|
1150
1156
|
|
|
1157
|
+
def get_geometry_from_ecmwf_feature(geom: dict[str, Any]) -> BaseGeometry:
|
|
1158
|
+
"""
|
|
1159
|
+
Creates a ``shapely.geometry`` from ECMWF Polytope shape.
|
|
1160
|
+
|
|
1161
|
+
:param geom: ECMWF Polytope shape.
|
|
1162
|
+
:returns: A Shapely polygon.
|
|
1163
|
+
"""
|
|
1164
|
+
if not isinstance(geom, dict):
|
|
1165
|
+
raise TypeError(
|
|
1166
|
+
"Geometry must be a dictionary, instead it's {}".format(type(geom))
|
|
1167
|
+
)
|
|
1168
|
+
if "type" not in geom or geom["type"] != "polygon":
|
|
1169
|
+
raise TypeError("Geometry type must be 'polygon'")
|
|
1170
|
+
if "shape" not in geom:
|
|
1171
|
+
raise TypeError("Missing shape in the geometry")
|
|
1172
|
+
if not isinstance(geom["shape"], list):
|
|
1173
|
+
raise TypeError("Geometry shape must be a list")
|
|
1174
|
+
|
|
1175
|
+
shape: list = geom["shape"]
|
|
1176
|
+
polygon_args = [(p[1], p[0]) for p in shape]
|
|
1177
|
+
return Polygon(polygon_args)
|
|
1178
|
+
|
|
1179
|
+
|
|
1180
|
+
def get_geometry_from_ecmwf_area(area: list[float]) -> Optional[BaseGeometry]:
|
|
1181
|
+
"""
|
|
1182
|
+
Creates a ``shapely.geometry`` from bounding box in area format.
|
|
1183
|
+
|
|
1184
|
+
area format: [max_lat,min_lon,min_lat,max_lon]
|
|
1185
|
+
|
|
1186
|
+
:param area: bounding box in area format.
|
|
1187
|
+
:returns: A Shapely polygon.
|
|
1188
|
+
"""
|
|
1189
|
+
if len(area) != 4:
|
|
1190
|
+
raise ValueError("The area must be a list of 4 values")
|
|
1191
|
+
max_lat, min_lon, min_lat, max_lon = area
|
|
1192
|
+
bbox = [min_lon, min_lat, max_lon, max_lat]
|
|
1193
|
+
return get_geometry_from_various(geometry=bbox)
|
|
1194
|
+
|
|
1195
|
+
|
|
1151
1196
|
class MockResponse:
|
|
1152
1197
|
"""Fake requests response"""
|
|
1153
1198
|
|
eodag/utils/repr.py
CHANGED
|
@@ -90,6 +90,7 @@ def dict_to_html_table(
|
|
|
90
90
|
</tr>
|
|
91
91
|
"""
|
|
92
92
|
for k, v in input_dict.items()
|
|
93
|
+
if v is not None
|
|
93
94
|
]
|
|
94
95
|
)
|
|
95
96
|
+ f"</table>{closing_bracket}"
|
|
@@ -103,6 +104,7 @@ def dict_to_html_table(
|
|
|
103
104
|
'{k}': {html_table(v, depth=depth)}
|
|
104
105
|
</span>"""
|
|
105
106
|
for k, v in input_dict.items()
|
|
107
|
+
if v is not None
|
|
106
108
|
]
|
|
107
109
|
)
|
|
108
110
|
+ f"{closing_bracket}"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: eodag
|
|
3
|
-
Version: 4.0.
|
|
3
|
+
Version: 4.0.0a2
|
|
4
4
|
Summary: Earth Observation Data Access Gateway
|
|
5
5
|
Home-page: https://github.com/CS-SI/eodag
|
|
6
6
|
Author: CS GROUP - France
|
|
@@ -50,6 +50,7 @@ Requires-Dist: python-dateutil
|
|
|
50
50
|
Requires-Dist: PyYAML
|
|
51
51
|
Requires-Dist: requests
|
|
52
52
|
Requires-Dist: shapely>=2.0.6
|
|
53
|
+
Requires-Dist: stac-pydantic
|
|
53
54
|
Requires-Dist: tqdm
|
|
54
55
|
Requires-Dist: typing_extensions>=4.8.0
|
|
55
56
|
Requires-Dist: urllib3
|
|
@@ -102,7 +103,7 @@ Requires-Dist: moto>=5; extra == "dev"
|
|
|
102
103
|
Requires-Dist: twine; extra == "dev"
|
|
103
104
|
Requires-Dist: wheel; extra == "dev"
|
|
104
105
|
Requires-Dist: flake8; extra == "dev"
|
|
105
|
-
Requires-Dist:
|
|
106
|
+
Requires-Dist: prek; extra == "dev"
|
|
106
107
|
Requires-Dist: responses!=0.24.0; extra == "dev"
|
|
107
108
|
Requires-Dist: fastapi[all]; extra == "dev"
|
|
108
109
|
Requires-Dist: stdlib-list; extra == "dev"
|
|
@@ -115,6 +116,7 @@ Requires-Dist: types-requests; extra == "stubs"
|
|
|
115
116
|
Requires-Dist: types-python-dateutil; extra == "stubs"
|
|
116
117
|
Requires-Dist: types-PyYAML; extra == "stubs"
|
|
117
118
|
Requires-Dist: types-setuptools; extra == "stubs"
|
|
119
|
+
Requires-Dist: types-shapely; extra == "stubs"
|
|
118
120
|
Requires-Dist: types-tqdm; extra == "stubs"
|
|
119
121
|
Requires-Dist: types-urllib3; extra == "stubs"
|
|
120
122
|
Provides-Extra: docs
|
|
@@ -1,17 +1,18 @@
|
|
|
1
|
-
eodag/__init__.py,sha256=
|
|
2
|
-
eodag/cli.py,sha256=
|
|
3
|
-
eodag/config.py,sha256=
|
|
1
|
+
eodag/__init__.py,sha256=vS9nq3ZOcdlHxCakeRqCV4nm8q3r7ZKr-p7RQg0gatg,1627
|
|
2
|
+
eodag/cli.py,sha256=gHxZmE0qCnChhiW0C-9aoet7vsMsloMIt5gvT82zIZM,22051
|
|
3
|
+
eodag/config.py,sha256=uErvz-nQHPRAzUnlxSgq5SxHCxWfDSML3xhm_BDBR1s,49862
|
|
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/
|
|
8
|
-
eodag/api/
|
|
7
|
+
eodag/api/collection.py,sha256=qiVtXO6eqAJTmJFiKKXbHFXbQRlttojW_3kKegOjZYo,13720
|
|
8
|
+
eodag/api/core.py,sha256=82c7CHEhHdnkHDlzIxHigaYGereQ8aECkTnsBv5dWUk,107085
|
|
9
|
+
eodag/api/search_result.py,sha256=LGWIQgbhQF5Lz489vcvalb2VsYtplyzUXGWMqduP0uc,21107
|
|
9
10
|
eodag/api/product/__init__.py,sha256=6-RXKAw-sZVNU-7KjpmSqLc35dfc0V42wI5GqIzH2QA,2501
|
|
10
11
|
eodag/api/product/_assets.py,sha256=9bWIe_SYvsQO-q_lQFd7SxhUIWv7feze2-wnXOe8hhs,7570
|
|
11
|
-
eodag/api/product/_product.py,sha256=
|
|
12
|
-
eodag/api/product/metadata_mapping.py,sha256=
|
|
13
|
-
eodag/api/product/drivers/__init__.py,sha256=
|
|
14
|
-
eodag/api/product/drivers/base.py,sha256=
|
|
12
|
+
eodag/api/product/_product.py,sha256=wwj-L95TgUJsfcYVfbqwNfTdOTciAUISknxeujBtLEg,27387
|
|
13
|
+
eodag/api/product/metadata_mapping.py,sha256=OhB5JhyMLwCrXYJbdk2Nep0Kd-lFeiCWLtw1pa3XukU,76821
|
|
14
|
+
eodag/api/product/drivers/__init__.py,sha256=v85lXHsfrkn59uyMgConb5ZY9acCCx95srdsh_wFIlM,1998
|
|
15
|
+
eodag/api/product/drivers/base.py,sha256=MvaXicICn9DxXsaJuK34nPM3__TksstZXSVfABcINAc,2776
|
|
15
16
|
eodag/api/product/drivers/generic.py,sha256=obwH8paf2TP7afnjfx4GxSZPSrTs3suTYJWQvebmigY,2207
|
|
16
17
|
eodag/api/product/drivers/sentinel1.py,sha256=xpvhOvVhpuwVihPMo_q79VI67ru-FqKtbRa5kA79D3k,3253
|
|
17
18
|
eodag/api/product/drivers/sentinel2.py,sha256=dMfIrcwF4h8KoyUj94yPUhRiN7FIef4mTzfbkkhLIc8,3124
|
|
@@ -20,8 +21,8 @@ eodag/plugins/base.py,sha256=8Us6InkQu59Ya0Ne8se2Q6ZtU85IpCpcQqO9Z2ECDWI,2746
|
|
|
20
21
|
eodag/plugins/manager.py,sha256=SlUPCa_mvpqAFZ4IMFqidyR_OgTV2mlUOrBAWC13ll8,20106
|
|
21
22
|
eodag/plugins/apis/__init__.py,sha256=PyY4f7P2iu3MkLPnw5eOrVew2fuavbBL3Asci3Ulwoo,744
|
|
22
23
|
eodag/plugins/apis/base.py,sha256=PZwAg0uINSEQcHSzTgU9xSAb-WaGMbmDL-jhrmybtLQ,2814
|
|
23
|
-
eodag/plugins/apis/ecmwf.py,sha256=
|
|
24
|
-
eodag/plugins/apis/usgs.py,sha256=
|
|
24
|
+
eodag/plugins/apis/ecmwf.py,sha256=6_Zr3u2XHJl6XijNZOWazdtqi8v_b9D4WNET-Eub5qs,11767
|
|
25
|
+
eodag/plugins/apis/usgs.py,sha256=V1R13tqPgVJ_kMoEdbbFT-lx5mZ7yYqRtna--wmTXAk,20029
|
|
25
26
|
eodag/plugins/authentication/__init__.py,sha256=_LVw42Bb1IhGAZH5xHRaS4b1iFoF9e27KDZOyoSoJHY,1039
|
|
26
27
|
eodag/plugins/authentication/aws_auth.py,sha256=A0sr5mVmCkAwCldlGSGFcZqnthusbcB52THthja77cw,12651
|
|
27
28
|
eodag/plugins/authentication/base.py,sha256=wp-OI0G4DbUFykuehvyh4IJLAJyicyKiIH9k5z3W7Mo,3506
|
|
@@ -36,42 +37,42 @@ eodag/plugins/authentication/token_exchange.py,sha256=raFIN8UnO9MpqQukDJg4Pog-LJ
|
|
|
36
37
|
eodag/plugins/crunch/__init__.py,sha256=58D7kJhEpHJWobIKaNFPynfbSqAWgS90BiHzitqS5Ds,746
|
|
37
38
|
eodag/plugins/crunch/base.py,sha256=XW4HISgR0UswiEZmE4t42HxnSxknZBtVpuK8XVLYHzU,1415
|
|
38
39
|
eodag/plugins/crunch/filter_date.py,sha256=GwoAoYTj6-pFXDtgz8rNES9YW9zfIZkAvkFLX5mUZQU,4313
|
|
39
|
-
eodag/plugins/crunch/filter_latest_intersect.py,sha256=
|
|
40
|
+
eodag/plugins/crunch/filter_latest_intersect.py,sha256=FvWzXxg-oepxoq3AqnEfFpWZVWWSPWY9km8qg0dGCKU,4438
|
|
40
41
|
eodag/plugins/crunch/filter_latest_tpl_name.py,sha256=Aau0RMBRCblVL2kapEaV0SMZXdfItwLUFhAZ3cUA02o,3667
|
|
41
|
-
eodag/plugins/crunch/filter_overlap.py,sha256=
|
|
42
|
+
eodag/plugins/crunch/filter_overlap.py,sha256=tU3h15jyfePOQPgGvowHFm2ZuckEbAo6lgLQNaPiJ2Q,7142
|
|
42
43
|
eodag/plugins/crunch/filter_property.py,sha256=2BKb7wxw1Yi2NTtnPCBtdZ-caJXxlVUUS2ps4LHXOMI,3187
|
|
43
44
|
eodag/plugins/download/__init__.py,sha256=zqszaeNgYP0YHlZDkLMf6odcwNw0KrAahGpcA-l0kAw,740
|
|
44
45
|
eodag/plugins/download/aws.py,sha256=x0HWR9O5U3kFo7W8qHcZhkCqzWEkSw_XEVIdx1zX7Qg,46884
|
|
45
46
|
eodag/plugins/download/base.py,sha256=TVUCDMuDkRo9EKYj5o3zUuOl76VJfQ6GlefD1EFwSTs,30807
|
|
46
47
|
eodag/plugins/download/http.py,sha256=Supm6UL4isoZ5LLqR3tzZDZi3fQYsj4u4dI9RppMnlc,58609
|
|
47
|
-
eodag/plugins/search/__init__.py,sha256=
|
|
48
|
-
eodag/plugins/search/base.py,sha256=
|
|
49
|
-
eodag/plugins/search/build_search_result.py,sha256=
|
|
50
|
-
eodag/plugins/search/cop_marine.py,sha256=
|
|
48
|
+
eodag/plugins/search/__init__.py,sha256=z_OD0bIloltQIJ9D0-pLC6o6nT0VmX2PRtMn_nLwWDQ,2174
|
|
49
|
+
eodag/plugins/search/base.py,sha256=yBmfca1EcR8c8pDD0GLnyZkU1UQ_8RNh1X8xqV-gHRQ,22235
|
|
50
|
+
eodag/plugins/search/build_search_result.py,sha256=4QZKXEBj5n1EE0BGciLfApSEYxxk-2srlVrq27lL1hg,62934
|
|
51
|
+
eodag/plugins/search/cop_marine.py,sha256=ubfZzM75CGgSMngP6Okon_UP5flV-nCIQNzyfFSsTbo,21328
|
|
51
52
|
eodag/plugins/search/creodias_s3.py,sha256=q-fzgKIp9hPgcxZ1fQz8N7veDdqZVZuVvygGOIA9zf0,3845
|
|
52
|
-
eodag/plugins/search/csw.py,sha256=
|
|
53
|
-
eodag/plugins/search/qssearch.py,sha256=
|
|
53
|
+
eodag/plugins/search/csw.py,sha256=L5UbSngFnEqD6nYir7SkijJtPeWDC8LAUps74e8HWM4,12674
|
|
54
|
+
eodag/plugins/search/qssearch.py,sha256=W3g9J8xhnKZn8ksygBKzFXx0xUdIILlDvB-ePLEGO14,104919
|
|
54
55
|
eodag/plugins/search/stac_list_assets.py,sha256=OS2E13w2OVcPUearXRzp4EfvibtmUz6l8okpAMNH-sA,3442
|
|
55
|
-
eodag/plugins/search/static_stac_search.py,sha256=
|
|
56
|
-
eodag/resources/collections.yml,sha256=
|
|
57
|
-
eodag/resources/ext_collections.json,sha256=
|
|
58
|
-
eodag/resources/ext_product_types.json,sha256=
|
|
56
|
+
eodag/plugins/search/static_stac_search.py,sha256=zQc51c0VI52gt4eKF-yUC-1xsVIM4XKB96ZKazhtCjU,10379
|
|
57
|
+
eodag/resources/collections.yml,sha256=0JZr5y8V8QlB1MGqGzs5-Pmrk1ZYkEBlS3VYrg22Npc,473536
|
|
58
|
+
eodag/resources/ext_collections.json,sha256=8BSdJ_G0F9LG9h_Z_EOTmSmhceDl3-uFVaW7iVoh4qo,2438459
|
|
59
|
+
eodag/resources/ext_product_types.json,sha256=DaM0YN_V5gdMDyb1zHnF37YC8eOQhG4i-byB9d2gcT8,2456884
|
|
59
60
|
eodag/resources/locations_conf_template.yml,sha256=_eBv-QKHYMIKhY0b0kp4Ee33RsayxN8LWH3kDXxfFSk,986
|
|
60
|
-
eodag/resources/providers.yml,sha256=
|
|
61
|
-
eodag/resources/stac_provider.yml,sha256=
|
|
62
|
-
eodag/resources/user_conf_template.yml,sha256=
|
|
61
|
+
eodag/resources/providers.yml,sha256=1EK66cdWNG0T6d8YfPfs1nl4fQ4oDvX10vn5h_WsxWE,237678
|
|
62
|
+
eodag/resources/stac_provider.yml,sha256=RNhFNhv7593VkY2od-LQgUBdIO1WXL1Rko7UyjLaxFY,4648
|
|
63
|
+
eodag/resources/user_conf_template.yml,sha256=aHSiscSQ3B4Dd18709iQAX7tFrkMufRC1a9akcNVVTs,7541
|
|
63
64
|
eodag/resources/shp/ne_110m_admin_0_map_units.VERSION.txt,sha256=CHSo_jbv-4d4D0MYRbWn2FvmV_K9mYzo7qznF4YNO3g,7
|
|
64
65
|
eodag/resources/shp/ne_110m_admin_0_map_units.cpg,sha256=FG1nif_gM6UpfBrQRuamLuNTGbhrAhRE8FtuoqqKH0o,6
|
|
65
66
|
eodag/resources/shp/ne_110m_admin_0_map_units.dbf,sha256=uEEO22hZ_crWxMNhuQ_ix889c1Us1awYXAglxbf1K-s,393747
|
|
66
67
|
eodag/resources/shp/ne_110m_admin_0_map_units.prj,sha256=oaohy2UQUlLMiTy3HhYS1Kurl_7z3A3LYcOmVf_TbNo,148
|
|
67
68
|
eodag/resources/shp/ne_110m_admin_0_map_units.shp,sha256=GMVJQ1pe0JfaJnVfAew0MvembDJDkfUs0To2Qc82Aos,181628
|
|
68
69
|
eodag/resources/shp/ne_110m_admin_0_map_units.shx,sha256=N74fDl6sQAljmHQ_e9DO7suO6BXuwC0LwmriAnDBH-U,1564
|
|
69
|
-
eodag/types/__init__.py,sha256=
|
|
70
|
+
eodag/types/__init__.py,sha256=CcNcA8mupjjkQZRtycgiMOubXsTDglwEyp3vGT9VE_M,16225
|
|
70
71
|
eodag/types/bbox.py,sha256=jbfX58KOKIl0OoGZc93kAYhG_mEOjuBQGJtR2hl3-_Y,4354
|
|
71
72
|
eodag/types/download_args.py,sha256=urSl5KbLRN1XetMa2XzxYltny8CCFmHpjxU3j3BEGO8,1565
|
|
72
|
-
eodag/types/queryables.py,sha256=
|
|
73
|
+
eodag/types/queryables.py,sha256=x6nQgnLgHo85f_OBREt90S5LsXkB2MZTfuwjXxvtKWo,9479
|
|
73
74
|
eodag/types/search_args.py,sha256=hnLID6n8lKbisVYO45xos_5ndkofCNYxzwCGTgdminA,5648
|
|
74
|
-
eodag/utils/__init__.py,sha256=
|
|
75
|
+
eodag/utils/__init__.py,sha256=4kFmoxrq8Tb5rlbsmpX1DVj5UxcDU2GYxPClVh0UINg,58358
|
|
75
76
|
eodag/utils/cache.py,sha256=UNvnzhJnNBuKLdH_0KnhuTMlBvz4GS3nr2IH2Lj6Swc,2580
|
|
76
77
|
eodag/utils/dates.py,sha256=dSKmWC3spQrpo0XLYAnUe32k3SPHQ9yih_K3nQ7z1fE,7470
|
|
77
78
|
eodag/utils/env.py,sha256=_sgCzDmaJnMnCv1qk9xe9jBhBKqqXbEYmsyGYwYw4NI,1085
|
|
@@ -80,13 +81,13 @@ eodag/utils/free_text_search.py,sha256=k0CrzMslrBrPYTEWOrGOAnwuy6Ktt7NPz07illkRC
|
|
|
80
81
|
eodag/utils/import_system.py,sha256=1vwcSRlsZwuaP8ssrpRBP5jldZ54eLv2ttNCdLf0TtA,3901
|
|
81
82
|
eodag/utils/logging.py,sha256=KoMsyS1f6O1hr_SMDOIxvt842mOJgmu_yLUk0-0EKFs,3507
|
|
82
83
|
eodag/utils/notebook.py,sha256=AUxtayvu26qYf3x3Eu3ujRl1XDgy24EfQaETbqmXSZw,2703
|
|
83
|
-
eodag/utils/repr.py,sha256=
|
|
84
|
+
eodag/utils/repr.py,sha256=72BIKFq07aU4YrQVJJX-AADdWXAhJqC4LXGmkbCo1kA,5537
|
|
84
85
|
eodag/utils/requests.py,sha256=avNHKrOZ7Kp6lUA7u4kqupIth9MoirLzDsMrrmQDt4s,4560
|
|
85
86
|
eodag/utils/s3.py,sha256=eESanPLVv-Luqo_o1WgUuO7YLqiXg_iEzHZ15fu-ugY,30063
|
|
86
87
|
eodag/utils/stac_reader.py,sha256=8r6amio5EtwGF9iu9zHaGDz4oUPKKeXRuyTzPNakrO4,9406
|
|
87
|
-
eodag-4.0.
|
|
88
|
-
eodag-4.0.
|
|
89
|
-
eodag-4.0.
|
|
90
|
-
eodag-4.0.
|
|
91
|
-
eodag-4.0.
|
|
92
|
-
eodag-4.0.
|
|
88
|
+
eodag-4.0.0a2.dist-info/licenses/LICENSE,sha256=4MAecetnRTQw5DlHtiikDSzKWO1xVLwzM5_DsPMYlnE,10172
|
|
89
|
+
eodag-4.0.0a2.dist-info/METADATA,sha256=GDIvwACmfGQA6E-XFIfoCkkr4tblKoFg2m4jgdIEuek,12739
|
|
90
|
+
eodag-4.0.0a2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
91
|
+
eodag-4.0.0a2.dist-info/entry_points.txt,sha256=atMIh-Q4hRsOdw1_778mDIhWFHQJigEo3x-0fMqhqLE,2254
|
|
92
|
+
eodag-4.0.0a2.dist-info/top_level.txt,sha256=025IMTmVe5eDjIPP4KEFQKespOPMQdne4U4jOy8nftM,6
|
|
93
|
+
eodag-4.0.0a2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|