Android 将经度转换为 ExifInterface 的 GPS 标签

发布于 2024-12-22 00:10:04 字数 307 浏览 1 评论 0原文

我想将 ExifInterface

Ex: 10.34534564 的纬度、经度转换为类似格式 http://developer.android.com/reference/android/media/ExifInterface.html#TAG_GPS_LATITUDE “114/1,3/1,207045/4096”

请帮忙

i want to convert from Latitude, Longitude to GPS tag of ExifInterface

Ex: 10.34534564 to format like that http://developer.android.com/reference/android/media/ExifInterface.html#TAG_GPS_LATITUDE "114/1,3/1,207045/4096"

Please help

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

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

发布评论

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

评论(1

夏花。依旧 2024-12-29 00:10:04

GPS 坐标有三种基本形式。您选择的示例 10.34534564 称为 DMS 格式。 DMS 代表度分秒。当我们使用 location.getLatitude(); 时,我们将得到类似于您的示例的输出 (10.34534564)。但是,当我们想要在 ExifInterface 中使用该值时,我们必须将该值转换为 DMS 格式。研究此链接,了解从十进制度到 DMS 的转换。

GPS coordinates comes in three basic forms. The example you have chosen 10.34534564 is called DMS format. DMS stads for Degree Minutes Seconds. When we use location.getLatitude(); we will get an output like your example (10.34534564). But when we want to use that value with ExifInterface we have to convert that value in to DMS format. Study this link to know about the conversion from Decimal Degree to DMS.

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