raster (version 1.0.4)

unstack: Unstack

Description

Create or 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

stack

Examples

Run this code
file <- system.file("external/test.grd", package="raster")
  s <- stack(file, file)
  list1 <- unstack(s)
  b <- brick(s)
  list2 <- unstack(b)

Run the code above in your browser using DataCamp Workspace