rio-tiler 8.0.1__py3-none-any.whl → 8.0.2__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.
- rio_tiler/__init__.py +1 -1
- rio_tiler/mosaic/backend.py +11 -3
- {rio_tiler-8.0.1.dist-info → rio_tiler-8.0.2.dist-info}/METADATA +1 -1
- {rio_tiler-8.0.1.dist-info → rio_tiler-8.0.2.dist-info}/RECORD +7 -7
- {rio_tiler-8.0.1.dist-info → rio_tiler-8.0.2.dist-info}/WHEEL +1 -1
- {rio_tiler-8.0.1.dist-info → rio_tiler-8.0.2.dist-info}/licenses/AUTHORS.txt +0 -0
- {rio_tiler-8.0.1.dist-info → rio_tiler-8.0.2.dist-info}/licenses/LICENSE +0 -0
rio_tiler/__init__.py
CHANGED
rio_tiler/mosaic/backend.py
CHANGED
|
@@ -14,7 +14,7 @@ from rasterio.features import geometry_mask
|
|
|
14
14
|
from rio_tiler.constants import WEB_MERCATOR_TMS, WGS84_CRS
|
|
15
15
|
from rio_tiler.errors import NoAssetFoundError, PointOutsideBounds
|
|
16
16
|
from rio_tiler.io import BaseReader, MultiBandReader, MultiBaseReader, Reader
|
|
17
|
-
from rio_tiler.models import ImageData, PointData
|
|
17
|
+
from rio_tiler.models import BandStatistics, ImageData, PointData
|
|
18
18
|
from rio_tiler.mosaic import mosaic_reader
|
|
19
19
|
from rio_tiler.tasks import multi_values_list
|
|
20
20
|
from rio_tiler.types import BBox
|
|
@@ -233,10 +233,18 @@ class BaseBackend(BaseReader):
|
|
|
233
233
|
############################################################################
|
|
234
234
|
# Not Implemented methods
|
|
235
235
|
# BaseReader required those method to be implemented
|
|
236
|
-
def statistics(
|
|
236
|
+
def statistics(
|
|
237
|
+
self,
|
|
238
|
+
search_options: dict | None = None,
|
|
239
|
+
**kwargs: Any,
|
|
240
|
+
) -> dict[str, BandStatistics]:
|
|
237
241
|
"""PlaceHolder for statistics."""
|
|
238
242
|
raise NotImplementedError
|
|
239
243
|
|
|
240
|
-
def preview(
|
|
244
|
+
def preview( # type: ignore
|
|
245
|
+
self,
|
|
246
|
+
search_options: dict | None = None,
|
|
247
|
+
**kwargs: Any,
|
|
248
|
+
) -> tuple[ImageData, list[str]]:
|
|
241
249
|
"""PlaceHolder for preview."""
|
|
242
250
|
raise NotImplementedError
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: rio-tiler
|
|
3
|
-
Version: 8.0.
|
|
3
|
+
Version: 8.0.2
|
|
4
4
|
Summary: User friendly Rasterio plugin to read raster datasets.
|
|
5
5
|
Project-URL: Homepage, https://cogeotiff.github.io/rio-tiler/
|
|
6
6
|
Project-URL: Documentation, https://cogeotiff.github.io/rio-tiler/
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
rio_tiler/__init__.py,sha256=
|
|
1
|
+
rio_tiler/__init__.py,sha256=JQfYgVZSL_AJE1aRh8pcruMxVtxqG5V-yWsHkeYh82E,192
|
|
2
2
|
rio_tiler/colormap.py,sha256=4sG9VIfDAHI-ckQgmci0-U-wL9ZU9exZJszgsrt8wBA,11310
|
|
3
3
|
rio_tiler/constants.py,sha256=55i-7JZDupTXZdLgxL03KsgM4lAzuGuIVP1zZKktzp0,426
|
|
4
4
|
rio_tiler/errors.py,sha256=GFAuE1AaSvx6dd0z5um9n3y1wVzUyQ5S8qY7_tXdrR8,2178
|
|
@@ -232,13 +232,13 @@ rio_tiler/io/rasterio.py,sha256=JcjHJYmntBx4yyLOnTOJsZ3631TNsXFHbVGwK2MPnS8,2919
|
|
|
232
232
|
rio_tiler/io/stac.py,sha256=kIEW4F71PouXF-Ubpz-VVXujnp8LqftptPKDo_J3BTw,12831
|
|
233
233
|
rio_tiler/io/xarray.py,sha256=jISNXCV2lBjs5qOYSLvSfrD7v6fO69sdsb7KC3fatUQ,26915
|
|
234
234
|
rio_tiler/mosaic/__init__.py,sha256=Yj6CKpnFl8PJhLSp-a55wo33hKZ8-6OOBJtWA1HZVy8,118
|
|
235
|
-
rio_tiler/mosaic/backend.py,sha256=
|
|
235
|
+
rio_tiler/mosaic/backend.py,sha256=CtWoIPdLX3kF7FBxgac-HSUXXo3DD2xd0zKjnoOTbSY,8456
|
|
236
236
|
rio_tiler/mosaic/reader.py,sha256=4sgl8IlV7zOtcfCt6XWw5UZLMCP0EgNbR2vRXObEGDA,11029
|
|
237
237
|
rio_tiler/mosaic/methods/__init__.py,sha256=tgkXM9skaTLXIm5QFoheOEznQXM97KGflcAWHfkrt1g,612
|
|
238
238
|
rio_tiler/mosaic/methods/base.py,sha256=9YZJWVRwH5Fk9KO9q5CW52Q8Mf60tAJ21oM4ixEDXBo,1424
|
|
239
239
|
rio_tiler/mosaic/methods/defaults.py,sha256=P-zSVVgvQ2oRiMchC3bMqIYLTX7H3743jsD_VmqStxM,7642
|
|
240
|
-
rio_tiler-8.0.
|
|
241
|
-
rio_tiler-8.0.
|
|
242
|
-
rio_tiler-8.0.
|
|
243
|
-
rio_tiler-8.0.
|
|
244
|
-
rio_tiler-8.0.
|
|
240
|
+
rio_tiler-8.0.2.dist-info/METADATA,sha256=QyDLOAzojKcTtAAiUfXVPOAUj7KETUA5ltKGd-05bxc,11159
|
|
241
|
+
rio_tiler-8.0.2.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
242
|
+
rio_tiler-8.0.2.dist-info/licenses/AUTHORS.txt,sha256=FCVd4Tjg-8syl0ZugCunpXER8X2-XonW2ZfllyTnRvE,158
|
|
243
|
+
rio_tiler-8.0.2.dist-info/licenses/LICENSE,sha256=vq8Tt4KoYQT9JxAjQ4yXMmmhFYRTsBRgrOj-ao-bC5o,1517
|
|
244
|
+
rio_tiler-8.0.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|