as.data.frame.Rd
Coerce a SpatRaster or SpatVector to a data.frame
# S4 method for SpatVector
as.data.frame(x, row.names=NULL, optional=FALSE, geom=NULL, ...)
# S4 method for SpatRaster
as.data.frame(x, row.names=NULL, optional=FALSE, xy=FALSE, cells=FALSE, na.rm=NA, ...)
SpatRaster or SpatVector
character or NULL. If not NULL, either "WKT" or "HEX", to get the geometry included in Well-Known-Text or hexadecimal notation. If x
has point geometry, it can also be "XY" to add the coordinates of each point
logical. If TRUE
, the coordinates of each raster cell are included
logical. If TRUE
, the cell numbers of each raster cell are included
logical. If TRUE
, cells that have a NA value in at least one layer are removed. If the argument is set to NA
only cells that have NA values in all layers are removed
Additional arguments passed to the data.frame
This argument is ignored
This argument is ignored
data.frame
f <- system.file("ex/lux.shp", package="terra")
v <- vect(f)
as.data.frame(v)
#> ID_1 NAME_1 ID_2 NAME_2 AREA POP
#> 1 1 Diekirch 1 Clervaux 312 18081
#> 2 1 Diekirch 2 Diekirch 218 32543
#> 3 1 Diekirch 3 Redange 259 18664
#> 4 1 Diekirch 4 Vianden 76 5163
#> 5 1 Diekirch 5 Wiltz 263 16735
#> 6 2 Grevenmacher 6 Echternach 188 18899
#> 7 2 Grevenmacher 7 Remich 129 22366
#> 8 2 Grevenmacher 12 Grevenmacher 210 29828
#> 9 3 Luxembourg 8 Capellen 185 48187
#> 10 3 Luxembourg 9 Esch-sur-Alzette 251 176820
#> 11 3 Luxembourg 10 Luxembourg 237 182607
#> 12 3 Luxembourg 11 Mersch 233 32112