titiler-xarray 2.0.0b2__tar.gz → 2.0.2__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.0b2 → titiler_xarray-2.0.2}/.gitignore +1 -0
- {titiler_xarray-2.0.0b2 → titiler_xarray-2.0.2}/PKG-INFO +4 -2
- {titiler_xarray-2.0.0b2 → titiler_xarray-2.0.2}/pyproject.toml +3 -8
- titiler_xarray-2.0.2/titiler/xarray/__init__.py +3 -0
- {titiler_xarray-2.0.0b2 → titiler_xarray-2.0.2}/titiler/xarray/dependencies.py +1 -1
- {titiler_xarray-2.0.0b2 → titiler_xarray-2.0.2}/titiler/xarray/io.py +3 -3
- {titiler_xarray-2.0.0b2 → titiler_xarray-2.0.2}/titiler/xarray/main.py +1 -1
- titiler_xarray-2.0.0b2/titiler/xarray/__init__.py +0 -3
- {titiler_xarray-2.0.0b2 → titiler_xarray-2.0.2}/LICENSE +0 -0
- {titiler_xarray-2.0.0b2 → titiler_xarray-2.0.2}/README.md +0 -0
- {titiler_xarray-2.0.0b2 → titiler_xarray-2.0.2}/titiler/xarray/extensions.py +0 -0
- {titiler_xarray-2.0.0b2 → titiler_xarray-2.0.2}/titiler/xarray/factory.py +0 -0
- {titiler_xarray-2.0.0b2 → titiler_xarray-2.0.2}/titiler/xarray/py.typed +0 -0
- {titiler_xarray-2.0.0b2 → titiler_xarray-2.0.2}/titiler/xarray/templates/conformance.html +0 -0
- {titiler_xarray-2.0.0b2 → titiler_xarray-2.0.2}/titiler/xarray/templates/header.html +0 -0
- {titiler_xarray-2.0.0b2 → titiler_xarray-2.0.2}/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.2
|
|
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/
|
|
@@ -23,8 +23,10 @@ Classifier: Programming Language :: Python :: 3.14
|
|
|
23
23
|
Classifier: Topic :: Scientific/Engineering :: GIS
|
|
24
24
|
Requires-Python: >=3.11
|
|
25
25
|
Requires-Dist: obstore
|
|
26
|
+
Requires-Dist: pydantic-settings~=2.0
|
|
26
27
|
Requires-Dist: rioxarray
|
|
27
|
-
Requires-Dist:
|
|
28
|
+
Requires-Dist: starlette-cramjam<1.0,>=0.4
|
|
29
|
+
Requires-Dist: titiler-core==2.0.2
|
|
28
30
|
Requires-Dist: xarray
|
|
29
31
|
Requires-Dist: zarr<4.0,>=3.1
|
|
30
32
|
Provides-Extra: fs
|
|
@@ -29,11 +29,13 @@ classifiers = [
|
|
|
29
29
|
]
|
|
30
30
|
dynamic = ["version"]
|
|
31
31
|
dependencies = [
|
|
32
|
-
"titiler-core==2.0.
|
|
32
|
+
"titiler-core==2.0.2", # x-release-please-version
|
|
33
33
|
"xarray",
|
|
34
34
|
"rioxarray",
|
|
35
35
|
"obstore",
|
|
36
36
|
"zarr>=3.1,<4.0",
|
|
37
|
+
"starlette-cramjam>=0.4,<1.0",
|
|
38
|
+
"pydantic-settings~=2.0",
|
|
37
39
|
]
|
|
38
40
|
|
|
39
41
|
[project.optional-dependencies]
|
|
@@ -67,13 +69,6 @@ test = [
|
|
|
67
69
|
"aiohttp",
|
|
68
70
|
"requests",
|
|
69
71
|
]
|
|
70
|
-
upstream = [
|
|
71
|
-
'xarray @ git+https://github.com/pydata/xarray',
|
|
72
|
-
'universal_pathlib @ git+https://github.com/fsspec/universal_pathlib',
|
|
73
|
-
'numcodecs @ git+https://github.com/zarr-developers/numcodecs',
|
|
74
|
-
'ujson @ git+https://github.com/ultrajson/ultrajson',
|
|
75
|
-
'zarr @ git+https://github.com/zarr-developers/zarr-python',
|
|
76
|
-
]
|
|
77
72
|
|
|
78
73
|
[project.urls]
|
|
79
74
|
Homepage = "https://developmentseed.org/titiler/"
|
|
@@ -348,9 +348,9 @@ def fs_open_dataset( # noqa: C901
|
|
|
348
348
|
|
|
349
349
|
# NetCDF arguments
|
|
350
350
|
if any(src_path.lower().endswith(ext) for ext in [".nc", ".nc4"]):
|
|
351
|
-
assert (
|
|
352
|
-
h5netcdf
|
|
353
|
-
)
|
|
351
|
+
assert h5netcdf is not None, (
|
|
352
|
+
"'h5netcdf' must be installed to read NetCDF dataset"
|
|
353
|
+
)
|
|
354
354
|
|
|
355
355
|
xr_open_args.update(
|
|
356
356
|
{
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|