You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The clipToStartTime: false parameter of GroundStation.Observe does not work, because the last term in the condition to walk back always evaluates to false:
if (!clipToStartTime && obs.Count > 0 && obs[0].Start == start)
This happens because obs[0].Start, computed in FindCrossingTimeWithinInterval, is between start-deltaTime and start, not exactly equal to start.
Suggested solution: replace == with <= in the if statement.
The text was updated successfully, but these errors were encountered:
The
clipToStartTime: false
parameter ofGroundStation.Observe
does not work, because the last term in the condition to walk back always evaluates to false:This happens because
obs[0].Start
, computed inFindCrossingTimeWithinInterval
, is betweenstart-deltaTime
andstart
, not exactly equal tostart
.Suggested solution: replace
==
with<=
in theif
statement.The text was updated successfully, but these errors were encountered: