This function simulates Exclude objects.
Arguments
- dataset
Dataset object.
- n
integer
number of objects to simulate.
Value
A list
of simulated Exclude 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_excludes(dataset = d, n = 2)
# print results
print(x)
#> [[1]]
#> Exclude
#> id: 636e3720-c4a9-43b8-8e02-1588e97c9410
#> name: Private land
#> variable: .../sim_raster_spatial.tif#Private_land [total: 134 ]
#> pane: c3b50e63-6662-4abd-b4a6-8f159b287344-Private_land
#> visible: TRUE
#> invisible: NA
#> loaded: TRUE
#> hidden: FALSE
#> downloadable: TRUE
#> status: FALSE
#> overlap: NA
#>
#> [[2]]
#> Exclude
#> id: 83692413-4693-461c-a6ce-eda24ab80045
#> name: Uplands
#> variable: .../sim_raster_spatial.tif#Uplands [total: 142 ]
#> pane: a01a25fc-cfa2-4cfc-b66a-502174822235-Uplands
#> visible: TRUE
#> invisible: NA
#> loaded: TRUE
#> hidden: FALSE
#> downloadable: TRUE
#> status: FALSE
#> overlap: NA
#>