Introduction to camtrapmonitoring
Alec L. Robitaille
2024-06-25
Source:vignettes/intro-camtrapmonitoring.Rmd
intro-camtrapmonitoring.Rmd
The {camtrapmonitoring} package provides functions for planning and evaluating camera trap surveys. The recommended approach is to first sample a set of candidate camera trap locations larger than the intended number of locations. Next, these candidate locations are evaluated using spatial layers to measure their deployment feasibility (such as distance to road) and to quantify their bias and coverage of project-specific characteristics (such as distribution across specific land cover classes).
{camtrapmonitoring} is designed to work with modern spatial R packages: {sf} and {terra}.
library(camtrapmonitoring)
library(sf)
#> Linking to GEOS 3.10.2, GDAL 3.4.1, PROJ 8.2.1; sf_use_s2() is TRUE
Sampling candidate camera trap locations
The sample_ct
function returns candidate camera trap
locations using sf::st_sample
across the user’s region of
interest. Options include “regular”, “random” or “hexagonal” sampling
across the entire region of interest or stratified by a column in the
provided features.
The example data “clearwater_lake_density” is a simulated species density grid near Clearwater Lake, Manitoba. It is a simple feature collection of polygons with a column named “density” (High, Medium, Low).
We will randomly sample candidate camera trap locations, stratified by the simulated species density.
Evaluating candidate camera trap locations
To evaluate candidate camera trap locations, determine each spatial layer required and the criteria associated with it. For example:
Deployment feasibility
- elevation
- point sample
- buffered point sample
- roads
- distance to
Characteristics of candidate locations
- land cover
- point sample
- hydrology
- distance to
- wetlands
- distance to
Deployment feasibility
First, we will evaluate the deployment feasibility layers. Note the example elevation data is an external TIF file that can be loaded with the {terra} package.
The eval_*
family of functions return a vector of values
for each candidate camera trap location. These vectors can be added to
the simple features objects using the base R
df$name <- value
syntax (shown here) or with
dplyr::mutate
. eval_*
functions take
‘features’ (candidate camera trap locations) and a ‘target’ covariate to
evaluate each candidate location with. For eval_pt
and
eval_buffer
, ‘target’ covariates are expected to be raster
layers while eval_dist
expects a ‘target’ vector
object.
# Load data
clearwater_lake_elevation_path <- system.file('extdata', 'clearwater_lake_elevation.tif', package = 'camtrapmonitoring')
clearwater_lake_elevation <- rast(clearwater_lake_elevation_path)
data("clearwater_lake_roads")
# Evaluate elevation using point sample
pts$elev_pt <- eval_pt(features = pts, target = clearwater_lake_elevation)
# Evaluate elevation using buffered point sample
pts$elev_buffer_1e3 <- eval_buffer(
features = pts,
target = clearwater_lake_elevation,
buffer_size = 1e3
)
# Evaluate distance to roads
pts$road_dist <- eval_dist(features = pts, target = clearwater_lake_roads)
# Plot results
plot(pts)
Characteristics of candidate locations
Next, we will evaluate the characteristics of candidate locations. Note the example land cover data is an external TIF file that can be loaded with the {terra} package.
# Load data
clearwater_lake_land_cover_path <- system.file('extdata', 'clearwater_lake_land_cover.tif', package = 'camtrapmonitoring')
clearwater_lake_land_cover <- rast(clearwater_lake_land_cover_path)
data("clearwater_lake_hydro")
data("clearwater_lake_wetlands")
# Evaluate land cover using point sample
pts$lc_pt <- eval_pt(features = pts, target = clearwater_lake_land_cover)
# Evaluate distance to hydrology
pts$hydro_dist <- eval_dist(features = pts, target = clearwater_lake_hydro)
# Evaluate distance to wetland
pts$wetland_dist <- eval_dist(features = pts, target = clearwater_lake_wetlands)
# Plot results
plot(pts)
Selection from candidate camera trap locations
To select camera trap locations, define the criteria for selecting and sorting candidate locations.
Criteria for selection:
- Maximum distance from roads: 3000 m
- Maximum elevation: 300 m
- Select only forest land cover classes: 1, 2, 5, 6
Criteria for sorting:
- Nearer to wetlands
- Farther from major lakes
# Selection criteria
max_road_dist_m <- 3000
max_elev_m <- 300
ls_lc_classes <- c(1, 2, 5, 6)
# Select out of candidate points
select_pts <- pts[pts$road_dist < max_road_dist_m &
pts$elev_pt < max_elev_m &
pts$lc_pt %in% ls_lc_classes,]
plot(select_pts)
# Sorting criteria
ordered <- order(select_pts$wetland_dist, -select_pts$hydro_dist)
order_select_pts <- select_pts[ordered,]
print(order_select_pts)
#> Simple feature collection with 19 features and 8 fields
#> Geometry type: POINT
#> Dimension: XY
#> Bounding box: xmin: 343883.7 ymin: 5975280 xmax: 374784 ymax: 5999650
#> Projected CRS: WGS 84 / UTM zone 14N
#> First 10 features:
#> density geometry id_sample_ct elev_pt elev_buffer_1e3
#> 44 Medium POINT (351112.2 5987486) 44 282 282.9857
#> 9 High POINT (349580.1 5992031) 9 281 280.0287
#> 36 Medium POINT (355837 5987288) 36 266 265.4736
#> 54 Low POINT (373877.4 5990058) 54 262 264.8479
#> 71 Low POINT (348300.7 5996229) 71 294 292.3944
#> 64 Low POINT (347635.1 5995290) 64 278 275.8852
#> 3 High POINT (348977.2 5999520) 3 281 282.7214
#> 48 Medium POINT (351767.9 5981993) 48 273 273.4245
#> 38 Medium POINT (352082.5 5981750) 38 277 274.2906
#> 18 High POINT (350294.7 5981149) 18 267 265.6056
#> road_dist lc_pt hydro_dist wetland_dist
#> 44 952.5554 1 5873.2112 1963.358
#> 9 124.4813 1 5836.2151 2103.119
#> 36 2208.3855 1 1220.6834 2628.344
#> 54 2766.6121 5 188.8344 4221.841
#> 71 896.7569 1 3705.0873 4382.144
#> 64 1672.7307 1 3309.5206 4744.164
#> 3 1405.1908 5 5201.7260 6043.113
#> 48 229.2211 5 4667.7889 6680.709
#> 38 199.0050 5 4440.3290 6858.708
#> 18 1157.4445 6 6245.1039 7885.833
Establishing camera trap grids
The function grid_ct
allows the user to establish
sampling grids around focal locations selected above. The
grid_design
function is provided to the user to help
explore grid layout options, using either the ‘case’ argument or the ‘n’
argument.
plot(grid_design(distance = 100, case = 'queen'))
plot(grid_design(distance = 100, case = 'bishop'))
plot(grid_design(distance = 100, case = 'rook'))
plot(grid_design(distance = 100, case = 'triplet'))
plot(grid_design(distance = 250, n = 13))
After the grid design is selected, the grid_ct
function
can be used with the selected camera trap locations.