扫二维码与项目经理沟通
我们在微信上24小时期待你的声音
解答本文疑问/技术咨询/运营咨询/技术建议/互联网交流
#include "stdafx.h"
成都创新互联服务项目包括石嘴山网站建设、石嘴山网站制作、石嘴山网页制作以及石嘴山网络营销策划等。多年来,我们专注于互联网行业,利用自身积累的技术优势、行业经验、深度合作伙伴关系等,向广大中小型企业、政府机构等提供互联网行业的解决方案,石嘴山网站推广取得了明显的社会效益与经济效益。目前,我们服务的客户以成都为中心已经辐射到石嘴山省份的部分城市,未来相信会继续扩大服务区域并继续获得客户的支持与信任!
#include
#define PI 3.141592653
/*
该程序根据GPS.G1-X-00006.pdf文档,实现了WGS84和ECEF坐标的转换
*/
void LLAtoECEF(double latitude, double longitude, double height, double &X, double &Y, double &Z)
{
double a = 6378137;
double b = 6356752.314245;// b=(1-f)
double E = (a*a - b*b)/(a*a);
double COSLAT = cos(latitude*PI/180);
double SINLAT = sin(latitude*PI/180);
double COSLONG = cos(longitude*PI/180);
double SINLONG = sin(longitude*PI/180);
double N = a /(sqrt(1 - E*SINLAT*SINLAT));
double NH = N + height;
X = NH * COSLAT * COSLONG;
Y = NH * COSLAT * SINLONG;
Z = (b*b*N/(a*a) + height) * SINLAT;
}
void ECEFtoLLA(int lx, int ly, int lz)
{
double x, y, z;
double a, b, f, e, e1;
double Longitude;
double Latitude;
double Altitude;
double p, q;
double N;
x = (double)lx ;
y = (double)ly ;
z = (double)lz ;
a = (double)6378137.0;
b = (double)6356752.31424518;
f = 1.0 / (double)298.257223563;
e = sqrtl(((a * a) - (b * b)) / (a * a));
e1 = sqrtl(((a * a) - (b * b)) / (b * b));
p = sqrtl((x * x) + (y * y));
q = atan2l((z * a), (p * b));
Longitude = atan2l(y, x);
Latitude = atan2l((z + (e1 * e1) * b * powl(sinl(q), 3)), (p - (e * e) * a * powl(cosl(q), 3)));
N = a / sqrtl(1 - ((e * e) * powl(sinl(Latitude), 2)));
Altitude = (p / cosl(Latitude)) - N;
Longitude = Longitude * 180.0 / PI;
Latitude = Latitude * 180.0 / PI;
Latitude = (double)Latitude;
Longitude = (double)Longitude;
Altitude = (double)Altitude;
}
int _tmain(int argc, _TCHAR* argv[])
{
double latitude = 22.21555549969;
double longitude = 113.367229848;
double h = 0.5;
double XX = 0.0;
double YY = 0.0;
double ZZ = 0.0;
LLAtoECEF(latitude, longitude, h, XX, YY, ZZ);
ECEFtoLLA(XX, YY, ZZ);
return 0;
}
注意
当前程序对于海拔高度的转换,出现问题,需要重新调整
我们在微信上24小时期待你的声音
解答本文疑问/技术咨询/运营咨询/技术建议/互联网交流