Fix typo in SGGeodesy.

Pointed out by Carl Godkin.
Thanks!
This commit is contained in:
Mathias Froehlich
2012-04-01 17:50:49 +02:00
parent 4de05629ee
commit 29462005b7

View File

@@ -87,7 +87,7 @@ SGGeodesy::SGCartToGeod(const SGVec3<double>& cart, SGGeod& geod)
// coordinates 0/0/-EQURAD. It may be any other place on geoide's surface,
// the Northpole, Hawaii or Wentorf. This one was easy to code ;-)
geod.setLongitudeRad( 0.0 );
geod.setLongitudeRad( 0.0 );
geod.setLatitudeRad( 0.0 );
geod.setElevationM( -EQURAD );
return;
}