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.14.1, GDAL 3.12.2, PROJ 9.7.1; sf_use_s2() is TRUE
library(terra)
#> terra 1.9.34The 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.
pts <- sample_ct(
region = clearwater_lake_density,
n = 25,
type = 'random',
strata = 'density'
)
plot(pts)To evaluate candidate camera trap locations, determine each spatial layer required and the criteria associated with it. For example:
Deployment feasibility
Characteristics of candidate locations
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)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)To select camera trap locations, define the criteria for selecting and sorting candidate locations.
Criteria for selection:
Criteria for sorting:
# 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 9 features and 8 fields
#> Geometry type: POINT
#> Dimension: XY
#> Bounding box: xmin: 345599.2 ymin: 5978628 xmax: 375339.6 ymax: 6000398
#> Projected CRS: WGS 84 / UTM zone 14N
#> density geometry id_sample_ct elev_pt elev_buffer_1e3
#> 49 Medium POINT (350047.9 5989637) 49 287 287.5320
#> 52 Low POINT (374902.3 5990921) 52 269 267.9497
#> 71 Low POINT (374913.3 5990550) 71 260 264.9244
#> 25 High POINT (350675.3 5985165) 25 285 284.1433
#> 74 Low POINT (348484.1 5995830) 74 291 291.2632
#> 50 Medium POINT (375339.6 5986303) 50 264 264.3947
#> 8 High POINT (345599.2 6000398) 8 287 286.7411
#> 17 High POINT (350242.5 5978628) 17 277 276.4603
#> 27 Medium POINT (359853.7 5979907) 27 270 268.7709
#> road_dist lc_pt hydro_dist wetland_dist
#> 49 2165.6539 1 6299.5706 2770.204
#> 52 1859.9967 1 615.9707 2935.818
#> 71 1749.7001 1 380.0270 3257.094
#> 25 794.1265 1 5788.1770 4040.848
#> 74 1330.3767 1 3951.0632 4062.571
#> 50 1179.8199 1 179.1445 7214.589
#> 8 957.1787 1 3663.8196 8957.833
#> 17 114.8764 5 6003.7664 10315.302
#> 27 2711.9746 1 2957.0131 10698.765The 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.
After the grid design is selected, the grid_ct function
can be used with the selected camera trap locations.
ct_grids <- grid_ct(
features = order_select_pts,
distance = 500,
case = 'queen'
)
plot(ct_grids['id_grid_ct'][1])Example data used in the {camtrapmonitoring} package come from open data sources we gratefully acknowledge in the help page for each data set. Also see the “data-raw” directory in the package source for full data preprocessing steps.
?clearwater_lake_density?clearwater_lake_elevation?clearwater_lake_hydro?clearwater_lake_land_cover?clearwater_lake_roads