将单点添加到 levelplot

Add single points to levelplot

我正试图帮助一个朋友设计一个情节,但最终卡住了。 他想在水平图上绘制样本位置。栅格来自包 unmarked。 (data(Switzerland))。我用虚拟数据框尝试过,我随机选择了一些位置。

我发现了以下问题 这或多或少是我想做的。

所以我尝试了以下代码:

x <- c("980000", "1100000", "1200000")
y <- c("120000", "170000", "100000")
name <- c("a", "b", "c")
dummy <- as.data.frame(cbind(x, y, name))

levelplot(elevation ~ x + y, Switzerland, aspect="iso",col.regions=terrain.colors(100)) +
  layer(sp.points(dummy, cex=2, col=1))

但我得到了一条错误消息

Error in .local(obj, ...) : any(sp) is not TRUE

我试图了解 sp.points() 需要什么样的输入以及我做错了什么,但失败了。

dummy 转换为 sp 对象,即在您的情况下为 SpatialPointsDataFrame

R> library("sp")
R> dummy <- data.frame(x = as.numeric(x), y = as.numeric(y), name = name)
R> coordinates(dummy) <- ~ x + y
R> class(dummy)
[1] "SpatialPointsDataFrame"
attr(,"package")
[1] "sp"

可重现的例子:

library("sp")
library("lattice")
library("latticeExtra")
library("unmarked")

data(Switzerland)

x <- c(980000, 1100000, 1200000)
y <- c(120000, 170000, 100000)
name <- c("a", "b", "c")

dummy <- data.frame(x, y, name)
coordinates(dummy) <- ~ x + y


p <- levelplot(elevation ~ x + y, Switzerland,
               aspect = "iso", col.regions = terrain.colors(100)) +
     layer(sp.points(dummy, cex = 2, col = 1))
print(p)