PHP实现腾讯与百度坐标转换
更新时间:2017年08月05日 09:04:40 投稿:jingxian
下面小编就为大家带来一篇PHP实现腾讯与百度坐标转换。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧
废话不多说,直接上代码
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实现腾讯与百度坐标转换就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。
相关文章
将博客园(cnblogs.com)数据导入到wordpress的代码
博客园限制太多,于是决定从博客园(cnblogs)更换自己个人的博客。WORDPRESS口碑还不错,于是决定用用看。之前发的数百篇日志需要导入过来,在网上搜了一会,发现没有这个插件,无奈只能自己写一个2013-01-01
Thinkphp5 微信公众号token验证不成功的原因及解决方法
下面小编就为大家带来一篇Thinkphp5 微信公众号token验证不成功的原因及解决方法。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧2017-11-11


最新评论