Simulated data for prioritizing sites for ecological surveys.

data(sim_features)

data(sim_sites)

Format

sim_sites

sf::sf() object.

sim_features

tibble::tibble() object.

.

Details

The simulated datasets provide data for six sites and three features. The sites can potentially acquired for protected area establishment. However, existing information on the spatial distribution of the features is incomplete. Only some of the sites have existing ecological survey data. To help inform management decisions, species distribution models have been fitted to predict the probability of each species occupying each site.

sim_sites

This object describes the sites and contains the following data: cost of surveying the sites (survey_cost column), cost of acquiring sites for conservation (management_cost column), results from previous ecological surveys (f1, f2, f3 columns), previous survey effort (n1, n2, n3 columns), environmental conditions of the sites (e1, e2 columns), and modeled probability of the features occupying the sites (p1, p2, p3 columns).

sim_features

This object describes the features and contains the following data: the name of each feature (name column), whether each feature should be considered in future surveys (survey column), the sensitivity and specificity of the survey methodology for each the sensitivity and specificity of the species distribution model for each feature (model_sensitivity, model_specificity columns), and the representation target thresholds for each feature (target column).

See also

These datasets were simulated using simulate_feature_data() and simulate_site_data().

Examples

# load data
data(sim_sites, sim_features)

# print feature data
print(sim_features, width = Inf)
#> # A tibble: 3 × 7
#>   name  survey survey_sensitivity survey_specificity model_sensitivity
#>   <chr> <lgl>               <dbl>              <dbl>             <dbl>
#> 1 f1    TRUE                0.954              0.886             0.718
#> 2 f2    TRUE                0.974              0.875             0.705
#> 3 f3    TRUE                0.956              0.823             0.768
#>   model_specificity target
#>               <dbl>  <dbl>
#> 1             0.811      1
#> 2             0.860      1
#> 3             0.887      1
# print site data
print(sim_sites, width = Inf)
#> Simple feature collection with 6 features and 13 fields
#> Geometry type: POINT
#> Dimension:     XY
#> Bounding box:  xmin: 0.10513 ymin: 0.04556193 xmax: 0.9764926 ymax: 0.8637977
#> CRS:           NA
#> # A tibble: 6 × 14
#>   survey_cost management_cost    f1    f2    f3    n1    n2    n3      e1     e2
#>         <dbl>           <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl>   <dbl>  <dbl>
#> 1          14             102     1   1       1     3     3     3  1.00   -0.848
#> 2          25              90     0   0       0     0     0     0 -1.44    1.27 
#> 3          25             165     1   0.6     0     5     5     5  1.25    0.817
#> 4          17             104     0   0       0     0     0     0 -0.484  -0.292
#> 5          18             100     0   0       0     0     0     0  0.0135  0.380
#> 6          15              94     0   0       0     0     0     0 -0.347  -1.33 
#>      p1    p2    p3               geometry
#>   <dbl> <dbl> <dbl>                <POINT>
#> 1 1     0.999 0.789  (0.1589075 0.8637977)
#> 2 0     0     0.112  (0.9764926 0.7485368)
#> 3 1     0.419 0.012  (0.8362375 0.2282762)
#> 4 0.022 0.502 0.834     (0.10513 0.179855)
#> 5 0.318 0.13  0.225 (0.5985786 0.04556193)
#> 6 0.474 0.997 0.991  (0.1504241 0.6821156)