Learn R Programming

terra (version 1.7-3)

split: Split

Description

Split a SpatVector or SpatRaster

Usage

# S4 method for SpatRaster
split(x, f)

# S4 method for SpatVector split(x, f)

Value

Same as x

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)

Examples

Run this code
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