R - 用德国边界绘制纬度/经度值

时间:2015-01-26 06:57:05

标签: r plot geolocation

我正在寻找一种简单的方法来绘制R中的纬度/经度值与来自德国的边界线。 e.g。

lat;lon
51;12
52;13

我该怎么办?

1 个答案:

答案 0 :(得分:3)

又快又脏:

library(mapdata)
pts <- data.frame(lon = c(12,13), lat = c(51,52))    
map('worldHires','Germany')
points(pts)

enter image description here