pub trait CoordinateMetadata {
    // Provided methods
    fn crs_id(&self) -> Option<MdIdentifier> { ... }
    fn crs(&self) -> Option<Crs> { ... }
    fn coordinate_epoch(&self) -> Option<DataEpoch> { ... }
    fn is_valid(&self) -> bool { ... }
}
Expand description

The ISO-19111 Coordinate Metadata gamut includes an optional epoch and one of two possible ways of representing the CRS

Provided Methods§

source

fn crs_id(&self) -> Option<MdIdentifier>

source

fn crs(&self) -> Option<Crs>

source

fn coordinate_epoch(&self) -> Option<DataEpoch>

source

fn is_valid(&self) -> bool

Implementors§

source§

impl<T> CoordinateMetadata for T
where T: ?Sized,