opengeospatial / geoparquet

Specification for storing geospatial vector data (point, line, polygon) in Parquet
https://geoparquet.org
Apache License 2.0
838 stars 57 forks source link

Allow for more than 3 dimensions in the bbox #144

Closed tschaub closed 2 years ago

tschaub commented 2 years ago

The GeoJSON spec recommends 2 or 3 dimensions, but does not forbid geometries that have more. See https://www.rfc-editor.org/rfc/rfc7946#section-3.1.1.

In addition, the bbox length is 2*n where n is the number of dimensions. See https://www.rfc-editor.org/rfc/rfc7946#section-5.

jorisvandenbossche commented 2 years ago

See my comment at https://github.com/opengeospatial/geoparquet/pull/88#issuecomment-1320479016, we currently only allow 2D or 3D.

This description was added in https://github.com/opengeospatial/geoparquet/pull/45

tschaub commented 2 years ago

Thanks for the clarification, @jorisvandenbossche.