这是哪种 Lat-Lon 表示法?

What kind of Lat-Lon representation is this?

我有一组经纬度坐标,看起来像,

我需要一个公式来将上面给定的 GPS 坐标转换为弧度或度数。如果您知道此类 GPS 表示,请告诉我。

第二个数字 (4294...) 是负符号数 (INT32),读作 UINT32。

这会给

Lat=9339452, Lon=-356191
Lat=9386855, Lon=-276507
Lat=9388898, Lon=-269742
Lat=9389437, Lon=-241726

这将更好地匹配 lat/lon 坐标(lon=53ish,lat=-1.5ish)。

将这些数字从弧度转换为度并除以 1e7:

Lat=53.51111825650155, Lon=-2.04082410005443,
Lat=53.78271744012741, Lon=-1.58426841058238,
Lat=53.79442296788193, Lon=-1.54550781574178,
Lat=53.79751121039769, Lon=-1.38498795985793,

即,f(x) = x * 180/pi * 1e-7