I am trying to mosaic multiple multi band datasets into a single large multi band raster in R.I tried to do it with this code but it returns a single band image.
library(sp)
library(raster)
library(rgdal)
setwd("C:\\Projects\\Rice-fallow_4_states\\Bihar\\S1")
x <- list.files(".\\", pattern='tif$',
full.names = TRUE) # list all the rasters
X1<- as.list(x)
allrasters1 <- lapply(X1, raster)
x.mosaic <- do.call(merge,allrasters1)
names(x.mosaic)
x.mosaic
plot(x.mosaic)
I will suggest that you should use
terra
in palce ofraster
package.terra
is much faster comapred toraster
. You can use the following code