地理定位功能输入到数据框
Geolocation function input to dataframe
我无法使用这个问题 (R convert zipcode or lat/long to county) 中的函数将县名和州名添加到我的文件中:
structure(df)
Recovery.Date SPECIES_ID LAT_FLOAT LON_FLOAT ZIP
9/23/2009 1720 42.91667 -71.41667 3051
10/8/2006 1440 42.75 -72.41667 3451
10/17/2011 1330 39.25 -74.91667 8316
2/4/2012 1690 39.25 -75.91667 21050
12/31/2009 1320 38.25 -75.25 21837
我想将 lat_float 和 long_float 值放入函数中,然后将县和州(单独或一起)添加为 df 中的新列。任何帮助将不胜感激。
第 1 步 - 创建 Data.frame 个点DF
pointsDF <- subset(df, select=c("LON_FLOAT", "LAT_FLOAT"))
第 2 步 - 确保您拥有正确的 projection/datum
第 3 步 - 按照 here.
接受的答案进行操作
第 4 步 - 使用 Lon== 和 LAT== 条件合并或加入您的两个数据集,或者您将 lon+lat 合并到一个变量中,并使用它有一个键。
我无法使用这个问题 (R convert zipcode or lat/long to county) 中的函数将县名和州名添加到我的文件中:
structure(df)
Recovery.Date SPECIES_ID LAT_FLOAT LON_FLOAT ZIP
9/23/2009 1720 42.91667 -71.41667 3051
10/8/2006 1440 42.75 -72.41667 3451
10/17/2011 1330 39.25 -74.91667 8316
2/4/2012 1690 39.25 -75.91667 21050
12/31/2009 1320 38.25 -75.25 21837
我想将 lat_float 和 long_float 值放入函数中,然后将县和州(单独或一起)添加为 df 中的新列。任何帮助将不胜感激。
第 1 步 - 创建 Data.frame 个点DF
pointsDF <- subset(df, select=c("LON_FLOAT", "LAT_FLOAT"))
第 2 步 - 确保您拥有正确的 projection/datum
第 3 步 - 按照 here.
接受的答案进行操作第 4 步 - 使用 Lon== 和 LAT== 条件合并或加入您的两个数据集,或者您将 lon+lat 合并到一个变量中,并使用它有一个键。