我正在尝试生成与此类似的立体图:
我想要做的是添加:
- 坐标
- 标线
这可以在基础 R 或 ggplot2 中。任何帮助表示赞赏。
到目前为止我的尝试
library(rgdal)
library(raster)
proj <- "+proj=stere +lat_0=90 +lat_ts=70 +lon_0=-45 +k=1 +x_0=0 +y_0=0 +a=6378273 +b=6356889.449 +units=m +no_defs"
data("wrld_simpl", package = "maptools")
wm <- crop(wrld_simpl, extent(-180, 180, 45, 90))
plot(wm)
wm <- spTransform(wm, CRSobj = CRS(proj))
plot(wm)