Skip to content

Commit d8592c1

Browse files
Changes to prepare release 0.2.0 (#71)
Co-authored-by: Joris Van den Bossche <[email protected]>
1 parent 43892f8 commit d8592c1

File tree

6 files changed

+15
-8
lines changed

6 files changed

+15
-8
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ lines, polygons) in [Apache Parquet](https://parquet.apache.org/), a popular col
88
geospatial data is represented in Parquet to further geospatial interoperability among tools using Parquet today, and hopefully
99
help push forward what's possible with 'cloud-native geospatial' workflows.
1010

11-
**Warning:** This is not (yet) a stable specification that can be relied upon. The initial 0.1 release was made to gather
12-
wider feedback, and we anticipate that some things may change. For now we reserve the right to make changes in backwards incompatible
11+
**Warning:** This is not (yet) a stable specification that can be relied upon. All 0.X releases are made to gather wider feedback, and we anticipate that some things may change. For now we reserve the right to make changes in backwards incompatible
1312
ways (though will try not to), see the [versioning](#versioning) section below for more info. If you are excited about the potential
1413
please collaborate with us by building implementations, sounding in on the issues and contributing PR's!
1514

@@ -61,7 +60,8 @@ will work much better if it is backing a system that is constantly updating the
6160
Our aim is to get to a 1.0.0 within 'months', not years. The rough plan is:
6261

6362
* 0.1 - Get the basics established, provide a target for implementations to start building against.
64-
* 0.2 - Feedback from implementations, add spatial index and potentially 3D coordinates.
63+
* 0.2 - Feedback from implementations, 3D coordinates support.
64+
* 0.3 - Feedback from implementations, add spatial index.
6565
* 0.x - Several iterations based on feedback from implementations.
6666
* 1.0.0-RC.1 - Aim for this when there are at least 6 implementations that all work interoperably and all feel good about the spec.
6767
* 1.0.0 - Once there are 12(?) implementations in diverse languages we will lock in for 1.0

examples/example.parquet

0 Bytes
Binary file not shown.

examples/example.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
"""
22
Generates `example.parquet` using pyarrow by running `python example.py`.
3+
4+
You can print the metadata with:
5+
6+
.. code-block:: python
7+
8+
>>> import json, pprint, pyarrow.parquet as pq
9+
>>> pprint.pprint(json.loads(pq.read_schema("example.parquet").metadata[b"geo"]))
310
"""
411
import json
512
import pathlib
@@ -17,7 +24,7 @@
1724

1825

1926
metadata = {
20-
"version": "0.1.0",
27+
"version": "0.2.0",
2128
"primary_column": "geometry",
2229
"columns": {
2330
"geometry": {

examples/example_metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@
1818
}
1919
},
2020
"primary_column": "geometry",
21-
"version": "0.1.0"
21+
"version": "0.2.0"
2222
}
2323
}

format-specs/geoparquet.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ should be stored in parquet format, including the representation of geometries a
77

88
## Version
99

10-
This is version 0.1.0 of the geoparquet specification.
10+
This is version 0.2.0 of the geoparquet specification.
1111

1212
## Geometry columns
1313

@@ -44,7 +44,7 @@ but have a default geometry used for geospatial operations.
4444

4545
#### version
4646

47-
Version of the geoparquet spec used, currently 0.1.0
47+
Version of the geoparquet spec used, currently 0.2.0
4848

4949
### Column metadata
5050

validator/python/geoparquet_validator/schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"properties": {
77
"version": {
88
"type": "string",
9-
"pattern": "^0\\.1\\.[0-9]+$",
9+
"pattern": "^0\\.2\\.[0-9]+$",
1010
"description": "The version of the geoparquet metadata standard used when writing."
1111
},
1212
"primary_column": {

0 commit comments

Comments
 (0)