Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Attempring to fix this issue, by removing assertion, it may not be correct though
  • Loading branch information
arihantdaga committed Sep 13, 2022
1 parent b7b8e9b commit 6754259
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion orbit_predictor/predictors/pass_iterators.py
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ def _find_aos(self, tca):
end = tca
start = tca - self._orbit_step(0.34) # On third of the orbit
elevation = self._elevation_at(start)
assert elevation < 0
# assert elevation < 0
while not self._precision_reached(start, end):
midpoint = self.midpoint(start, end)
elevation = self._elevation_at(midpoint)
Expand Down

0 comments on commit 6754259

Please sign in to comment.