圍繞創建空間數據緩存我有商場的空間數據集,我想在R.R中
周圍創建緩衝區我想這些包將是有益的:
require(maptools)
require(geosphere)
我能夠爲一組座標而不是空間數據。代碼如下所示:
coordinates(locs) <- c("Longitude", "Latitude") # set spatial coordinates
fivekm <- cbind(coordinates(locs), X=rowSums(distm (coordinates(locs)[,1:2], fun = distHaversine)/1000 <= 5)) # number of points within 5 km
但是我不知道用於一組多邊形的函數/包。有人可以請告知功能(或代碼),我會從那裏去?
謝謝!
謝謝! @Ege Rubak。 – JAG2024