gdal 0.14.0

GDAL bindings for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! GDAL Spatial Reference System Functions
//!
//! <https://gdal.org/api/ogr_srs_api.html>

mod srs;

pub use gdal_sys::OGRAxisOrientation;
pub use srs::{AxisOrientationType, CoordTransform, SpatialRef};

#[cfg(test)]
mod tests;