raster_tools/
lib.rs

1pub mod utils;
2pub use rasters::{Error, Result};
3
4pub mod proc;
5pub use proc::*;
6
7pub mod cli;
8
9use ndarray::Array2;
10pub type Chunk<T> = (isize, Array2<T>);