This function simulates Include objects.
Arguments
- dataset
Dataset object.
- n
integer
number of objects to simulate.
Value
A list
of simulated Include objects.
Examples
# find data file paths
f1 <- system.file(
"extdata", "projects", "sim_raster", "sim_raster_spatial.tif",
package = "wheretowork"
)
f2 <- system.file(
"extdata", "projects", "sim_raster", "sim_raster_attribute.csv.gz",
package = "wheretowork"
)
f3 <- system.file(
"extdata", "projects", "sim_raster", "sim_raster_boundary.csv.gz",
package = "wheretowork"
)
# create new dataset
d <- new_dataset(f1, f2, f3)
# simulate data
x <- simulate_includes(dataset = d, n = 2)
# print results
print(x)
#> [[1]]
#> Include
#> id: f9c15fb9-8dba-4613-9d82-94a32cc2d27b
#> name: OECM areas
#> variable: .../sim_raster_spatial.tif#OECM_areas [total: 168 ]
#> pane: 0231340e-d61e-4306-8107-2fd7d964c7f2-OECM_areas
#> visible: TRUE
#> invisible: NA
#> loaded: TRUE
#> hidden: FALSE
#> downloadable: TRUE
#> status: TRUE
#> overlap: NA
#>
#> [[2]]
#> Include
#> id: 9d82a5bc-a0ec-4061-93bf-b3d89205d8e7
#> name: Special Protection Area
#> variable: .../sim_raster_spatial.tif#Special_Protection_Area [total: 156 ]
#> pane: 8d6ae2ef-47ac-4fa9-95af-dc45c4e0e5ec-Special_Protection_Area
#> visible: TRUE
#> invisible: NA
#> loaded: TRUE
#> hidden: FALSE
#> downloadable: TRUE
#> status: TRUE
#> overlap: NA
#>