GPS 值从 deg 格式转换为 dms 格式

发布于 2024-12-03 05:34:27 字数 54 浏览 0 评论 0原文

有谁知道如何或有 Android 功能将 GPS 值从十进制转换为 DMS(度-分-秒)格式?

Does anyone know how or have an Android function to convert a GPS value from decimal to DMS (degree-minute-second) format?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

听风念你 2024-12-10 05:34:27

看一下 android.location.Location 类。

静态方法 convert(double, Location.FORMAT_SECONDS) 就是您要查找的内容。

Have a look at the class android.location.Location.

The static method convert(double, Location.FORMAT_SECONDS) is what you're looking for.

尐籹人 2024-12-10 05:34:27

您可以手动进行数学计算。

示例代码:

decimal = ...;  // Your given value

boolean neg = decimal < 0;
decimal = abs(decimal);

deg = floor(decimal);                  // Round down
minutes = floor((decimal * 60) % 60);  // This is an integer in the range [0, 60)
seconds = (decimal * 3600) % 60;       // This is a decimal in the range [0, 60)

if (neg) prepend minus sign;

You could do the math manually.

Example code:

decimal = ...;  // Your given value

boolean neg = decimal < 0;
decimal = abs(decimal);

deg = floor(decimal);                  // Round down
minutes = floor((decimal * 60) % 60);  // This is an integer in the range [0, 60)
seconds = (decimal * 3600) % 60;       // This is a decimal in the range [0, 60)

if (neg) prepend minus sign;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文