Skip to content

Commit 0d84f56

Browse files
cut v0.3.2
1 parent 4e4cb26 commit 0d84f56

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ Usage: vector2dggs h3 [OPTIONS] VECTOR_INPUT OUTPUT_DIRECTORY
2727
Ingest a vector dataset and index it to the H3 DGGS.
2828

2929
VECTOR_INPUT is the path to input vector geospatial data. OUTPUT_DIRECTORY
30-
should be a directory, not a file, as it will be the write location for an
31-
Apache Parquet data store.
30+
should be a directory, not a file or database table, as it will instead be
31+
the write location for an Apache Parquet data store.
3232

3333
Options:
3434
-v, --verbosity LVL Either CRITICAL, ERROR, WARNING, INFO or
@@ -69,8 +69,8 @@ Options:
6969
database connection as input [default:
7070
geom]
7171
-o, --overwrite
72+
--version Show the version and exit.
7273
--help Show this message and exit.
73-
7474
```
7575
7676
### Example
@@ -152,13 +152,13 @@ vector2dggs h3 -v DEBUG -id ogc_fid -r 9 -p 5 -t 4 --overwrite -tbl topo50_lake
152152
title={{vector2dggs}},
153153
author={Ardo, James and Law, Richard},
154154
url={https://github.com/manaakiwhenua/vector2dggs},
155-
version={0.3.1},
155+
version={0.3.2},
156156
date={2023-04-20}
157157
}
158158
```
159159
160160
APA/Harvard
161161
162-
> Ardo, J., & Law, R. (2023). vector2dggs (0.3.1) [Computer software]. https://github.com/manaakiwhenua/vector2dggs
162+
> Ardo, J., & Law, R. (2023). vector2dggs (0.3.2) [Computer software]. https://github.com/manaakiwhenua/vector2dggs
163163
164164
[![manaakiwhenua-standards](https://github.com/manaakiwhenua/vector2dggs/workflows/manaakiwhenua-standards/badge.svg)](https://github.com/manaakiwhenua/manaakiwhenua-standards)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "vector2dggs"
3-
version = "0.3.1"
3+
version = "0.3.2"
44
description = "CLI DGGS indexer for vector geospatial data"
55
authors = ["James Ardo <[email protected]>"]
66
maintainers = ["Richard Law <[email protected]>"]

vector2dggs/h3.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ def h3(
268268
Ingest a vector dataset and index it to the H3 DGGS.
269269
270270
VECTOR_INPUT is the path to input vector geospatial data.
271-
OUTPUT_DIRECTORY should be a directory, not a file or database table, as it willinstead be the write location for an Apache Parquet data store.
271+
OUTPUT_DIRECTORY should be a directory, not a file or database table, as it will instead be the write location for an Apache Parquet data store.
272272
"""
273273
con: sqlalchemy.engine.Connection = None
274274
scheme: str = urlparse(vector_input).scheme

0 commit comments

Comments
 (0)