[Proj] The world of ECEF aka geocentric coordinates

Karney, Charles ckarney at Sarnoff.com
Fri Jan 30 16:10:33 EST 2009


> From: Gerald I. Evenden [geraldi.evenden at gmail.com]
> Sent: Friday, January 30, 2009 14:30
>
> Karney's routine is limited to WGS84 as is all the software in his
> library.  10 lashes with a wet noodle, Karney.

"Up to a point, Lord Copper."  The simple ECEFConvert utility I provide
(merely to illustrate the code) is limited to WGS84.  The constructor
for ECEF class allows you to specify the ellipsoid.

> Some of these methods may be equivalent but I have not dug that far
> into the details of the morass.  I am also sure that there must be
> more versions out there.

There do seem to be an embarrassing number of published papers on a
mathematically trivial topic.  Of course, provided that the methods are
correct, they must me equivalent (in a mathematical sense).

The biggest differentiator, in my book, is the domain of applicability.
Many of the methods (direct or iterative) exclude the center of the
earth (and I think some also exclude very distant points).  This is
entirely appropriate for GPS units, but seems to be an unnecessary
restriction for a general-purpose library.

Incidentally, many simple iteration schemes (such as the NGS method, I
believe) just have linear convergence.  Some iterative schemes are
amenable to Newton's method with much faster (quadratic) convergence.
Presented with such a choice, I would normally go for a slightly more
complicated iteration which converges faster.

Vermeille's method is a relatively simple direct method.  It breaks down
near the center of the earth.  But fixing this was straightforward.
Finally, I had to make several fixes to avoid loss of accuracy due to
round-off.  The errors I am getting (7 nm) are within spitting distance
of the round-off limit (10^7 / 2^53 m = 1.1 nm).

Incidentally benchmarking ECEF methods for accuracy is easy because the
geodetic to ECEF transformation is stable and, if carried out with long
doubles, accurate.  This can be used to generate test data for the
reverse transformation.  When probing points near the center of the
earth you need to ensure that

    h >= - a (1 - e^2) / sqrt(1 - e^2 sin(phi)^2)

so that the ECEF point is in the same hemisphere as phi.

> Lastly, the use of the term ECEF suggested by Wikipedia for geocentric
> seems appropriate.  Also, where are our ENU procedures?  Tsk, tsk.

ENU is what I call "local Cartesian" (implemented by the LocalCartesian
class -- and this, I confess, does have WGS84 wired in).

--
Charles Karney <ckarney at sarnoff.com>
Sarnoff Corporation, Princeton, NJ 08543-5300

URL: http://charles.karney.info
Tel: +1 609 734 2312
Fax: +1 609 734 2662


More information about the Proj mailing list