Skip to content

Commit

Permalink
[livemap] increase sanity check height to fix #115
Browse files Browse the repository at this point in the history
  • Loading branch information
Sec42 committed Apr 18, 2024
1 parent 656f3be commit 053ad57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion iridiumtk/reassembler/livemap.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def process(self,q):
if q.sat not in self.ground:
self.ground[q.sat]=[]

if q.alt>700 and q.alt<800: # Sat positions
if q.alt>700 and q.alt<850: # Sat positions
dupe=False
if len(self.positions[q.sat])>0:
lastpos=self.positions[q.sat][-1]
Expand Down

0 comments on commit 053ad57

Please sign in to comment.