使用ggplot2映射 - 创建一个填充不包括单个国家/地区的框的掩码

时间:2017-05-26 20:41:06

标签: r ggplot2 transparency ggmap

是否有可能在ggplot中有一个层作为ggmap图层的掩码? Here他们在ggmap上添加了一个国家多边形。

enter image description here

我正在寻找的是,这个国家将成为一个层(带有阿尔法)的“洞”,覆盖除了国家之外的所有东西。在某种程度上反过来上面的例子。该答案的代码(透明度已添加并更新为使用geom_cartogram)。

library(mapdata)
library(ggmap)
library(ggplot2)
library(ggalt)

# Get Peru map
Peru <- get_map(location = "Peru", zoom = 5, maptype="satellite") 

# This is the layer I wish to put over the top
coast_map <- fortify(map("worldHires", fill = TRUE, plot = FALSE)) 

# Subset data for Peru
peru.coast <- subset(coast_map, region == "Peru")

# Draw a graphic
ggmap(Peru) +
  geom_cartogram(data = peru.coast, map = peru.coast, aes(x = long, y = lat, map_id = region),
           fill="white", color="grey", alpha=.1) +
  xlim(-86, -68) +
  ylim(-20, 0) + 
  labs(x = "Longitude", y = "Latitude") +
  coord_map() +
  theme_classic()

有没有办法在ggplot2中填充除多边形以外的所有内容?

1 个答案:

答案 0 :(得分:1)

  

有没有办法在ggplot2中填充除多边形以外的所有内容?

这种方法可能有点不正统,但无论如何:

library(mapdata)
library(ggmap)
library(ggplot2)
library(raster)
ggmap_rast <- function(map){
  map_bbox <- attr(map, 'bb') 
  .extent <- extent(as.numeric(map_bbox[c(2,4,1,3)]))
  my_map <- raster(.extent, nrow= nrow(map), ncol = ncol(map))
  rgb_cols <- setNames(as.data.frame(t(col2rgb(map))), c('red','green','blue'))
  red <- my_map
  values(red) <- rgb_cols[['red']]
  green <- my_map
  values(green) <- rgb_cols[['green']]
  blue <- my_map
  values(blue) <- rgb_cols[['blue']]
  stack(red,green,blue)
}
Peru <- get_map(location = "Peru", zoom = 5, maptype="satellite") 
data(wrld_simpl, package = "maptools")
polygonMask <- subset(wrld_simpl, NAME=="Peru")
peru <- ggmap_rast(Peru)
peru_masked <- mask(peru, polygonMask, inverse=T)
peru_masked_df <- data.frame(rasterToPoints(peru_masked))
ggplot(peru_masked_df) + 
  geom_point(aes(x=x, y=y, col=rgb(layer.1/255, layer.2/255, layer.3/255))) + 
  scale_color_identity() + 
  coord_quickmap()

enter image description here

通过thisthisthis个问题/答案。

  

我正在寻找的是具有透明填充物的周围环境   层和秘鲁的alpha = 1

如果首先想到这很容易。然而,然后我看到并记得geom_polygon不喜欢带孔的多边形。幸运的是,ggpolypath包中的geom_polypath可以。但是,它会在grid.Call.graphics中抛出一个&#34; 错误(L_path,x $ x,x $ y,index,switch(x $ rule,winding = 1L .. 。& #34; ggmap默认面板扩展错误。

所以你可以做到

library(mapdata)
library(ggmap)
library(ggplot2)
library(raster)
library(ggpolypath) ## plot polygons with holes
Peru <- get_map(location = "Peru", zoom = 5, maptype="satellite") 
data(wrld_simpl, package = "maptools")
polygonMask <- subset(wrld_simpl, NAME=="Peru")
bb <- unlist(attr(Peru, "bb"))
coords <- cbind(
  bb[c(2,2,4,4)],
  bb[c(1,3,3,1)])
sp <- SpatialPolygons(
  list(Polygons(list(Polygon(coords)), "id")), 
  proj4string = CRS(proj4string(polygonMask)))
sp_diff <- erase(sp, polygonMask)
sp_diff_df <- fortify(sp_diff)  

ggmap(Peru,extent="normal") +
  geom_polypath(
    aes(long,lat,group=group),
    sp_diff_df, 
    fill="white",
    alpha=.7
  )

enter image description here