Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion predict.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down