egml-core 0.0.2-alpha.3

Core primitives and operations for processing GML data.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! GML data model.
//!
//! The model is organized into four sub-modules that mirror the ISO 19136 GML
//! package structure:
//!
//! | Sub-module | Contents |
//! |------------|----------|
//! | [`base`] | Root GML types: [`AbstractGml`](base::AbstractGml), [`Id`](base::Id) |
//! | [`basic`] | Scalar value types: [`Code`](basic::Code), [`Measure`](basic::Measure) |
//! | [`feature`] | Abstract feature base class |
//! | [`geometry`] | Full geometry type hierarchy |

pub mod base;
pub mod basic;
pub mod feature;
pub mod geometry;