如何在R中使用levelplot添加框图层?

时间:2014-02-21 13:29:43

标签: r levelplot

我想在我的情节中添加一些特殊范围的方框。

实施例

     gh <- raster()
     gh[] <- 1:ncell(gh)
     SP <- spsample(Spatial(bbox=bbox(gh)), 10, type="random")

然后绘制它们

  levelplot(gh, col.regions = rev(terrain.colors(255)), cuts=254, margin=FALSE) +
  layer(sp.points(SP, col = "red"))

这绘制了一个有几个十字架的地图,但是我需要绘制一个具有空间范围的框:

     extent(gh) = extent(c(xmn=-180,xmx=180,ymn=-90,ymx=90))
      e6 <- extent( 2  , 8 , 45   , 51  )

enter image description here

我想在情节中添加e6并将数字2放在方框内。请提示

1 个答案:

答案 0 :(得分:1)

Extent对象转换为SpatialPolygons,并使用coordinates提取其质心:

library("raster")
library("sp")
library("rasterVis")

gh <- raster()
gh[] <- 1:ncell(gh)
SP <- spsample(Spatial(bbox=bbox(gh)), 10, type="random")

e6 <- extent( 2, 8, 45, 51)
e6pol <- as(e6, 'SpatialPolygons')
centroid <- coordinates(e6pol)

levelplot(gh, col.regions = rev(terrain.colors(255)), cuts=254, margin=FALSE) +
    layer({sp.points(SP, col = "red")
           sp.polygons(e6pol)
           panel.text(centroid[,1], centroid[,2], '2')
           })

result