首页 > Web开发 > 详细

PHP腾讯与百度坐标转换

时间:2017-08-04 17:55:34      阅读:270      评论:0      收藏:0      [点我收藏+]
public function coordinate_switch($a,$b){//百度转腾讯坐标转换


$x = (double)$b - 0.0065;
$y = (double)$a - 0.006;
$x_pi = 3.14159265358979324;
$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];

}

public function coordinate_switchf($a,$b){//腾讯转百度坐标转换


$x = (double)$b ;
$y = (double)$a;
$x_pi = 3.14159265358979324;
$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];

}

PHP腾讯与百度坐标转换

原文:http://www.cnblogs.com/ylqs/p/7286387.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!