I have set of data frames and would like to use them to create one raster grid. Here are 2 example files: dat1 dat2
I use sp
package to plot the spatial points:
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
How I can merge these points and fill the rest of the gaps with interpolation?