vector2dggs 0.9.0__tar.gz → 0.9.1__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.
- {vector2dggs-0.9.0 → vector2dggs-0.9.1}/PKG-INFO +4 -4
- {vector2dggs-0.9.0 → vector2dggs-0.9.1}/README.md +2 -2
- {vector2dggs-0.9.0 → vector2dggs-0.9.1}/pyproject.toml +2 -2
- vector2dggs-0.9.1/vector2dggs/__init__.py +1 -0
- vector2dggs-0.9.0/vector2dggs/__init__.py +0 -1
- {vector2dggs-0.9.0 → vector2dggs-0.9.1}/COPYING +0 -0
- {vector2dggs-0.9.0 → vector2dggs-0.9.1}/COPYING.LESSER +0 -0
- {vector2dggs-0.9.0 → vector2dggs-0.9.1}/vector2dggs/cli.py +0 -0
- {vector2dggs-0.9.0 → vector2dggs-0.9.1}/vector2dggs/common.py +0 -0
- {vector2dggs-0.9.0 → vector2dggs-0.9.1}/vector2dggs/constants.py +0 -0
- {vector2dggs-0.9.0 → vector2dggs-0.9.1}/vector2dggs/geohash.py +0 -0
- {vector2dggs-0.9.0 → vector2dggs-0.9.1}/vector2dggs/h3.py +0 -0
- {vector2dggs-0.9.0 → vector2dggs-0.9.1}/vector2dggs/katana.py +0 -0
- {vector2dggs-0.9.0 → vector2dggs-0.9.1}/vector2dggs/rHP.py +0 -0
- {vector2dggs-0.9.0 → vector2dggs-0.9.1}/vector2dggs/s2.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: vector2dggs
|
3
|
-
Version: 0.9.
|
3
|
+
Version: 0.9.1
|
4
4
|
Summary: CLI DGGS indexer for vector geospatial data
|
5
5
|
Home-page: https://github.com/manaakiwhenua/vector2dggs
|
6
6
|
License: LGPL-3.0-or-later
|
@@ -20,7 +20,7 @@ Classifier: Topic :: Scientific/Engineering :: Information Analysis
|
|
20
20
|
Requires-Dist: click (>=8.1.7,<9.0.0)
|
21
21
|
Requires-Dist: click-log (>=0.4.0,<0.5.0)
|
22
22
|
Requires-Dist: dask (>=2025.1,<2026.0)
|
23
|
-
Requires-Dist: dask-geopandas (>=0.
|
23
|
+
Requires-Dist: dask-geopandas (>=0.5,<0.6)
|
24
24
|
Requires-Dist: gdal (>=3.8,<4.0)
|
25
25
|
Requires-Dist: geopandas (>=1.0.1,<2.0.0)
|
26
26
|
Requires-Dist: h3pandas (>=0.3,<0.4)
|
@@ -248,14 +248,14 @@ vector2dggs h3 -v DEBUG -id ogc_fid -r 9 -p 5 -t 4 --overwrite -lyr topo50_lake
|
|
248
248
|
title={{vector2dggs}},
|
249
249
|
author={Ardo, James and Law, Richard},
|
250
250
|
url={https://github.com/manaakiwhenua/vector2dggs},
|
251
|
-
version={0.9.
|
251
|
+
version={0.9.1},
|
252
252
|
date={2023-04-20}
|
253
253
|
}
|
254
254
|
```
|
255
255
|
|
256
256
|
APA/Harvard
|
257
257
|
|
258
|
-
> Ardo, J., & Law, R. (2023). vector2dggs (0.9.
|
258
|
+
> Ardo, J., & Law, R. (2023). vector2dggs (0.9.1) [Computer software]. https://github.com/manaakiwhenua/vector2dggs
|
259
259
|
|
260
260
|
[](https://github.com/manaakiwhenua/manaakiwhenua-standards)
|
261
261
|
|
@@ -207,13 +207,13 @@ vector2dggs h3 -v DEBUG -id ogc_fid -r 9 -p 5 -t 4 --overwrite -lyr topo50_lake
|
|
207
207
|
title={{vector2dggs}},
|
208
208
|
author={Ardo, James and Law, Richard},
|
209
209
|
url={https://github.com/manaakiwhenua/vector2dggs},
|
210
|
-
version={0.9.
|
210
|
+
version={0.9.1},
|
211
211
|
date={2023-04-20}
|
212
212
|
}
|
213
213
|
```
|
214
214
|
|
215
215
|
APA/Harvard
|
216
216
|
|
217
|
-
> Ardo, J., & Law, R. (2023). vector2dggs (0.9.
|
217
|
+
> Ardo, J., & Law, R. (2023). vector2dggs (0.9.1) [Computer software]. https://github.com/manaakiwhenua/vector2dggs
|
218
218
|
|
219
219
|
[](https://github.com/manaakiwhenua/manaakiwhenua-standards)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[tool.poetry]
|
2
2
|
name = "vector2dggs"
|
3
|
-
version = "0.9.
|
3
|
+
version = "0.9.1"
|
4
4
|
description = "CLI DGGS indexer for vector geospatial data"
|
5
5
|
authors = ["James Ardo <ardoj@landcareresearch.co.nz>"]
|
6
6
|
maintainers = ["Richard Law <lawr@landcareresearch.co.nz>"]
|
@@ -19,7 +19,7 @@ python = "^3.11"
|
|
19
19
|
gdal = "^3.8"
|
20
20
|
geopandas = "^1.0.1"
|
21
21
|
h3pandas = "^0.3"
|
22
|
-
dask-geopandas = "^0.
|
22
|
+
dask-geopandas = "^0.5"
|
23
23
|
dask = "^2025.1"
|
24
24
|
click = "^8.1.7"
|
25
25
|
tqdm = "^4.67"
|
@@ -0,0 +1 @@
|
|
1
|
+
__version__: str = "0.9.1"
|
@@ -1 +0,0 @@
|
|
1
|
-
__version__: str = "0.9.0"
|
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
|