powered by
Split a SpatVector or SpatRaster
# S4 method for SpatRaster split(x, f)# S4 method for SpatVector split(x, f)
# S4 method for SpatVector split(x, f)
Same as x
x
SpatRaster or SpatVector
If x is a SpatVector: a field (variable) name or a vector of the same length as x. If x is a SpatRaster: a vector of the length nlyr(x)
nlyr(x)
v <- vect(system.file("ex/lux.shp", package="terra")) x <- split(v, "NAME_1") s <- rast(system.file("ex/logo.tif", package="terra")) y <- split(s, c(1,2,1)) sds(y)
Run the code above in your browser using DataLab