我想结合两个(或更多)光栅砖。这是我想做的事的一个例子
library(raster)
r <- raster(ncol=40, nrow=20)
r[] <- rnorm(n=ncell(r))
b1 <- brick(x=c(r, r*2, r))
b2 <- brick(x=c(r, r*3, r))
b <- brick(b1, b2)
此示例返回以下错误。
Error in (function (cl, name, valueClass) : assignment of an object of class “RasterBrick” is not valid for @‘nlayers’ in an object of class “.MultipleRasterData”; is(value, "integer") is not TRUE
如果我按照以下方法创建堆栈而不是砖块
b1 <- stack(x=c(r, r*2, r))
b2 <- stack(x=c(r, r*3, r))
b <- brick(b1, b2)
我收到以下错误消息
Error in if (values) { : argument is not interpretable as logical
答案 0 :(得分:0)
您需要stack
将具有相同范围和分辨率的多个栅格,堆栈或砖块组合到一个多层对象中。然后,您可以转换为brick
s <- stack(b1, b2)
nlayers(s)
#[1] 6
b <- brick(s)
print(b)
class : RasterBrick
dimensions : 20, 40, 800, 6 (nrow, ncol, ncell, nlayers)
resolution : 9, 9 (x, y)
extent : -180, 180, -90, 90 (xmin, xmax, ymin, ymax)
coord. ref. : +proj=longlat +datum=WGS84 +ellps=WGS84 +towgs84=0,0,0
data source : in memory
names : layer.1.1, layer.2.1, layer.3.1, layer.1.2, layer.2.2, layer.3.2
min values : -3.604523, -7.209047, -3.604523, -3.604523, -10.813570, -3.604523
max values : 3.441872, 6.883743, 3.441872, 3.441872, 10.325615, 3.441872
有关更多信息,请参见https://www.rspatial.org/raster/spatial/4-rasterdata.html#rasterstack-and-rasterbrick