PHP腾讯与百度坐标转换

2018-06-22 05:24:51来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

function coordinate_switch($a,$b){//百度转腾讯坐标转换  $a = Latitude , $b = Longitude
    $x = (double)$b - 0.0065;
$y = (double)$a - 0.006;
$x_pi = 3.14159265358979324*3000/180;
$z = sqrt($x * $x+$y * $y) - 0.00002 * sin($y * $x_pi);

$theta = atan2($y,$x) - 0.000003 * cos($x*$x_pi);

$gb = number_format($z * cos($theta),15);
$ga = number_format($z * sin($theta),15);


return ['Latitude'=>$ga,'Longitude'=>$gb];

}

function coordinate_switchf($a,$b){//腾讯转百度坐标转换 $a = Latitude , $b = Longitude
    $x = (double)$b ;
$y = (double)$a;
$x_pi = 3.14159265358979324*3000/180;
    $z = sqrt($x * $x+$y * $y) + 0.00002 * sin($y * $x_pi);

$theta = atan2($y,$x) + 0.000003 * cos($x*$x_pi);

$gb = number_format($z * cos($theta) + 0.0065,6);
$ga = number_format($z * sin($theta) + 0.006,6);


return ['Latitude'=>$ga,'Longitude'=>$gb];

}

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:PHP中常见的面试题2(附答案)

下一篇:PHP中常见的面试题4(附答案)