我有一组数据框,想用它们来创建一个栅格网格。以下是 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
首先,我建议查看raster::interpolate
方法文档中的示例,并在此处查看示例:http ://www.rspatial.org/analysis/rst/4-interpolation.html
在 R 中,您可以使用函数 rbind () 将两个数据集(dat1 和 dat2)合并到一个文件中。然后从那里开始填补点之间的空白。