微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

PHP中的GPS格式

PHP格式如何制作52.593800,21.448850格式52°35’37.68“,21°26’55.86”喜欢google http://maps.google.pl/maps?hl=pl&t=m&q=52.593800,21.448850吗?

解决方法:

Source

<?PHP

function DMStoDEC($deg,$min,$sec)
{

// Converts DMS ( degrees / minutes / seconds ) 
// to decimal format longitude / latitude

    return $deg+((($min*60)+($sec))/3600);
}    

function DECtoDMS($dec)
{

// Converts decimal longitude / latitude to DMS
// ( degrees / minutes / seconds ) 

// This is the piece of code which may appear to 
// be inefficient, but to avoid issues with floating
// point math we extract the integer part and the float
// part by using a string function.

    $vars = explode(".",$dec);
    $deg = $vars[0];
    $tempma = "0.".$vars[1];

    $tempma = $tempma * 3600;
    $min = floor($tempma / 60);
    $sec = $tempma - ($min*60);

    return array("deg"=>$deg,"min"=>$min,"sec"=>$sec);
}   

将数组更改为所需的字符串应该是微不足道的.

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐