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
Try the function
raster::stack
. This will read all the layers.