Skip to contents

Generate Sampling Effort Points

Usage

effort_basic(
  simulation_object,
  n_samplers = 1,
  n_visits = 1,
  n_sample_units = 1,
  replace = FALSE,
  prob_raster = NULL,
  ...
)

Arguments

simulation_object

A SimulationObject containing the target suitability layers.

n_samplers

The number of samplers. Default is 1.

n_visits

The number of visits per sampler. Default is 1.

n_sample_units

The number of sample units per visit. Default is 1.

replace

A logical value indicating whether sampling with replacement is allowed. Default is FALSE.

prob_raster

A SpatRaster providing the probability of sampling each cell. Default is NULL.

...

Any other arguments to function

Value

An sf object containing the sampling effort points.

Examples

if (FALSE) { # \dontrun{
effort <- effort_basic(simulation_object, n_samplers = 2, n_visits = 3)
} # }