cityjson-lib 0.4.0

High-level CityJSON 2.0 read/write facade integrating JSON I/O
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![allow(clippy::all, clippy::pedantic)]
#![doc = include_str!("../docs/public-api.md")]

mod error;
#[cfg(feature = "json")]
pub mod json;
#[cfg(feature = "json")]
pub mod ops;
pub mod query {
    pub use cityjson::query::{ModelSummary, summary};
}
mod version;

pub use Model as CityModel;
pub use cityjson;
pub use cityjson::v2_0::OwnedCityModel as Model;
pub use error::{Error, ErrorKind, Result};
pub use version::CityJSONVersion;