Skip to main content

geotiff_core/
lib.rs

1//! Shared GeoTIFF types used by both `geotiff-reader` and `geotiff-writer`.
2//!
3//! Provides the foundational GeoTIFF types: GeoKey directory, CRS info,
4//! affine geo-transforms, and well-known tag/key constants.
5
6pub mod crs;
7pub mod geokeys;
8pub mod metadata;
9pub mod tags;
10pub mod transform;
11
12pub use crs::{CrsInfo, ModelType, RasterType};
13pub use geokeys::{GeoKey, GeoKeyDirectory, GeoKeyValue};
14pub use metadata::GeoMetadata;
15pub use transform::GeoTransform;