使用经度/纬度计算 OSGR
我们的数据库当前存储 2 个值 - 经度和纬度。例如:
Longitude: -0.310150 N
Latitude: 52.688930 W
我们现在要做的是将这些值转换为英国地区的地形测量网格参考 (OSGR)。有没有一种简单的方法可以在 PHP 中做到这一点?
Our database currently stores 2 values - the longitude and the latitude. E.g.:
Longitude: -0.310150 N
Latitude: 52.688930 W
What we would like to do now is convert these values into the Ordanance Survey Grid Reference (OSGR) for British locations. Is there an easy way to do this in PHP?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
此转换的公式非常复杂,因为 osgr 和 gps 使用不同的投影
此页面 提供了一个 C 语言示例,应该很容易用 PHP 重写。
The formula for this conversion is pretty complex because osgr and gps use different projections
This page provides an example in C that should be easy enough to re write in PHP.