如何使用ggplot2在地图上添加经度和纬度线?

时间:2016-07-22 17:17:06

标签: r ggplot2 latitude-longitude spatial

我现在使用ggplot2绘制加拿大地图。由于默认投影方法是“aea”(Albers Equal Area),因此经度和纬度是地图上的直线。我想知道如何在地图上以“110W,100W,90W”和“50N,60N,70N”的形式显示经度和纬度。它们应该是曲线。非常感谢。

arcgis shapfile是从https://www.arcgis.com/home/item.html?id=dcbcdf86939548af81efbd2d732336db下载的 enter image description here

library(ggplot2)
library(rgdal)
countries<-readOGR("Canada.shp", layer="Canada")
ggplot()+geom_polygon(data=countries,aes(x=long,y=lat,group=group),fill='white',color = "black")

最终结果应该是这样的。 enter image description here

2 个答案:

答案 0 :(得分:4)

您可以使用ggplot documented here

coord_map参数执行此操作

这使用投影来改变坐标网格。曲线将包括等距离投影,但您应该查看here以获取所有允许投影的列表。你选择哪一种是一种偏好方式。

使用azequidistant(我认为这是Azimuthal equidistant projection),并手动添加标签:

axis_labels <- rbind(
                  data.frame(long = rep(-140,5),lat = seq(40,80,10), labels = seq(40,80,10)), # x axis labels
                  data.frame(long = seq(-140,-60,40),lat = rep(85,3), labels = seq(140,60,-40))  # y axis labels
)

   ggplot() +
  geom_polygon(data=countries,aes(x=long,y=lat,group=group),fill='white',color = "black") + 
  coord_map("azequidistant") +
  scale_x_continuous(breaks = seq(-140,60, by = 20))+
  scale_y_continuous(breaks = seq(40,80, by = 10)) +
  geom_text(data = axis_labels, aes(x = long, y = lat, label = labels)) +
  theme_bw() +
  theme(panel.grid.major = element_line(colour = "grey"),
        panel.border = element_blank(),
        axis.text = element_blank())

enter image description here

答案 1 :(得分:0)

您可以使用单独的空间数据经纬网图层,然后根据加拿大图层进行投影。

您可以在NaturalEarthData找到免费的经纬网图层。

countries<-readOGR("Canada.shp", layer="Canada")
grat <- readOGR("graticule.shp", layer="graticule")

grat_prj <- spTransform(grat, CRS(countries))

ggplot() + 
geom_polygon(data=countries, aes(x=long,y=lat,group=group),fill='white',color = "black") + 
geom_path(data=grat_prj, aes(long, lat, group=group, fill=NULL), linetype="solid", color="grey50")