ogcapi_types/lib.rs
1#![doc = include_str!("../README.md")]
2
3/// Types specified in the `OGC API - Common` standard.
4#[cfg(feature = "common")]
5pub mod common;
6/// Types specified in the `OGC API - Environmental Data Retrieval` standard.
7#[cfg(feature = "edr")]
8pub mod edr;
9/// Types specified in the `OGC API - Features` standard.
10#[cfg(feature = "features")]
11pub mod features;
12/// Types specified in the `OGC API - Processes` standard.
13#[cfg(feature = "processes")]
14pub mod processes;
15/// Types from the `SpatioTemporal Asset Catalog` specfication.
16#[cfg(feature = "stac")]
17pub mod stac;
18/// Types specified in the `OGC API - Styles` standard.
19#[cfg(feature = "styles")]
20pub mod styles;
21/// Types specified in the `OGC API - Tiles` standard.
22#[cfg(feature = "tiles")]
23pub mod tiles;
24
25#[cfg(feature = "coverages")]
26mod coverages;