]> git.mxchange.org Git - simgear.git/commitdiff
Fix typo in SGGeodesy.
authorMathias Froehlich <Mathias.Froehlich@web.de>
Sun, 1 Apr 2012 15:50:49 +0000 (17:50 +0200)
committerMathias Froehlich <Mathias.Froehlich@web.de>
Sun, 1 Apr 2012 15:50:49 +0000 (17:50 +0200)
Pointed out by Carl Godkin.
Thanks!

simgear/math/SGGeodesy.cxx

index d86cf0e30e303b9f83b026aa0cfd7ecfe3cc711d..396dae492e5feeca8e46326b9664d080aeb822a4 100644 (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;
   }