本文介绍了如何在目标c中将gps north和gps west转换为lat / long的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我从服务器获得了这些值:

 < gps_n> 34.22.123< / gps_n> 
< gps_w> 81.59.345< / gps_w>

我想将这些值转换为Objective C中的经度/纬度。请给我一个指导做到这一点?



谢谢

解决方案

lat / long(n / w)是:

lockquote

度+(分钟/ 60)+(秒/ 3600)


从这个页面:


I got these values from server:

<gps_n>34.22.123</gps_n>
<gps_w>81.59.345</gps_w>

I would like to convert these values to latitude/longitude in Objective C. Would you please give me a guide to do this?

Thanks

解决方案

The formula for both lat/long (n/w) is:

From this page:

http://webmaster10.com/ldr/lat-long-conversion.html

这篇关于如何在目标c中将gps north和gps west转换为lat / long的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-04 04:09