Rails Geokit 将 GPS 坐标转换为 Google 经纬度
我从 Tom Tom 设备获得了 GPS 位置,
S 33 22' 7.08",E 19 55' 27.44"
我需要将其转换为谷歌经纬度。有谁知道有一个有效的 gem 可以做到这一点或能够进行转换的代码片段
I've got a GPS location from my Tom Tom device
S 33 22' 7.08",E 19 55' 27.44"
I need to convert that to google Lat Long. Does anyone know of an effective gem to to do this or code snippet capable of doing the covertion
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不知道 Ruby on Rails,但我有一个 PHP 版本,用于将 DMS(度/分/秒)转换为十进制纬度/经度。也许你可以将其转换为 RoR 版本。请注意,代码不会检查(剥离)分钟和秒后的“”或“”。您可能需要为您的语法添加此内容。
来自 OpenGeoCode.Org 团队的 Andrew
I don't know Ruby on Rails, but I have a PHP version for converting DMS (Degrees/Minutes/Seconds) to Decimal lat/lng. Perhaps you can convert it to RoR version. Note, the code does not check (strip) for a ' or "" after the minutes and seconds. You may need to add this for your syntax.
Andrew from the Team at OpenGeoCode.Org