Learn R Programming

terra (version 1.5-21)

split: Split

Description

Split a SpatVector or SpatRaster

Usage

# S4 method for SpatRaster
split(x, f)

# S4 method for SpatVector split(x, f)

Arguments

x

SpatRaster or SpatVector

f

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)

Value

Same as x

Examples

Run this code
# NOT RUN {
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