geoserde 0.5.3-beta.1

Adapter between Rust data structures and geospatial file formats
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![cfg(feature = "fgb")]

//! [FlatGeobuf](https://flatgeobuf.org/) serialization and deserialization.
//!
//! Use [`FeatureDeserializer`] to read features from a FlatGeobuf file, and
//! [`FeatureSerializer`] or [`LayerSerializer`] to write them.

pub mod de;
mod error;
pub mod ser;

pub use de::{FeatureDeserializer, Features};
pub use error::Error;
pub use ser::{FeatureSerializer, LayerSerializer};

pub use flatgeobuf;