From e23a2bf39772c35885cf4db2a635a5aeb6b3cc5b Mon Sep 17 00:00:00 2001 From: broermank Date: Fri, 10 Apr 2020 16:28:03 -0400 Subject: [PATCH] updated Geostationary() tolerance --- predict.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/predict.c b/predict.c index c9b86d3..9cc5cea 100644 --- a/predict.c +++ b/predict.c @@ -3903,7 +3903,7 @@ int x; /* This function returns a 1 if the satellite pointed to by "x" appears to be in a geostationary orbit */ - if (fabs(sat[x].meanmo-1.0027)<0.0002) + if (fabs(sat[x].meanmo-1.0027)<0.015) /* relaxed the tolerance to include geosatellites with meanmo ~1.000 (INMARSAT 3-F1, etc) */ return 1; else