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
//! 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 bounding_shape;

pub use self::abstract_feature::*;
pub use self::bounding_shape::*;