We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b305ae commit d5de43cCopy full SHA for d5de43c
src/georinex/nav3.py
@@ -485,6 +485,19 @@ def navheader3(f: T.TextIO) -> dict[str, T.Any]:
485
rinex_string_to_float(content[5 + i * 12 : 5 + (i + 1) * 12]) for i in range(N)
486
]
487
hdr[kind][coeff_kind] = coeff
488
+ elif kind == "TIME SYSTEM CORR":
489
+ if kind not in hdr:
490
+ hdr[kind] = {}
491
+
492
+ coeff_kind = content[:4].strip()
493
+ # RINEX 3.04 table A5 page A20
494
+ coeff = [
495
+ rinex_string_to_float(content[5:22]),
496
+ rinex_string_to_float(content[22:38]),
497
+ int(content[38:45]),
498
+ int(content[45:50])
499
+ ]
500
+ hdr[kind][coeff_kind] = coeff
501
else:
502
hdr[kind] = content
503
0 commit comments