【问题标题】:Unknown GPS Format未知 GPS 格式
【发布时间】:2020-06-08 16:08:42
【问题描述】:

我有以下 GPS 数据

lat
178197561,44201

long
41176829,78193

而且我无法将其映射到任何 gps 坐标。 地点在德国的某个地方,但我没有确切的位置

【问题讨论】:

    标签: format gps


    【解决方案1】:

    格式为毫秒。要获取 GPS 坐标,可以使用以下 python 函数。

    from decimal import *
    def convert_to_degree(mil):
        return Decimal(mil / (60*60*1000))
    

    逗号必须事先用点替换。 有关详细说明,此帖子可能会有所帮助 Convert between Degree and Milliseconds

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 2019-09-10
      • 2011-08-30
      • 2016-07-02
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多