terra (version 0.3-7)

coerce: Coercion to other object types

Description

Coercion to other object types

Usage

# S4 method for SpatRaster
as.vector(x, mode='any')
# S4 method for SpatRaster
as.matrix(x, wide=FALSE, ...)
# S4 method for SpatRaster
as.data.frame(x, xy=FALSE, cells=FALSE, ...)
# S4 method for SpatRaster
as.array(x, ...)
# S4 method for SpatRaster
as.polygons(x, values=FALSE, na.rm=FALSE, ...)
# S4 method for SpatRaster
as.points(x, values=FALSE, na.rm=FALSE, ...)
# S4 method for SpatVector
as.lines(x, ...)

Arguments

x

SpatRaster

wide

logical

xy

logical

cells

logical

mode

this argument is ignored

values

logical; include cell values as attributes?

na.rm

logical; exclude cells with NAs?

...

additional arguments. None implemented

Value

vector, matrix, array, data.frame or SpatVector

Examples

Run this code
# NOT RUN {
r <- rast(ncol=2, nrow=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.polygons(r)
as.points(r)
# }

Run the code above in your browser using DataCamp Workspace