landSiland: A list of simulated data sets that describes landscape.
Description
Each component of the list is a dataframe that correponds to a landscape variable. For each data set, the columns X and Y indicate the locations of the different "pixels".
Usage
data("landSiland")
Arguments
Format
The format is:
List of 2
$ L1:'data.frame': 9513 obs. of 2 variables:
..$ X: num [1:9513] 0 43 86.1 129.1 172.2 ...
..$ Y: num [1:9513] 9535 9535 9535 9535 9535 ...
$ L2:'data.frame': 3615 obs. of 2 variables:
..$ X: num [1:3615] 387 430 473 516 560 ...
..$ Y: num [1:3615] 9535 9535 9535 9535 9535 ...
# NOT RUN {data(landSiland)
names(landSiland)
#locations for the two landscape variables b1 and b2plot(landSiland[[1]],col=2,pch=".")
points(landSiland[[2]],col=3,pch=".")
# }