survey | R Documentation |
This function calculate the effective surveyed area based on viewshed analysis. A valid GRASS GIS session must be initiated before.
survey(
elev,
pts,
ID = NULL,
maxdist = 1000,
do.extend = FALSE,
path.save = tempdir(),
path.temp = tempdir(),
method = "bilinear",
memory = 4096,
NAflag = -99999,
return.geom = TRUE,
cores = 1,
quiet = TRUE,
show.output.on.console = FALSE
)
elev |
RasterLayer containing elevation values |
pts |
sf containing the points from which the effective surveyed area is estimated. |
ID |
vector containing names for temporary written data. Vector length must be the same as number of input points. Default: NULL. |
maxdist |
viewshed distance to analysie. Default: 1000 m |
do.extend |
extend output to extent of input elev. Default: FALSE |
path.save |
path to store files. Default: tempdir() |
path.temp |
path to store tempory files. Default: tempdir() |
method |
method for extracting elevation values for points. Default: 'bilinear'. Use 'simple' for neares neighbor. |
memory |
memory used in viewshed computation. GRASS GIS r.viewshed. Default: 4096. |
NAflag |
replace value for NA (NULL data). Default: -99999. |
return.geom |
If TRUE geometry is returned by functtion. Default: TRUE. |
cores |
number for cores for parallel-processing. If cores > 1 then for each observation in pts a mapset is created. Default: 1. |
quiet |
do not show comments and state. Default: TRUE |
show.output.on.console |
show GRASS GIS console output. Default: FALSE |
list of RasterLayer of viewshed parameters
function is taken from Bornaetxea, T., Rossi, M., Marchesini, I., & Alvioli, M. (2018). Effective surveyed area and its role in statistical landslide susceptibility assessments. Natural Hazards and Earth System Sciences, 18(9), 2455-2469.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.