来自dismo :: gmap()和ggplot2的谷歌地图

时间:2016-09-23 09:35:37

标签: r google-maps ggplot2

我获得了一个带有函数dismo::gmap()的地图,并希望用ggplot2绘制它,因为我想使用geom_point和其他ggplot函数添加不同的功能。我更喜欢使用dismo::gmap代替ggmap::get_map()来下载Google地图图层。这是因为dismo::gmap()ggmap::get_map()不同,它会从包栅格中返回包含完整CRS信息的栅格图层,因此应该可以修改图层的投影。

> head(data_info$latitude, 20)
#[1] 49.11306 49.39333 48.78083 51.85000 53.57361 50.67806 52.69083 52.21389 53.46361 50.99917 53.99750 53.54528 53.61417 48.00556 48.01306 53.45000
#[17] 51.93667 54.53083 51.95500 54.29639
> head(data_info$longitude, 20)
#[1] 13.134722 12.323056 13.803889 12.177778 14.143611 13.175833 12.649444 13.454167 11.629722 10.906111 11.415556  8.426944  7.160000 11.123889 10.786111
#[16] 12.766667 11.987222 13.091389 10.967500 13.684167


   e = extent(-14 , 58 , 28 , 64)
mapImageData2 <- gmap(e, type = c("terrain"), lonlat = TRUE, 
                      path = "&style=feature:all|element:labels|visibility:off&style=feature:administrative.country|element:geometry.stroke|visibility:off")

mapImageData2_proj <- projectExtent(mapImageData2, crs = "+proj=utm +zone=31 +datum=WGS84")

# plot the points on the map 
ggplot(mapImageData2_proj, extent = "device") + 
  geom_point(inherit.aes = FALSE, aes(x = data_info$longitude, y = data_info$latitude),
             data = gps, colour = "red", size = 1, pch = 20)

尝试此操作后,我收到以下错误:

  

错误:ggplot2不知道如何处理类的数据   RasterLayer

如果我试试这个

plot(mapImageData2_proj)
  

.plotraster2中的错误(x,col = col,maxpixels = maxpixels,add = add,   :没有与此RasterLayer关联的值

2 个答案:

答案 0 :(得分:5)

这个问题有两个问题。一个是如何让ggplot2绘制一个Raster *对象。另一种是如何在保留其值的同时重新投影栅格。

OP包含代码

library(dismo)
e = extent(-14 , 58 , 28 , 64)
mapImageData2 <- gmap(e, type = c("terrain"), lonlat = TRUE, 
                      path = "&style=feature:all|element:labels|visibility:off&style=feature:administrative.country|element:geometry.stroke|visibility:off")

如果我们运行此操作然后执行plot(mapImageData2),我们会得到一个很好的情节。然后OP运行

mapImageData2_proj <- projectExtent(mapImageData2, crs = "+proj=utm +zone=31 +datum=WGS84")

现在如果我们运行plot(mapImageData2_proj),我们就会收到错误消息!那是因为projectExtent返回没有值的RasterLayer。我们需要使用projectRaster()代替。有关详细信息,请参阅?projectExtent。所以我们运行:

mapImageData2_proj <- projectRaster(mapImageData2, crs = "+proj=utm +zone=31 +datum=WGS84")
plot(mapImageData2_proj)

现在我们看到重新投影的地图。进展!但我们仍无法使用mapImageData2_proj绘制ggplot2,因为ggplot2不知道如何处理Raster *对象。我们需要将栅格转换为数据帧。有几种方法可以做到这一点,但没有加载任何额外的包,一个很好的选择是raster::rasterToPoints()。例如:

myPoints <- raster::rasterToPoints(myRaster)
myDataFrame <- data.frame(myPoints)
colnames(myDataFrame) <- c("Longitude", "Latitude", "Values")

ggplot(data=myDataFrame, aes_string(y = "Latitude", x = "Longitude")) + 
   geom_raster(aes(fill = Values))

所以在OP的例子中将它们放在一起:

library(dismo)
e = extent(-14 , 58 , 28 , 64)
mapImageData2 <- gmap(e, type = c("terrain"), lonlat = TRUE, 
                      path = "&style=feature:all|element:labels|visibility:off&style=feature:administrative.country|element:geometry.stroke|visibility:off")

plot(mapImageData2)

mapImageData2_proj <- projectRaster(mapImageData2, crs = "+proj=utm +zone=31 +datum=WGS84")

plot(mapImageData2_proj)

myRaster <- mapImageData2_proj
myPoints <- raster::rasterToPoints(myRaster)
myDataFrame <- data.frame(myPoints)
colnames(myDataFrame) <- c("X", "Y", "Values")

ggplot(data=myDataFrame, aes_string(y = "Y", x = "X")) + 
  geom_raster(aes(fill = Values))

答案 1 :(得分:4)

要在ggplot中直接绘制Raster *对象,您可以使用库RasterVis,如下所示:

r <- raster(system.file("external/test.grd", package="raster"))
s <- stack(r, r*2)
names(s) <- c('meuse', 'meuse x 2')

library(ggplot2)

theme_set(theme_bw())
gplot(s) + geom_tile(aes(fill = value)) +
          facet_wrap(~ variable) +
          scale_fill_gradient(low = 'white', high = 'blue') +
          coord_equal()

如您所见,我们使用gplot而非ggplot。 此函数适用于Raster *对象,因为它只允许加载RAM中的部分Raster *对象。您甚至可以使用gplot(s, maxpixels=50000)选择要在地图上加载的最大像素数 实际上,我建议不要将Raster转换为点,因为如果你的光栅很大,你将无法将其加载到RAM中......