1#![doc = include_str!("../README.md")]
2#![cfg_attr(docsrs, feature(doc_cfg))]
3#![cfg_attr(not(test), warn(unused_crate_dependencies))]
4#![warn(missing_docs)]
5#![doc(
6 html_logo_url = "https://github.com/geoarrow.png",
7 html_favicon_url = "https://github.com/geoarrow.png?size=32"
8)]
9
10mod coord_type;
11pub mod crs;
12mod datatype;
13mod dimension;
14mod edges;
15pub mod error;
16mod metadata;
17mod r#type;
18pub mod type_id;
19
20pub use coord_type::CoordType;
21pub use crs::{Crs, CrsType};
22pub use datatype::GeoArrowType;
23pub use dimension::Dimension;
24pub use edges::Edges;
25pub use metadata::Metadata;
26pub use r#type::{
27 BoxType, GeometryCollectionType, GeometryType, LineStringType, MultiLineStringType,
28 MultiPointType, MultiPolygonType, PointType, PolygonType, RectType, WkbType, WktType,
29};