pub enum DemAlg {
Aspect,
ColorRelief,
Hillshade,
Roughness,
Slope,
Tpi,
Tri,
}Expand description
DEM processor mode, to stringify and pass to gdal_sys::GDALDEMProcessing.
Variants§
Aspect
Computes the azimuth that the slopes in some DEM data are facing.
ColorRelief
Uses a configuration file to colorized a DEM dataset.
Hillshade
Performs hill-shade rendering of DEM data.
Roughness
Computes the roughness from DEM data, which is the largest difference between the central pixel and its surrounding cells.
Slope
Computes slope values from DEM data.
Tpi
Computes the Topographic Position Index from DEM data, which is the difference between the central pixel and the mean of its surrounding cells.
Tri
Computes the Topographic Roughness Index from DEM data, which measures the difference between the central pixel and the surrounding cells.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DemAlg
impl RefUnwindSafe for DemAlg
impl Send for DemAlg
impl Sync for DemAlg
impl Unpin for DemAlg
impl UnwindSafe for DemAlg
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more