egml-core 0.0.2-alpha.5

Core primitives and operations for processing GML data.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Abstract GML feature base class ([OGC 07-036 ยง9](https://docs.ogc.org/is/07-036/07-036.pdf)).
//!
//! A *feature* is any real-world phenomenon with identity that can be described
//! using GML.  [`AbstractFeature`] extends [`AbstractGml`](super::base::AbstractGml)
//! and serves as the base for all concrete feature types defined in
//! GML application schemas.

mod abstract_feature;
mod abstract_feature_kind;
mod bounding_shape;

pub use abstract_feature::*;
pub use abstract_feature_kind::*;
pub use bounding_shape::*;