topoWeightedDist {topoDistance}R Documentation

Weighted topographic distances and paths

Description

Calculates weighted topographic distances and paths

Usage

topoWeightedDist(
  DEM,
  pts,
  directions = 8,
  paths = FALSE,
  hFunction = NULL,
  vFunction = NULL
)

Arguments

DEM

A RasterLayer for digital elevation model (DEM) data; should be in a projected coordinate system.

pts

A SpatialPoints object or two-column matrix with xy coordinates for the geographic points from which to calculate pairwise distances and paths.

directions

numeric (default = 8). The number of directions for movement between cells, either 4 or 8.

paths

logical. Default is FALSE, in which case only topographic distances are calculated. If TRUE, topographic paths are also identified.

hFunction

character or function (default = NULL). A function describing the cost of changing aspect angle.

vFunction

character or function (default = NULL). A function describing the cost of movement along an incline.

Details

The hFunction argument can be set to "exponential" or "linear" to use standard functions for the cost of aspect angle changes. If providing a custom function instead, the equation should be a function of one variable, angle (in radians). The vFunction argument can be set to "exponential" or "quadratic" to use standard functions for the cost of movement along an incline. If providing a custom function instead, The equation should be a function of one variable, slope. If paths = FALSE, the function will return a matrix of pairwise topographic distances between the specified points. If paths = TRUE, the function will return a list with two items: (1) the matrix of pairwise topographic distances, and (2) a SpatialLines object containing the topographic paths.

Value

Matrix of transport costs (if paths = FALSE), or a list containing a matrix of transport costs and paths as an object of class SpatialLines (if paths = TRUE).

Examples

xy <- matrix(ncol = 2, byrow = TRUE,
             c(-119.5566, 37.7247,
               -119.4718, 37.7608))
topoWeightedDist(Yosemite$DEM, xy, vFunction = "exponential")

[Package topoDistance version 1.0.2 Index]