From 16bfbd99bdbf8813d3dbdd5b51963c150062e3aa Mon Sep 17 00:00:00 2001 From: Daniel Warner Date: Wed, 14 Dec 2011 10:58:01 +0000 Subject: [PATCH] Eci values are in radians --- Eci.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Eci.cpp b/Eci.cpp index 8085e8c..a923641 100644 --- a/Eci.cpp +++ b/Eci.cpp @@ -76,5 +76,5 @@ CoordGeodetic Eci::ToGeodetic() const const double alt = r / cos(lat) - kXKMPER * c; - return CoordGeodetic(lat, lon, alt); + return CoordGeodetic(lat, lon, alt, true); }