Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/umrlastig/tracklib
Browse files Browse the repository at this point in the history
  • Loading branch information
mdvandamme committed Oct 9, 2024
2 parents a6e3757 + 3accee5 commit 575e40c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tracklib/core/track.py
Original file line number Diff line number Diff line change
Expand Up @@ -1140,9 +1140,9 @@ def __compare(self, k1, k2, code):
if "X" in code:
same = same and (self[k1].position.getX() == self[k2].position.getX())
if "Y" in code:
same = same and (self[k1].position.getX() == self[k2].position.getX())
same = same and (self[k1].position.getY() == self[k2].position.getY())
if "Z" in code:
same = same and (self[k1].position.getX() == self[k2].position.getX())
same = same and (self[k1].position.getZ() == self[k2].position.getZ())
if "T" in code:
same = same and (self[k1].timestamp - self[k2].timestamp == 0)
if "AF" in code:
Expand Down

0 comments on commit 575e40c

Please sign in to comment.