add {terra}R Documentation

Add (in place) a SpatRaster to another SpatRaster object

Description

Add (in place) a SpatRaster to another SpatRaster object. Comparable with c, but withouth copying the object.

Usage

## S4 replacement method for signature 'SpatRaster,SpatRaster'
add(x)<-value

Arguments

x

SpatRaster

value

SpatRaster

Value

SpatRaster

See Also

c

Examples

Run examples

r <- rast(nrows=5, ncols=9, vals=1:45)
x <- c(r, r*2)
add(x) <- r*3
x

[Package terra version 1.5-34 Index]