首页  >  文章  >  后端开发  >  PHP中腾讯与百度进行坐标转换

PHP中腾讯与百度进行坐标转换

一个新手
一个新手原创
2017-09-13 09:33:121102浏览

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中腾讯与百度进行坐标转换 的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn