From 6d1ad02b73eb974b518508a0d77a2935bad95ae4 Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Mon, 25 Aug 2025 11:05:19 +0200 Subject: [PATCH] Fix reading of year in some RINEX v2 observation files --- utils/skyplot/skyplot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/skyplot/skyplot.py b/utils/skyplot/skyplot.py index 90b19f6c5..e9ff4a8a2 100755 --- a/utils/skyplot/skyplot.py +++ b/utils/skyplot/skyplot.py @@ -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