cityjson 0.7.1

Types and accessor methods for representing semantic 3D city models in Rust, implementing the CityJSON specifications.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Raw access to internal data structures for efficient serialization.
//!
//! This module exposes zero-copy views over core containers so downstream crates
//! can build custom serializers (for example Parquet/Arrow exporters) without
//! rebuilding intermediate nested structures.

pub mod accessors;
pub mod v2_0;
pub mod views;
pub use accessors::*;
pub use v2_0::*;
pub use views::*;