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
//! Root GML types common to all GML objects.
//!
//! Every GML object descends from `AbstractGML` ([OGC 07-036 ยง7.2.2.2](https://docs.ogc.org/is/07-036/07-036.pdf)), which
//! carries an optional [`Id`] and zero-or-more name strings.  This module
//! exposes those two building blocks.
//!
//! | Type | Description |
//! |------|-------------|
//! | [`AbstractGml`] | Base data shared by every GML object |
//! | [`Id`] | Stable, globally unique GML object identifier |

mod abstract_gml;
mod id;

pub use self::abstract_gml::*;
pub use self::id::*;