2016-12-25 71 views
2

我在R中有兩個單獨的空間點數據幀(附圖中的紅色和黑色)。如何將數據屬性從「紅色」數據集導入R中「黑色」數據集中最近的位置?如何使用R合併座標空間數據集?

plot

+0

這是一個關於空間數據集的普通R編程問題 - 答案在我看來非常好 - 應該發佈給大家來欣賞。我無法在任何其他論壇找到這個問題的答案。 –

回答

2

下面是解決這個問題的方法之一。

library(raster) 
library(sp) 

### create some example datasets 
coords_A = cbind(runif(10, 1, 10), runif(10,1,10)) 
sp_A = SpatialPoints(coords_A) 
spdf_A = SpatialPointsDataFrame(coords_A, data.frame(varA=letters[1:10])) 

coords_B = cbind(runif(10, 1, 10), runif(10,1,10)) 
sp_B = SpatialPoints(coords_B) 
spdf_B = SpatialPointsDataFrame(coords_B, data.frame(varB=letters[11:20], varC=LETTERS[11:20])) 

### compute the complete distance matrix between the two sets of points 
dist_mat <- pointDistance(spdf_A, spdf_B, lonlat = FALSE, allpairs = TRUE) 

### identify nearest point in dataset B for every point in dataset A 
nearest <- apply(dist_mat, 1, which.min) 

### bind together the data from the dataset B (in your case the "red points") 
### at the closest point to dataset A ("black points") 
[email protected]<- cbind([email protected], [email protected][nearest,]) 
+0

你的模擬例子像一個魅力工作,謝謝! –