geotiff-core 0.4.0

Shared GeoTIFF types: GeoKey directory, CRS, affine transforms, and tag constants
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Shared GeoTIFF types used by both `geotiff-reader` and `geotiff-writer`.
//!
//! Provides the foundational GeoTIFF types: GeoKey directory, CRS info,
//! affine geo-transforms, and well-known tag/key constants.

pub mod crs;
pub mod geokeys;
pub mod metadata;
pub mod tags;
pub mod transform;

pub use crs::{CrsInfo, CrsKind, HorizontalCrs, ModelType, RasterType, VerticalCrs};
pub use geokeys::{GeoKey, GeoKeyDirectory, GeoKeyValue};
pub use metadata::GeoMetadata;
pub use transform::GeoTransform;