3

我有一组数据框,想用它们来创建一个栅格网格。以下是 2 个示例文件: dat1 dat2

我使用sp包来绘制空间点:

library(raster)
library(sp)
coordinates(dat1) <- c("x", "y")
proj4string(dat1) <- CRS("+proj=longlat")
sp1 <- SpatialPoints(coords = dat1)
spplot(sp1) # example with the first data frame

我如何合并这些点并用插值填补其余的空白? 阴谋

4

2 回答 2

0

首先,我建议查看raster::interpolate方法文档中的示例,并在此处查看示例:http ://www.rspatial.org/analysis/rst/4-interpolation.html

于 2018-02-14T05:57:06.407 回答
0

在 R 中,您可以使用函数 rbind () 将两个数据集(dat1 和 dat2)合并到一个文件中。然后从那里开始填补点之间的空白。

于 2018-02-13T19:10:43.047 回答