This function is a low-level utility to generate spatial point patterns for the MICRO-LANDSCAPE point sets.
pointsOverdispersed(n, inhibitionFactor = 1, xLim = c(0, 1), yLim = c(0, 1))
n | number of points to generate |
---|---|
inhibitionFactor | controls level of overdispersion (higher values correspond to a more overdispersed spatial point process) |
xLim | a length 2 numeric vector of bounds for the sampling grid |
yLim | a length 2 numeric vector of bounds for the sampling grid |
a list with two elements x and y corresponding to the sampled points
pointsOverdispersed(n=10, inhibitionFactor = 1, xLim=c(0,1), yLim=c(0,1))#> $x #> [1] 0.652054297 0.289281737 0.619193970 0.176350110 0.938342408 0.002400788 #> [7] 0.375833667 0.944727323 0.008762787 0.943730775 #> #> $y #> [1] 0.22632264 0.63758467 0.54167808 0.11075900 0.84647114 0.99344603 #> [7] 0.98488969 0.51946641 0.45911845 0.07016841 #>