coerce {terra} | R Documentation |
Coercion to vector, matrix or array
Description
Coercion of a SpatRaster to a vector, matrix or array. Or coerce a SpatExtent to a vector or matrix
Usage
## S4 method for signature 'SpatRaster'
as.vector(x, mode='any')
## S4 method for signature 'SpatRaster'
as.matrix(x, wide=FALSE, ...)
## S4 method for signature 'SpatRaster'
as.array(x)
## S4 method for signature 'SpatExtent'
as.vector(x, mode='any')
## S4 method for signature 'SpatExtent'
as.matrix(x, ...)
Arguments
x |
SpatRaster or SpatVector |
wide |
logical. If |
mode |
this argument is ignored |
... |
additional arguments (none implemented) |
Value
vector, matrix, or array
See Also
Examples
r <- rast(ncols=2, nrows=2)
values(r) <- 1:ncell(r)
as.vector(r)
as.matrix(r)
as.matrix(r, wide=TRUE)
as.data.frame(r, xy=TRUE)
as.array(r)
as.vector(ext(r))
as.matrix(ext(r))
[Package terra version 1.7-78 Index]