Skip to content

Commit

Permalink
bugfix: sp3 microsecond
Browse files Browse the repository at this point in the history
fixes #64

Co-authored-by: Mauricio de Paulo <[email protected]>
  • Loading branch information
scivision and mauriciodev committed Nov 26, 2021
1 parent c23916d commit d66a1a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/georinex/sp3.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ def sp3dt(ln: str) -> datetime:
hour=hour,
minute=minute,
second=second,
microsecond=int(ln[23:28]),
microsecond=int(ln[23:29]),
)

for t in dt:
Expand Down

0 comments on commit d66a1a9

Please sign in to comment.