Extract values of raster using in parallel
extract_along.Rd
Function to extract values of rasters along lines using parallel computation. The function is actually not very optimized currently.
Usage
extract_along(
r,
sl,
ws,
col_step_length = "dist",
step_id = "use_ava_data_animals_id",
prefix = "along_",
summarize = TRUE
)
# S3 method for class 'SpatRaster'
extract_along(
r,
sl,
ws,
col_step_length = "dist",
step_id = "use_ava_data_animals_id",
prefix = "along_",
summarize = TRUE
)
# S3 method for class 'data.frame'
extract_along(
r,
sl,
ws,
col_step_length = "dist",
step_id = "use_ava_data_animals_id",
prefix = "along_"
)
Arguments
- r
[SpatRast,data.frame]
Either a set of rasters, in theSpatRaster
format from terra; or adata.frame
resulting ofterra::extract
for linestrings, for a set of environmental variables (defined here as the columns).- sl
[sf,SpatVector]
Vector of step lines, with a column representing the step id (stratum or just step number) and a LINESTRING geometry for each step. Can be asf
or aSpatVector
object.- ws
List of which summary statistics are to be computed. Currently, only "mean", "max", "min", and "sum" are implemented.
- col_step_length
[character="dist"]
String with the name of the column representing step length.- step_id
[character="use_ava_data_animals_id"]
String with the name of the column representing step ID.- prefix
[character="along_"]
Prefix to be added to the extracted variable names.