GPS coordinates accuracy

自作多情 提交于 2019-12-10 13:26:21

问题


I have some data with GPS coordinates with upto 9 decimal points. Example of this is

39.1234567891 -75.1987654321

I need to process this data to get a context of where the person is. But I want to treat the coordinates encompassed within 100m as a single location for simplicity. Can anyone point to any reference that would indicate how many decimal points I should round off to get to this level of accuracy.


回答1:


9 digits is too detailed for any but a long term geodetic app.
6 digits is in centimeter range, and usually the most accurate what makes sense for a GPS device.
At equator 4 digits after decimal point is 11.11m.

3 digits are 111.11m

(Calculated by earthCircumference / 360.0)

This would normally result a raster, but since Earth is a sphere, the distance between two longitudes shrinks when moving away from the equator (with a factor of cos(latitude)) the distance between two latitudes does not change.



来源:https://stackoverflow.com/questions/15528255/gps-coordinates-accuracy

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!