geoarrow_array/array/coord/mod.rs
1//! Contains implementations for how to encode arrays of coordinates for all other geometry array
2//! types.
3//!
4//! Coordinates can be either _interleaved_, where they're represented as a `FixedSizeList`, or
5//! _separated_, where they're represented with a `StructArray`.
6
7mod combined;
8mod interleaved;
9mod separated;
10
11pub use combined::CoordBuffer;
12pub use interleaved::InterleavedCoordBuffer;
13pub use separated::SeparatedCoordBuffer;