expandClass | R Documentation |
Expand an existing class of patches.
expandClass(context, class, size, bgr = 0, pts = NULL)
context |
SpatRaster object or matrix, an empty landscape raster or a mask indicating where the patch cannot be generated (see bgr below). |
class |
The raster value of class (or patch) to expand. |
size |
integer. Size of expansion, as number of raster cells. |
bgr |
integer. The background available where expansion is allowed (i.e. shrinking classes). |
pts |
integer or matrix. The seed point location around which the patches are built (random points are given by default). It can be an integer, as indexes of the cells in the raster, or a two columns matrix indicating x and y coordinates. |
A SpatRaster object. If rast=FALSE
returns a list of vectors, each containing the context
cells assigned to each patch.
library(terra)
m = matrix(0, 33, 33)
r = rast(m)
ext(r) = c(0, 10, 0, 10)
r = makeClass(r, 5, 10)
plot(r)
rr = expandClass(r, 1, 100)
plot(rr)
## This function can be used to mimic shapes, by providing a skeleton:
m[,17] = 1
r = rast(m)
ext(r) = c(0, 10, 0, 10)
plot(r)
rr = expandClass(r, 1, 100)
plot(rr)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.