geoarrow 0.8.0

GeoArrow amalgamation crate.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Defines the logical data types of GeoArrow arrays.
//!
//! The most important things you might be looking for are:
//!
//!  * [`GeoArrowType`] to describe an array's geometry type.
//!  * [`Dimension`] to describe the dimension of an array.
//!  * [`CoordType`] to describe whether an array has interleaved or separated coordinatesx.

pub use geoarrow_schema::{
    BoxType, CoordType, Crs, CrsType, Dimension, Edges, GeoArrowType, GeometryCollectionType,
    GeometryType, LineStringType, Metadata, MultiLineStringType, MultiPointType, MultiPolygonType,
    PointType, PolygonType, WkbType, WktType,
};