简体   繁体   English

R:在levelplot上的叠加图

[英]R: overlay plot on levelplot

I have a raster file 'airtemp' and a polygon shapefile 'continents'. 我有一个光栅文件'airtemp'和一个多边形shapefile'大陆'。 I'd like to superimpose the 'continents' on 'airtemp', so the boundary of 'continents' is visible on top of 'airtemp'. 我想把'大陆'叠加在'airtemp'上,所以'大陆'的边界在'airtemp'的顶部可见。 I plot the raster file by levelplot (lattice). 我按levelplot (点阵)绘制光栅文件。 I read the polygon by readShapeSpatial (maptools) first and then plot . 我首先通过readShapeSpatial (maptools)读取多边形,然后plot

The problem is levelplot and plot have different scales. 问题是levelplotplot有不同的尺度。 Plot tends to have smaller frame. Plot往往具有较小的框架。 Sorry I don't have a reproducible sample, but I feel this is a rather common issue for geophysicists. 对不起,我没有可重复的样本,但我觉得这对地球物理学家来说是一个相当普遍的问题。 I've found a similar question here: 我在这里发现了一个类似的问题:

http://r.789695.n4.nabble.com/overlaying-a-levelplot-on-a-map-plot-td2019419.html http://r.789695.n4.nabble.com/overlaying-a-levelplot-on-a-map-plot-td2019419.html

but I don't quite understand the solution. 但我不太明白解决方案。

You can overlay the shapefile using the +.trellis and layer functions from the latticeExtra package (which is automatically loaded with rasterVis ). 您可以使用来自latticeExtra包(自动加载rasterVis )的+.trellislayer函数覆盖shapefile。

library(raster)
library(rasterVis)

Let's build some data to play. 让我们构建一些数据。 You can skip this part if you already have a raster file and a shapefile. 如果您已有光栅文件和shapefile,则可以跳过此部分。

library(maps)
library(mapdata)
library(maptools)

## raster
myRaster <- raster(xmn=-100, xmx=100, ymn=-60, ymx=60)
myRaster <- init(myRaster, runif)

## polygon shapefile
ext <- as.vector(extent(myRaster))

boundaries <- map('worldHires', fill=TRUE,
    xlim=ext[1:2], ylim=ext[3:4],
    plot=FALSE)

## read the map2SpatialPolygons help page for details
IDs <- sapply(strsplit(boundaries$names, ":"), function(x) x[1])
bPols <- map2SpatialPolygons(boundaries, IDs=IDs,
                              proj4string=CRS(projection(myRaster)))

Now you plot the raster file with rasterVis::levelplot , the shapefile with sp::sp.polygons , and the overall graphic is produced with +.trellis and layer . 现在使用rasterVis::levelplot绘制光栅文件,使用sp::sp.polygons shapefile,并使用+.trellislayer生成整体图形。

levelplot(myRaster) + layer(sp.polygons(bPols))

覆盖透明色

sp.polygons uses a transparent color as default for fill , but you can change it: sp.polygons使用透明颜色作为fill默认颜色,但您可以更改它:

levelplot(myRaster) + layer(sp.polygons(bPols, fill='white', alpha=0.3))

覆盖白色

As per this discussion , here is one way of doing this: it consists in breaking the SpatialPolygonsDataFrame into one single matrix of polygons coordinates separated by NAs. 根据这个讨论 ,这里有一种方法:它包括将SpatialPolygonsDataFrame分解为由NA分隔的一个多边形坐标矩阵。 Then plotting this on the levelplot using panel.polygon . 然后使用panel.polygon在水平图上绘制它。

library(maptools)
a <- matrix(rnorm(360*180),nrow=360,ncol=180) #Some random data (=your airtemp)
b <- readShapeSpatial("110-m_land.shp") #I used here a world map from Natural Earth.

And that's where the fun begins: 这就是乐趣开始的地方:

lb <- as(b, "SpatialPolygons")
llb <- slot(lb, "polygons")
B <- lapply(llb, slot, "Polygons") #At this point we have a list of SpatialPolygons
coords <- matrix(nrow=0, ncol=2)
for (i in seq_along(B)){
    for (j in seq_along(B[[i]])) {
        crds <- rbind(slot(B[[i]][[j]], "coords"), c(NA, NA)) #the NAs are used to separate the lines
        coords <- rbind(coords, crds)
        }
    }
coords[,1] <- coords[,1]+180 # Because here your levelplot will be ranging from 0 to 360°
coords[,2] <- coords[,2]+90 # and 0 to 180° instead of -180 to 180 and -90 to 90

And then comes the plotting: 然后是密谋:

levelplot(a, panel=function(...){
                        panel.levelplot(...)
                        panel.polygon(coords)})

The idea in lattice is to define the plotting functions in argument panel (see ?xyplot for a complete explanation on the subject). 格子中的想法是在参数panel定义绘图函数(有关该主题的完整说明,请参阅?xyplot )。 The function for the levelplot itself is levelplot . levelplot本身的功能是levelplot

在此输入图像描述

Of course, in your case, it seems way simpler to plot this using base graphics: 当然,在您的情况下,使用base图形绘制它似乎更简单:

image(seq(-180,180,by=1),seq(-90,90,by=1),a)
plot(b, add=TRUE)

在此输入图像描述

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM