From a74df84ca1e134ab2c6d6c5eaadc1339ba12586c Mon Sep 17 00:00:00 2001 From: Federico Pivotto <73694670+FedericoPivotto@users.noreply.github.com> Date: Fri, 16 Jan 2026 10:52:39 +0100 Subject: [PATCH 1/4] Add missing inplace=True in data column renaming --- gnss_lib_py/parsers/rinex_nav.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnss_lib_py/parsers/rinex_nav.py b/gnss_lib_py/parsers/rinex_nav.py index e693581c..af791778 100644 --- a/gnss_lib_py/parsers/rinex_nav.py +++ b/gnss_lib_py/parsers/rinex_nav.py @@ -218,7 +218,7 @@ def _get_ephemeris_dataframe(self, rinex_path, constellations=None): 'Cic': 'C_ic', 'Crc': 'C_rc', 'Cis': 'C_is', 'Crs': 'C_rs', 'Io': 'i_0', 'Omega0': 'Omega_0'}, inplace=True) data.rename(columns={'X': 'sv_x_m', 'dX': 'sv_dx_mps', 'dX2': 'sv_dx2_mps2', 'Y': 'sv_y_m', 'dY': 'sv_dy_mps', 'dY2': 'sv_dy2_mps2', - 'Z': 'sv_z_m', 'dZ': 'sv_dz_mps', 'dZ2': 'sv_dz2_mps2'}, ) + 'Z': 'sv_z_m', 'dZ': 'sv_dz_mps', 'dZ2': 'sv_dz2_mps2'}, inplace=True) return data, data_header def get_iono_params(self, rinex_header, constellations=None): From 225556a1b2e4041be14b2d00b6997911ee919289 Mon Sep 17 00:00:00 2001 From: Federico Pivotto <73694670+FedericoPivotto@users.noreply.github.com> Date: Fri, 16 Jan 2026 11:08:13 +0100 Subject: [PATCH 2/4] Adjust RINEX nav columns name convetion --- gnss_lib_py/parsers/rinex_nav.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnss_lib_py/parsers/rinex_nav.py b/gnss_lib_py/parsers/rinex_nav.py index af791778..588f658d 100644 --- a/gnss_lib_py/parsers/rinex_nav.py +++ b/gnss_lib_py/parsers/rinex_nav.py @@ -216,9 +216,9 @@ def _get_ephemeris_dataframe(self, rinex_path, constellations=None): # Rename Keplerian orbital parameters to match a GLP standard data.rename(columns={'M0': 'M_0', 'Eccentricity': 'e', 'Toe': 't_oe', 'DeltaN': 'deltaN', 'Cuc': 'C_uc', 'Cus': 'C_us', 'Cic': 'C_ic', 'Crc': 'C_rc', 'Cis': 'C_is', 'Crs': 'C_rs', 'Io': 'i_0', 'Omega0': 'Omega_0'}, inplace=True) - data.rename(columns={'X': 'sv_x_m', 'dX': 'sv_dx_mps', 'dX2': 'sv_dx2_mps2', - 'Y': 'sv_y_m', 'dY': 'sv_dy_mps', 'dY2': 'sv_dy2_mps2', - 'Z': 'sv_z_m', 'dZ': 'sv_dz_mps', 'dZ2': 'sv_dz2_mps2'}, inplace=True) + data.rename(columns={'X': 'x_sv_m', 'dX': 'dx_sv_mps', 'dX2': 'dx2_sv_mps2', + 'Y': 'y_sv_m', 'dY': 'dy_sv_mps', 'dY2': 'dy2_sv_mps2', + 'Z': 'z_sv_m', 'dZ': 'dz_sv_mps', 'dZ2': 'dz2_sv_mps2'}, inplace=True) return data, data_header def get_iono_params(self, rinex_header, constellations=None): From 427fd87de8bc478c438d3218b6213b10a24db569 Mon Sep 17 00:00:00 2001 From: Federico Pivotto <73694670+FedericoPivotto@users.noreply.github.com> Date: Thu, 12 Feb 2026 23:13:24 +0100 Subject: [PATCH 3/4] Update pylint.yml disabling Poetry parallel install --- .github/workflows/pylint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index 8d3e57fb..36678ecc 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -26,7 +26,7 @@ jobs: with: virtualenvs-create: true virtualenvs-in-project: true - installer-parallel: true # default option selected currently + installer-parallel: false # default option selected currently - name: Load cached poetry environment id: cached-poetry-dependencies uses: actions/cache@v4 From eed082bb02464e93a78621e89f0b887dd120236b Mon Sep 17 00:00:00 2001 From: Federico Pivotto <73694670+FedericoPivotto@users.noreply.github.com> Date: Thu, 12 Feb 2026 23:14:05 +0100 Subject: [PATCH 4/4] Update build.yml disabling Poetry parallel install --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0e0ce198..2d8aa8eb 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -39,7 +39,7 @@ jobs: with: virtualenvs-create: true virtualenvs-in-project: true - installer-parallel: true # default option selected currently + installer-parallel: false # default option selected currently # Load cached environment, if it exists - name: Load cached poetry environment id: cached-poetry-dependencies