versatiles_geometry 4.1.0

A toolbox for converting, checking and serving map tiles in various formats.
Documentation
1
2
3
4
5
6
7
8
9
10
//! This module provides functionality for parsing and reading GeoJSON data.
//!
//! Together, these modules form the GeoJSON interface of the `versatiles_geometry` crate,
//! used for converting GeoJSON inputs into the crate's geometry types such as [`crate::geo::GeoCollection`], [`crate::geo::GeoFeature`], and `geo_types::Geometry<f64>`.

mod parse;
mod read;

pub use parse::*;
pub use read::*;