r语言 - 计算列表上的距离



我有两个坐标列表,mapped_coords unmapped_coords,它们都是坐标列表。

我想取unmapped_coords,并为每个元素返回点的索引,最小距离以mapped_coord为单位。

> head(mapped_coords)
[[1]]
[1] -79.2939  43.8234
[[2]]
[1] -79.7598  43.4381
[[3]]
[1] -79.4569  43.6693
[[4]]
[1] -81.2472  42.9688
[[5]]
[1] -79.1649  43.8073
[[6]]
[1] -79.7388  43.6753
str(mapped_coords)
List of 62815
$ : num [1:2] -79.3 43.8
$ : num [1:2] -79.8 43.4
$ : num [1:2] -79.5 43.7

使用地圈包,我可以使用distHaversine来计算一对的距离,但我不确定如何在整个列表中执行此操作。

> distHaversine(unlist(unmapped_coords[1]), unlist(mapped_coords[1]))
[1] 100594.6

您可以使用geosphere::distm制作距离矩阵,其中可以找到最小列(除了对角线,这没有用),which.min

l <- list(c(-79.2939, 43.8234), 
c(-79.7598, 43.4381), 
c(-79.4569, 43.6693), 
c(-81.2472, 42.9688), 
c(-79.1649, 43.8073), 
c(-79.7388, 43.6753))
m <- geosphere::distm(do.call(rbind, l))
diag(m) <- NA
apply(m, 1, which.min)
#> [1] 5 6 1 2 1 3

如果您有第二个距离列表,请将其作为第二个参数传递给distm,使对角线有用。由于不会有NAs,因此可以使用max.col(-m)计算最小列。

您可以输入distHaversine一对坐标和一个坐标矩阵(有 2 列),这将返回与矩阵中的行数长度相同的距离向量。您可以使用以下方法lapply循环浏览未映射的坐标列表:

数据:

mapped_coord = list(c(-79.29,43.82),c(-79.76,43.44))
[[1]]
[1] -79.29  43.82
[[2]]
[1] -79.76  43.44
unmapped_coord = list(c(-79.16,43.12),c(-80.52,42.95))
[[1]]
[1] -79.16  43.12
[[2]]
[1] -80.52  42.95

方法:

library(geosphere)
## Transform the list of mapped coordinates into a matrix
mat = do.call(rbind,mapped_coord)
[,1]  [,2]
[1,] -79.29 43.82
[2,] -79.76 43.44
## Find the coordinates with the min distances
lapply(unmapped_coord,function(x) which.min(distHaversine(x,mat)))
[[1]]
[1] 2
[[2]]
[1] 2

相关内容

  • 没有找到相关文章

最新更新