我正在使用 swaRm 包来分析十进制度 GPS 数据以查找位置错误 ( https://rpubs.com/sjmgarnier/swaRm )。
首先,我从我的数据框中创建了一个 R6 对象来创建轨迹表
F108traj<-makeTraj(x = F108$Longitude, y = F108$Latitude, id = "01",
date = F108$Date, time = F108$Time,
date.format = "dmy", time.format = "hms",
geo = TRUE)
然后我使用代码搜索潜在的位置错误
loc_err <- findLocErr(F108traj)
loc_err
然后返回:
integer(0)
我想知道是否有人可以向我解释这意味着什么?我很难相信没有位置错误,因为我有 55657 个 GPS 修复!
以下是一小部分数据:
Date Time Latitude Longitude
12/06/2017 12:25:00 50.774715 -3.932923
12/06/2017 12:25:01 50.774742 -3.932912
12/06/2017 12:25:02 50.774773 -3.932896
12/06/2017 12:25:04 50.774792 -3.932908
12/06/2017 12:25:05 50.774803 -3.932924
12/06/2017 12:25:06 50.774803 -3.932924
12/06/2017 12:25:07 50.774803 -3.932924
12/06/2017 12:25:08 50.774803 -3.932924
12/06/2017 12:25:10 50.774803 -3.932924
12/06/2017 12:25:11 50.774803 -3.932924
12/06/2017 12:25:12 50.774803 -3.932924
12/06/2017 12:25:14 50.774803 -3.932924
12/06/2017 12:25:15 50.774803 -3.932924
12/06/2017 12:25:16 50.774803 -3.932924
我还应该提到,每秒都会记录一次修复,但有些情况下 GPS 失败了