unstack {raster} | R Documentation |
Unstack
Description
Create a list of RasterLayer objects from a RasterStack or RasterBrick
Usage
unstack(x, ...)
Arguments
x |
a RasterStack object |
... |
not used. further arguments passed to or from other methods |
Value
A list of RasterLayer objects
See Also
Examples
file <- system.file("external/test.grd", package="raster")
s <- stack(file, file)
list1 <- unstack(s)
b <- brick(s)
list2 <- unstack(b)
[Package raster version 3.6-26 Index]