将纬度和经度转换为ECEF坐标系

时间:2013-10-20 13:57:47

标签: objective-c gps augmented-reality earthdistance

我正在研究pArk Apple示例代码及其工作原理。 谁知道如何将纬度和经度转换为ECEF坐标, 并且将ECEF转换为以给定lat为中心的ENU坐标,lon函数是否有效? 我只是想了解这个功能发生了什么!

感谢。

void latLonToEcef(double lat, double lon, double alt, double *x, double *y, double *z)
{   
    double clat = cos(lat * DEGREES_TO_RADIANS);
    double slat = sin(lat * DEGREES_TO_RADIANS);
    double clon = cos(lon * DEGREES_TO_RADIANS);
    double slon = sin(lon * DEGREES_TO_RADIANS);

    double N = WGS84_A / sqrt(1.0 - WGS84_E * WGS84_E * slat * slat);

    *x = (N + alt) * clat * clon;
    *y = (N + alt) * clat * slon;
    *z = (N * (1.0 - WGS84_E * WGS84_E) + alt) * slat;
}
// Coverts ECEF to ENU coordinates centered at given lat, lon
void ecefToEnu(double lat, double lon, double x, double y, double z, double xr, double yr, double zr, double *e, double *n, double *u)
{
    double clat = cos(lat * DEGREES_TO_RADIANS);
    double slat = sin(lat * DEGREES_TO_RADIANS);
    double clon = cos(lon * DEGREES_TO_RADIANS);
    double slon = sin(lon * DEGREES_TO_RADIANS);
    double dx = x - xr;
    double dy = y - yr;
    double dz = z - zr;

    *e = -slon*dx  + clon*dy;
    *n = -slat*clon*dx - slat*slon*dy + clat*dz;
    *u = clat*clon*dx + clat*slon*dy + slat*dz;
}

1 个答案:

答案 0 :(得分:9)

latLonToEcef方法是Geographic coordinate conversion - From geodetic to ECEF coordinates维基百科页面中列出的算法的实现:

geodetic to ecef

,其中

Φ是纬度,λ是经度,

n-latitude

同样,ecefToEnu方法是ECEF to ENU算法的实现:

ECEF to ENU

如果您需要进一步的参考,可以在维基百科页面的底部找到它们。您也可以参考World Geodetic System 1984规范。