//! Library to efficiently process GDAL rasters.
/// The error type returned by this crate. Currently this is
/// a synonym for [ `anyhow::Error` ].
pubtypeError=anyhow::Error;/// The `Result` type returned by this crate.
pubtypeResult<T>=std::result::Result<T, Error>;pubmodgeometry;pubmodhistogram;pubmodstats;pubmodchunking;#[cfg(feature ="gdal")]pubmodreader;pubmodalign;pubmodprelude;