一个levelplot
一个raster
如何表示感兴趣区域的DEM提供的山体阴影温度?考虑下面的例子(来自Robert H):
library(raster)
library(rasterVis)
dem <- getData('alt', country='CHE')# get DEM for region of interest
slas <- slopeAspect(dem)#get slope and aspect
hill <- hillShade(slas[[1]], slas[[2]], 40, 270)# compute hillshade
plot(hill, col=grey(0:100/100), legend=FALSE, main='Switzerland')
plot(dem, col=rainbow(25, alpha=0.35), add=TRUE)
一样将它覆盖在山上?我正在使用levelplot
函数进行映射。climate <- getData('worldclim', var='bio', res=2.5)
然后plot(climate$bio1, main="Annual Mean Temperature")
所需的输出应如下图所示,但温度而不是DEM。
对此有何想法?