rasters/
lib.rs

1//! Library to efficiently process GDAL rasters.
2
3/// The error type returned by this crate. Currently this is
4/// a synonym for [ `anyhow::Error` ].
5pub type Error = anyhow::Error;
6
7/// The `Result` type returned by this crate.
8pub type Result<T> = std::result::Result<T, Error>;
9
10pub mod geometry;
11pub mod histogram;
12pub mod stats;
13
14pub mod chunking;
15#[cfg(feature = "gdal")]
16pub mod reader;
17
18pub mod align;
19
20pub mod prelude;