gpt4 book ai didi

Android map GPS 异常值

转载 作者:行者123 更新时间:2023-11-30 02:40:03 25 4
gpt4 key购买 nike

我使用 Android map API 创建多边形,每三个点收集一次位置数据。多边形很好地跟踪了我的位置。

问题是:GPS 经常返回距离不远的点,尤其是在绕过障碍物时。

如何过滤我的位置数据以查找异常值?

You can kind of see that I don't want to include the outliers in my third points.

最佳答案

是的,GPS 很难处理,尤其是在障碍物周围。电力线、建筑物等。只需过滤掉它们即可。

@Override
public void onLocationChanged(Location location) {
if (!location.hasAccuracy()) {
return;
}
if (location.getAccuracy() > 10) {
//possibly tell user gps accuracy with transparent circle like the maps
//application does.
return;
}

//process location accurate to 10 meters here
}

关于Android map GPS 异常值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25918724/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com