titiler-xarray 2.0.3__tar.gz → 2.0.5__tar.gz
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.
- {titiler_xarray-2.0.3 → titiler_xarray-2.0.5}/PKG-INFO +3 -2
- {titiler_xarray-2.0.3 → titiler_xarray-2.0.5}/pyproject.toml +2 -1
- titiler_xarray-2.0.5/titiler/xarray/__init__.py +3 -0
- {titiler_xarray-2.0.3 → titiler_xarray-2.0.5}/titiler/xarray/factory.py +3 -0
- titiler_xarray-2.0.3/titiler/xarray/__init__.py +0 -3
- {titiler_xarray-2.0.3 → titiler_xarray-2.0.5}/.gitignore +0 -0
- {titiler_xarray-2.0.3 → titiler_xarray-2.0.5}/LICENSE +0 -0
- {titiler_xarray-2.0.3 → titiler_xarray-2.0.5}/README.md +0 -0
- {titiler_xarray-2.0.3 → titiler_xarray-2.0.5}/titiler/xarray/dependencies.py +0 -0
- {titiler_xarray-2.0.3 → titiler_xarray-2.0.5}/titiler/xarray/extensions.py +0 -0
- {titiler_xarray-2.0.3 → titiler_xarray-2.0.5}/titiler/xarray/io.py +0 -0
- {titiler_xarray-2.0.3 → titiler_xarray-2.0.5}/titiler/xarray/main.py +0 -0
- {titiler_xarray-2.0.3 → titiler_xarray-2.0.5}/titiler/xarray/py.typed +0 -0
- {titiler_xarray-2.0.3 → titiler_xarray-2.0.5}/titiler/xarray/templates/conformance.html +0 -0
- {titiler_xarray-2.0.3 → titiler_xarray-2.0.5}/titiler/xarray/templates/header.html +0 -0
- {titiler_xarray-2.0.3 → titiler_xarray-2.0.5}/titiler/xarray/templates/landing.html +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: titiler-xarray
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.5
|
|
4
4
|
Summary: Xarray plugin for TiTiler.
|
|
5
5
|
Project-URL: Homepage, https://developmentseed.org/titiler/
|
|
6
6
|
Project-URL: Documentation, https://developmentseed.org/titiler/
|
|
@@ -22,11 +22,12 @@ Classifier: Programming Language :: Python :: 3.13
|
|
|
22
22
|
Classifier: Programming Language :: Python :: 3.14
|
|
23
23
|
Classifier: Topic :: Scientific/Engineering :: GIS
|
|
24
24
|
Requires-Python: >=3.11
|
|
25
|
+
Requires-Dist: httpx
|
|
25
26
|
Requires-Dist: obstore
|
|
26
27
|
Requires-Dist: pydantic-settings~=2.0
|
|
27
28
|
Requires-Dist: rioxarray
|
|
28
29
|
Requires-Dist: starlette-cramjam<1.0,>=0.4
|
|
29
|
-
Requires-Dist: titiler-core==2.0.
|
|
30
|
+
Requires-Dist: titiler-core==2.0.5
|
|
30
31
|
Requires-Dist: xarray
|
|
31
32
|
Requires-Dist: zarr<4.0,>=3.1
|
|
32
33
|
Provides-Extra: fs
|
|
@@ -29,13 +29,14 @@ classifiers = [
|
|
|
29
29
|
]
|
|
30
30
|
dynamic = ["version"]
|
|
31
31
|
dependencies = [
|
|
32
|
-
"titiler-core==2.0.
|
|
32
|
+
"titiler-core==2.0.5", # x-release-please-version
|
|
33
33
|
"xarray",
|
|
34
34
|
"rioxarray",
|
|
35
35
|
"obstore",
|
|
36
36
|
"zarr>=3.1,<4.0",
|
|
37
37
|
"starlette-cramjam>=0.4,<1.0",
|
|
38
38
|
"pydantic-settings~=2.0",
|
|
39
|
+
"httpx",
|
|
39
40
|
]
|
|
40
41
|
|
|
41
42
|
[project.optional-dependencies]
|
|
@@ -16,6 +16,7 @@ from rio_tiler.models import Info
|
|
|
16
16
|
from titiler.core.dependencies import (
|
|
17
17
|
BidxParams,
|
|
18
18
|
CoordCRSParams,
|
|
19
|
+
CoverScaleParams,
|
|
19
20
|
CRSParams,
|
|
20
21
|
DatasetPathParams,
|
|
21
22
|
DefaultDependency,
|
|
@@ -189,6 +190,7 @@ class TilerFactory(BaseTilerFactory):
|
|
|
189
190
|
layer_params=Depends(self.layer_dependency),
|
|
190
191
|
dataset_params=Depends(self.dataset_dependency),
|
|
191
192
|
image_params=Depends(self.img_part_dependency),
|
|
193
|
+
cover_scale=Depends(CoverScaleParams),
|
|
192
194
|
post_process=Depends(self.process_dependency),
|
|
193
195
|
stats_params=Depends(self.stats_dependency),
|
|
194
196
|
histogram_params=Depends(self.histogram_dependency),
|
|
@@ -217,6 +219,7 @@ class TilerFactory(BaseTilerFactory):
|
|
|
217
219
|
coverage_array = image.get_coverage_array(
|
|
218
220
|
shape,
|
|
219
221
|
shape_crs=coord_crs or WGS84_CRS,
|
|
222
|
+
cover_scale=cover_scale,
|
|
220
223
|
)
|
|
221
224
|
|
|
222
225
|
if post_process:
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|