Removed wrong limit check from SGP4 path

feature/19
Daniel Warner 2012-01-04 21:56:18 +00:00
parent ff7498798d
commit 0294aa43d7
1 changed files with 0 additions and 5 deletions

View File

@ -372,11 +372,6 @@ Eci SGP4::FindPositionSGP4(const Julian& dt, double tsince) const
e = elements_.Eccentricity() - tempe; e = elements_.Eccentricity() - tempe;
xl = xmp + omega + xnode + elements_.RecoveredMeanMotion() * templ; xl = xmp + omega + xnode + elements_.RecoveredMeanMotion() * templ;
if (xl <= 0.0)
{
throw SatelliteException("Error: #2 (xl <= 0.0)");
}
/* /*
* fix tolerance for error recognition * fix tolerance for error recognition
*/ */