
Last chance! 50% off unlimited learning
Sale ends in
A unified function for raster::nlayers
, terra::nlyrs
, or lists of these.
Default function returns 1L
for all other classes.
numLayers(x)
The number of layers in the object.
An object or list of objects.
Eliot McIntire
library(terra)
files <- system.file("maps", package = "quickPlot")
files <- dir(files, full.names = TRUE, pattern = "tif")
maps <- lapply(files, function(x) rast(x))
names(maps) <- sapply(basename(files), function(x) {
strsplit(x, split = "\\.")[[1]][1]
})
stck <- rast(maps)
numLayers(maps)
numLayers(stck)
Run the code above in your browser using DataLab