android – 如何从nmea句子信息计算以米为单位的gps准确度

前端之家收集整理的这篇文章主要介绍了android – 如何从nmea句子信息计算以米为单位的gps准确度前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有 Android应用程序,从蓝牙GPS接收器获取GPGGA和GPRMC句子,如何计算给定位置的水平精度与米?

解决方法

如果您按照评论中的说明以米为单位提供HDOP,那么您将提供完全错误的幻想价值.

作为与实际问题相关的替代答案,我只是想提供一个相关的链接到GIS Stackexchange网站,在那里也提出了这个问题:https://gis.stackexchange.com/questions/97774/how-can-i-convert-horizontal-dilution-of-position-to-a-radius-of-68-confidence

简而言之:它并非无足轻重,仅靠HDOP并不足以获得可靠的准确度.正如用户30184评论的那样,有些人只是使用例如将器件精度设为3-5 m,然后将其与HDOP相乘以获得精度.

但总的来说,让我引用一下this also provided link的claudegps:

You can’t. DOP is not an indicator of “error” or “accuracy”. Bad DOP
does not always mean bad accuracy for example. Moreover the “accuracy”
should not consider only DOP: Imagine to be indoor (very low signal,a
lot of multipath ecc) but with a good DOP: you may have a very bad
accuracy even with a good DOP… So your indication DOP-based will be
wrong. Unfortunately,if you have only NMEA sentences,you usually
don’t have enough data to estimate the accuracy (that can be done
internally to the receiver as it have much more informations inside).

你也可以看一下这个链接https://www.gps-forums.com/threads/estimating-accuracy-from-raw-nmea-data.46273/最后但并非最不重要的,从this link开始:

6 sources of error (and additional factors) affect the accuracy of GPS positions

原文链接:https://www.f2er.com/android/315564.html

猜你在找的Android相关文章