You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| crs | string |**REQUIRED**[WKT2](http://docs.opengeospatial.org/is/12-063r5/12-063r5.html) string representing the Coordinate Reference System (CRS) of the geometry. |
54
54
| encoding | string |**REQUIRED** Name of the geometry encoding format. Currently only 'WKB' is supported. |
55
+
| bbox |\[number]|**OPTIONAL** Bounding Box of the geometries in the file, formatted according to [RFC 7946, section 5](https://tools.ietf.org/html/rfc7946#section-5)|
55
56
56
57
#### crs
57
58
@@ -78,6 +79,16 @@ This is the binary format that the geometry is encoded in. The string 'WKB' to r
78
79
[Well Known Binary](https://en.wikipedia.org/wiki/Well-known_text_representation_of_geometry#Well-known_binary) is the only current option, but future versions
79
80
of the spec may support alternative encodings. This should be the ["standard"](https://libgeos.org/specifications/wkb/#standard-wkb) WKB representation.
80
81
82
+
#### bbox
83
+
84
+
Bounding boxes are used to help define the spatial extent of each geometry column.
85
+
Implementations of this schema may choose to use those bounding boxes to filter
86
+
partitions (files) of a partitioned dataset.
87
+
88
+
The bbox, if specified, must be encoded with an array containing the minimum
89
+
and maximum values of each dimension: `[<xmin>, <ymin>, <xmax>, <ymax>]`.
90
+
This follows the GeoJSON specification ([RFC 7946, section 5](https://tools.ietf.org/html/rfc7946#section-5)).
0 commit comments