deepcopy | R Documentation |
Make a deep copy of a SpatRaster or SpatVector. This is occasionally useful when using an in-place replacement function that does not make copy, such as set.ext
.
## S4 method for signature 'SpatRaster'
deepcopy(x)
## S4 method for signature 'SpatVector'
deepcopy(x)
x |
SpatRaster or SpatVector |
Same as x
r <- rast(ncols=10, nrows=10, nl=3)
x <- r
y <- deepcopy(r)
ext(r)
set.ext(x, c(0,10,0,10))
ext(x)
ext(r)
ext(y)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.