您的位置:首页 > 其它

火星坐标系 (GCJ-02) 与百度坐标系 (BD-09) 的转换算法

2017-09-25 10:45 405 查看
include <math.h>  

  

const double x_pi = 3.14159265358979324 * 3000.0 / 180.0;  

  

void bd_encrypt(double gg_lat, double gg_lon, double &bd_lat, double &bd_lon)  

{  

    double x = gg_lon, y = gg_lat;  

    double z = sqrt(x * x + y * y) + 0.00002 * sin(y * x_pi);  

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

    bd_lon = z * cos(theta) + 0.0065;  

    bd_lat = z * sin(theta) + 0.006;  

}  

  

void bd_decrypt(double bd_lat, double bd_lon, double &gg_lat, double &gg_lon)  

{  

    double x = bd_lon - 0.0065, y = bd_lat - 0.006;  

    double z = sqrt(x * x + y * y) - 0.00002 * sin(y * x_pi);  

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

    gg_lon = z * cos(theta);  

    gg_lat = z * sin(theta);  

}  

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  坐标转换