admin管理员组文章数量:1345117
i am trying to plot maps with ggplot2 and have the issue of disappearing grid lines when zooming in.
I want to use orthographic projection, looking down at the North Pole but not show the full upper half of the sphere.
Plotting the full polar view works, however limiting the window to the desired area makes gridlines disappear. I believe that the issue has to do with xlim in coord_map, but I can not zoom using e.g. coord_cartesian to not use coord_maps xlim.
In the example map_full shows the full polar view with all gridlines and map_zoom shows the desired window, but with the disappearing gridlines (in the top left corner).
Is there any way to adjust the plot window after coord_map with interfering with the existing coordinate system?
Thanks you!
require("ggplot2")
worldmap <- map_data("world")
map_zoom <- ggplot()+
geom_polygon(data=worldmap,aes(long,lat,group=group),fill="darkgrey")+
coord_map("orthographic",orientation = c(90, 0, 0),ylim=c(0,90),xlim=c(-50,120))+
scale_x_continuous(breaks=c(-6:6) * 30)+
scale_y_continuous(breaks=c(-6:6) * 15)
map_full <- ggplot()+
geom_polygon(data=worldmap,aes(long,lat,group=group),fill="darkgrey")+
coord_map("orthographic",orientation = c(90, 0, 0))+
scale_x_continuous(breaks=c(-6:6) * 30)+
scale_y_continuous(breaks=c(-6:6) * 15)
map_full
map_zoom
本文标签: rDisappearing gridlines with ggplot2coordmapStack Overflow
版权声明:本文标题:r - Disappearing gridlines with ggplot2::coord_map - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743736165a2530050.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论