surtgis-core 0.15.4

Core types and traits for SurtGis geospatial library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Raster data structures and operations

#[cfg(feature = "complex")]
pub mod complex;
mod element;
mod geotransform;
mod grid;
mod neighborhood;

pub use element::{RasterCell, RasterElement};
#[cfg(feature = "complex")]
pub use complex::{complex_from_parts, complex_to_parts, magnitude, phase};
pub use geotransform::GeoTransform;
pub use grid::Raster;
pub use neighborhood::{Neighborhood, NeighborhoodIterator};