Extract bands as individual layers from a multilayered tiff file

1.1k Views Asked by At

I have a tiff file which contains 6 bands Data link, I used all methods to extract [See here][2] [see here 2][3] all 6 bands as individual layers but unable to extract them as individual files.

library(raster)
library(ncdf4)
library(rgdal)
r <- raster("E:/TRY/bands.tif")
writeRaster(r, paste0(names(r),".tif"), bylayer=TRUE, format="GTiff")

I get just one tif file and the file doesn't have any information whatsoever like what it is.

Appreciate any help

thanks

1

There are 1 best solutions below

3
On

Try the function raster::stack. This will read all the layers.

library(raster)
library(ncdf4)
library(rgdal)
s1 <- stack("~/Downloads/bands.tif")
writeRaster(s1, paste0(names(s1),".tif"), bylayer=TRUE, format="GTiff")