Learn R Programming

spatialEco (version 2.0-2)

vrm: Vector Ruggedness Measure (VRM)

Description

Implementation of the Sappington et al., (2007) vector ruggedness measure

Usage

vrm(x, s = 3)

Value

A terra SpatRaster class object of the VRI

Arguments

x

A terra SpatRaster class object

s

Scale of window. Must be odd number, can represent 2 dimensions (eg., s=c(3,5) would represent a 3 x 5 window)

Author

Jeffrey S. Evans <jeffrey_evans@tnc.org>

Details

This function measures terrain ruggedness by calculating the vector ruggedness measure

References

Sappington, J.M., K.M. Longshore, D.B. Thomson (2007). Quantifying Landscape Ruggedness for Animal Habitat Analysis: A case Study Using Bighorn Sheep in the Mojave Desert. Journal of Wildlife Management. 71(5):1419-1426

Examples

Run this code
library(terra)
elev <- rast(system.file("extdata/elev.tif", package="spatialEco"))
   vrm3 <- vrm(elev) 
   vrm5 <- vrm(elev, s=5)
   plot(c(vrm3, vrm5))

Run the code above in your browser using DataLab