cellArea() returns a raster will cell values equal to their area. To get the area of all cells of a raster, see expanse().
Arguments
- x
A
GRaster.- mask
Logical: If
TRUE, then cells that areNAinxare alsoNAin the output.- lyrs
Logical:
If
lyrsisFALSE(default), then the output has a single layer. In this case, ifmaskisTRUE, then cells that areNAin the first layer are alsoNAin the output.If
lyrsisTRUE, then the output has the same number of layers asxifmaskis alsoTRUE. In this case, cells that areaNAin the input will also beNAin the output in the respective layer.
- unit
Character: Units of area. Partial matching is used, and case is ignored. Can be any of:
"meters2"(default),"metres2", or"m2""km2"or"kilometers2""ha"or"hectares""ac"or"acres""mi2"or"miles2""ft2"or"feet2"
Examples
if (grassStarted()) {
# Setup
library(terra)
# Elevation raster
madElev <- fastData("madElev")
# Convert a SpatRaster to a GRaster:
elev <- fast(madElev)
# Cell size, no masking, single layer
cs1 <- cellSize(elev)
plot(cs1)
# Cell size, with masking, single layer
cs2 <- cellSize(elev, mask = TRUE)
plot(cs2)
# Cell size, no masking, multilayer
elev2 <- c(elev, log(elev - 200))
cs3 <- cellSize(elev2)
plot(cs3)
# Cell size, masking by 1st layer, multilayer (ignores subsequent layers)
cs4 <- cellSize(elev2, mask = TRUE)
plot(cs4)
# Cell size, masking by each layer, multilayer
cs5 <- cellSize(elev2, mask = TRUE, lyrs = TRUE)
plot(cs5)
}
