mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2025-09-03 11:27:59 +00:00
Fix reading of year in some RINEX v2 observation files
This commit is contained in:
@@ -76,7 +76,7 @@ def read_obs_time_bounds(obs_path: str) -> Tuple[Optional[datetime], Optional[da
|
||||
|
||||
# --- Scan for epoch lines ---
|
||||
for line in f:
|
||||
line = line.strip()
|
||||
line = line.rstrip()
|
||||
if not line:
|
||||
continue
|
||||
|
||||
|
Reference in New Issue
Block a user