sa: Calculates the Average Roughness of a Surface

View source: R/basics.R

saR Documentation

Calculates the Average Roughness of a Surface

Description

Finds the average roughness of a surface (Sa) as the absolute deviation of surface heights from the mean surface height. Height is measured as the value of a raster and may not necessarily represent actual height.

Usage

sa(x)

Arguments

x

A raster or matrix.

Value

A value of average roughness in the units of the original raster or matrix.

Examples

# import raster image
data(normforest)
normforest <- terra::unwrap(normforest)

# find the surface roughness
roughness <- sa(normforest)

geodiv documentation built on Oct. 6, 2023, 1:07 a.m.