Android 将经度转换为 ExifInterface 的 GPS 标签
我想将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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 uselocation.getLatitude();
we will get an output like your example (10.34534564). But when we want to use that value withExifInterface
we have to convert that value in to DMS format. Study this link to know about the conversion from Decimal Degree to DMS.