以前已经提出过这个问题,但从未与以下数据进行排列。以下是其中的样本:
> head(datagps)
Date & Time [Local] Latitude Longitude
1: 2018-06-18 03:01:00 -2.434901 34.85359
2: 2018-06-18 03:06:00 -2.434598 34.85387
3: 2018-06-18 03:08:00 -2.434726 34.85382
4: 2018-06-18 03:12:00 -2.434816 34.85371
5: 2018-06-18 03:16:00 -2.434613 34.85372
6: 2018-06-18 03:20:00 -2.434511 34.85376
您可以看到,我有一个Date & Time [Local]
列,其中GPS位置平均每4分钟注册一次。我想计算两个连续记录之间的距离(以米为单位),然后将此度量存储在新列Step
中。我一直在尝试将distm()
实现到我的数据:
> datagps$Step<-distm(c(datagps$Longitude, datagps$Latitude), c(datagps$Longitude+1, datagps$Latitude+1), fun = distHaversine)
Error in .pointsToMatrix(x) : Wrong length for a vector, should be 2
尽管我对语法非常不确定,并且如果这是填写函数参数的正确方法。我是R的新手,所以我希望我能得到一些帮助。
任何输入都将受到赞赏!
我想你几乎已经到了。假设您想在n+1
上存储上一个录制(n
)和当前录制(n+1
)之间的距离,则可以使用:
library(geosphere)
date <- c("2018-06-18 03:01.00","2018-06-18 03:06.00","2018-06-18 03:08.00","2018-06-18 03:12.00","2018-06-18 03:16.00","2018-06-18 03:20.00")
latitude <- c(-2.434901,-2.434598,-2.434726,-2.434816,-2.434613,-2.434511)
longitude <- c(34.85359,34.85387,34.85382,34.85371,34.85372,34.85376)
datagps <- data.frame(date,lat,lon)
datagps$length <- distm(x=datagps[,2:3], fun = distHaversine)[,1]
给出第一个结果0,其余的作为连续点之间的距离
如果您查看函数的文档,您将看到:
library(geosphere)
?distm
x点的经度/纬度。可以是两个数字的向量,一个2列的矩阵(第一个是经度,第二是纬度)或空间点*对象
y与x相同。如果缺少,y与x
相同
这意味着您可以同时使用矩阵或向量。
一种方法可能是:
res <- distm(as.matrix(df1[,c("Longitude","Latitude")]), fun = distHaversine)
res
# [,1] [,2] [,3] [,4] [,5] [,6]
#[1,] 0.00000 45.90731 32.15371 16.36018 35.16947 47.35305
#[2,] 45.90731 0.00000 15.29559 30.09289 16.76621 15.60347
#[3,] 32.15371 15.29559 0.00000 15.81292 16.79079 24.84658
#[4,] 16.36018 30.09289 15.81292 0.00000 22.62521 34.40483
#[5,] 35.16947 16.76621 16.79079 22.62521 0.00000 12.19500
#[6,] 47.35305 15.60347 24.84658 34.40483 12.19500 0.00000
使用 sf
-package
示例数据
library(data.table)
dt1 <- data.table::fread( 'DateTime, Latitude, Longitude
2018-06-18 03:01:00, -2.434901, 34.85359
2018-06-18 03:06:00, -2.434598, 34.85387
2018-06-18 03:08:00, -2.434726, 34.85382
2018-06-18 03:12:00, -2.434816, 34.85371
2018-06-18 03:16:00, -2.434613, 34.85372
2018-06-18 03:20:00, -2.434511, 34.85376')
setDF(dt1)
代码
library(sf)
#create spatial points object
dt1.sf <- st_as_sf( x= dt1,
coords = c("Longitude", "Latitude"),
crs = "+proj=longlat +datum=WGS84")
#calculate distances
st_distance(dt1.sf)
输出
# Units: [m]
# [,1] [,2] [,3] [,4] [,5] [,6]
# [1,] 0.00000 45.74224 32.07520 16.32379 34.97450 47.08749
# [2,] 45.74224 0.00000 15.20702 29.96245 16.76520 15.56348
# [3,] 32.07520 15.20702 0.00000 15.77068 16.72801 24.69270
# [4,] 16.32379 29.96245 15.77068 0.00000 22.47452 34.18116
# [5,] 34.97450 16.76520 16.72801 22.47452 0.00000 12.12446
# [6,] 47.08749 15.56348 24.69270 34.18116 12.12446 0.00000