R中的栅格立方体可视化中的RGB颜色

时间:2019-02-06 11:58:30

标签: r plot colors lattice r-mapview

我正在使用软件包mapviewraster cube绘制3D 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),我可以看到默认颜色的可视化图像:

enter image description here

我的目标是使用RGB颜色进行绘制。供参考,我使用plotRGB

创建了RGB合成
plotRGB(S2_images, r=3, g=2, b=1, scale=maxValue(S2_images[[1]]), stretch="lin")

根据?cubeviewcol.regiosn应该是color (palette).See levelplot for details.任何想法,如何从RGB合成中继续创建调色板,我可以将其用作{{1}中的输入}?

enter image description here

0 个答案:

没有答案