Я хотел бы построить растр с Hilshading и добавить слои с tmap
.
library(raster)
alt = getData('alt', country='CHE')
slope = terrain(alt, opt='slope')
aspect = terrain(alt, opt='aspect')
hill = hillShade(slope, aspect, 40, 270)
plot(hill, col=grey(0:100/100), legend=FALSE, main='Switzerland')
plot(alt, col=rainbow(25, alpha=0.35), add=TRUE)
Я бы хотел наложить дороги и т. Д., Используя tmap
. Как заставить это работать?
library(tmap)
tm_shape(hill) + tm_raster() + tm_shape(alt) + tm_raster()
совпадает с
tm_shape(alt) + tm_raster()
Часть tm_shape(hill) + tm_raster()
выдает предупреждение:
Variable "layer" contains positive and negative values, so midpoint is set to 0. Set midpoint = NA to show the full spectrum of the color palette.