From 0294aa43d7f0bcfa990654e87036227ba0a31877 Mon Sep 17 00:00:00 2001 From: Daniel Warner Date: Wed, 4 Jan 2012 21:56:18 +0000 Subject: [PATCH] Removed wrong limit check from SGP4 path --- libsgp4/SGP4.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/libsgp4/SGP4.cpp b/libsgp4/SGP4.cpp index bf51154..a6756c0 100644 --- a/libsgp4/SGP4.cpp +++ b/libsgp4/SGP4.cpp @@ -372,11 +372,6 @@ Eci SGP4::FindPositionSGP4(const Julian& dt, double tsince) const e = elements_.Eccentricity() - tempe; xl = xmp + omega + xnode + elements_.RecoveredMeanMotion() * templ; - if (xl <= 0.0) - { - throw SatelliteException("Error: #2 (xl <= 0.0)"); - } - /* * fix tolerance for error recognition */