我有一个数据集,我正在尝试将一组位置获取到其最近的大都市。我有数据集 1 (df1),其中包含经度和纬度的地址位置。我想将这些地址映射到半径 50 英里内的所有最近的大都市(在数据框 df2 中)。
g_lat <- c(45.52306, 40.26719, 34.05223, 37.38605, 37.77493)
g_lon <- c(-122.67648,-86.13490, -118.24368, -122.08385, -122.41942)
address <- c(1,2,3,4,5)
df1 <- data.frame(g_lat, g_lon, address)
g_lat <- c(+37.7737185, +45.5222208,+37.77493)
g_lon <- c(-122.2744317,-098.7041549,-122.41942)
msa <- c(1,2,3)
df2 <- data.frame(g_lat, g_lon, msa)
我希望输出如下显示与此地址关联的所有 msa:
address g_lat g_lon msa
5 37.77493 -122.41942 1
5 37.77493 -122.41942 3
请让我知道如何实现这一目标。我尝试了以下方法:
library(geosphere)
# create distance matrix
mat <- distm(df1[,c('g_lon','g_lat')], df2[,c('g_lon','g_lat')], fun=distVincentyEllipsoid)
error:
Error in .pointsToMatrix(y) : longitude < -360
# assign the name to the point in list1 based on shortest distance in the matrix
df1$locality <- df2$locality[max.col(-mat)]