我正在使用该mapview
包raster cube
从raster stack
.
> S2_images
class : RasterStack
dimensions : 660, 1074, 708840, 6 (nrow, ncol, ncell, nlayers)
resolution : 10, 10 (x, y)
extent : 219800, 230540, 4097480, 4104080 (xmin, xmax, ymin, ymax)
coord. ref. : +proj=utm +zone=30 +datum=WGS84 +units=m +no_defs +ellps=WGS84 +towgs84=0,0,0
names : L2A_T30ST//51_B02_10m, L2A_T30ST//51_B03_10m, L2A_T30ST//51_B04_10m, L2A_T30ST//51_B08_10m, L2A_T30ST//51_B11_20m, L2A_T30ST//51_B12_20m
min values : 1, 127, 6, 1, 88, 86
max values : 8702, 9090, 7589, 7322, 5379, 5474
随着cubeview(S2_images)
我得到这个具有默认颜色的可视化:
我的目标是使用 RGB 颜色绘制它。作为参考,我创建了一个 RGB 组合使用plotRGB
plotRGB(S2_images, r=3, g=2, b=1, scale=maxValue(S2_images[[1]]), stretch="lin")
根据?cubeview
,col.regiosn
应该color (palette).See levelplot for details.
知道如何从我可以用作输入的 RGB 组合中创建一个调色板cubeview
吗?