什么测量单位用于通过HTML5 geo API确定GPS精度?

前端之家收集整理的这篇文章主要介绍了什么测量单位用于通过HTML5 geo API确定GPS精度?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我使用 HTML5的地理位置API,位置对象具有“精度”属性,这是一个数字,可能会根据定位的准确性而有所不同.

到现在为止还挺好.但价值是一个未指定的单位.有时是60或1250甚至18 000.

我已经阅读了W3C Geolocation API规范[1],他们谈论这个属性,但从来没有提到应该如何解释它.

我找到可能答案的唯一地方是国防部世界地质系统[2]技术报告.他们以1σ(标准偏差)提及厘米单位的精度.

但是,这并不告诉我HTML5地理位置API返回我的精度单位是多少?我只能假设它是以厘米为单位

[1] http://dev.w3.org/geo/api/spec-source.html

[2] http://earth-info.nga.mil/GandG/publications/tr8350.2/wgs84fin.pdf

解决方法

documentation

The accuracy attribute denotes the accuracy level of the latitude and longitude coordinates. It is specified in meters and must be supported by all implementations. The value of the accuracy attribute must be a non-negative real number.

所以它的测量是米.

原文链接:/html5/168602.html

猜你在找的HTML5相关文章