1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2025-09-12 15:56:02 +00:00

Fix reading of year in some RINEX v2 observation files

This commit is contained in:
Carles Fernandez
2025-08-25 11:05:19 +02:00
parent acb1b541b5
commit 6d1ad02b73

View File

@@ -76,7 +76,7 @@ def read_obs_time_bounds(obs_path: str) -> Tuple[Optional[datetime], Optional[da
# --- Scan for epoch lines --- # --- Scan for epoch lines ---
for line in f: for line in f:
line = line.strip() line = line.rstrip()
if not line: if not line:
continue continue