【发布时间】:2019-08-08 17:20:53
【问题描述】:
我从一位同事那里继承了一些我正在尝试“改进”的代码。
基本上它需要一张地图,然后放大一个位置,然后使用 gridExtra 将地图和缩放后的地图绑定在一起。
有效,功能如下:
map_zoom <- function(map, location="London", layout=rbind(c(1, 1, 1),
c(1, 3, 2),
c(1, 1, 1))) {
###
#
# Input: a pre-existing map of the UK,
# and details of where to zoom in
#
# Output: the input map, with the zoomed in map inset
#
###
require(grid)
require(gridExtra)
#A data frame of where to zoom for various locations in the UK
locations <- data.frame(rbind(
c("London", 505000, 555000, 155000, 205000),
c("Liverpool & Manchester", 330000, 400000, 370000, 440000),
c("Leeds & Sheffield", 400000, 470000, 370000, 440000),
c("Coventry & Birmingham", 380000, 450000, 250000, 320000),
c("Edinburgh & Glasgow", 230000, 370000, 630000, 700000),
c("Cambridge", 500000, 570000, 220000, 290000),
c("Oxford", 420000, 490000, 170000, 240000),
c("Bristol", 310000, 380000, 140000, 210000)))
xlim <- as.numeric(locations[locations[,1] == location,2:3])
ylim <- as.numeric(locations[locations[,1] == location,4:5])
zoomed_map <- map +
labs(subtitle = location) +
theme(legend.position = "none",
#plot.margin = unit(c(2,-5,2,2), "cm"),
plot.title = element_blank()) +
coord_fixed(1, xlim = xlim, ylim = ylim)
legend <- extract_legend(map)
map <- map + theme(legend.position="none")
map <- grid.arrange(map, zoomed_map, legend,
layout_matrix = layout)
return(map)
}
但是,我想让右侧放大的地图变成圆形而不是正方形(然后希望在圆形和它所取的坐标之间添加缩放线)。
我猜这个正方形(伦敦)来自向量:
c("London", 505000, 555000, 155000, 205000)
在map_zoom 函数中,有没有一种简单的方法可以将正方形变成圆形,或者我必须找到一定半径内的每个经度/纬度来制作圆形?
谢谢。
编辑:
Extract_Legend 函数是:
extract_legend <- function(map) {
###
#
# Input: a ggplot object with a legend
#
# Output: a ggplot object of just the legend
#
###
tmp <- ggplot_gtable(ggplot_build(map))
leg <- which(sapply(tmp$grobs, function(x) x$name) == "guide-box")
legend <- tmp$grobs[[leg]]
return(legend)
}
【问题讨论】:
-
我正在尝试重现:您的
map变量是什么样的?我可以使用一些默认或特定于包的教程值吗? -
嘿,它是一个 geom_polygon 对象,使用来自 ONS 的 shapefile。够了吗?我可以将所有代码都放在问题中,但它很长。顺便说一句,谢谢
-
由于某些值是硬编码的(英国城市坐标和位置),因此可以重现。如果没有相同的 shapefile,您是否从难以重现的多边形文件中获得了多边形文件。你从哪里得到这个文件的?此外,还调用了函数
extract_legend。你创建了这个函数还是它是包的一部分? -
嘿,shapefile 在这里找到:data.gov.uk/dataset/2aa6727d-c5f0-462a-a367-904c750bbb34/…
-
我还在我的问题中添加了 Extract_legend 函数。谢谢你,很抱歉回复慢!该地图只是为英国 NUTS1 地区分配数字的 cholopeth 地图。
标签: r