Skip to content

Commit

Permalink
NPI-3655 add use of friendly names for baseline and test dataframe, i…
Browse files Browse the repository at this point in the history
…n logs about offline sat removal within diff_sp3_rac
  • Loading branch information
treefern committed Dec 19, 2024
1 parent 0d43ea2 commit d59e22e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gnssanalysis/gn_io/sp3.py
Original file line number Diff line number Diff line change
Expand Up @@ -920,8 +920,8 @@ def diff_sp3_rac(
# the SV from the whole file.
# This step was added after velocity interpolation failures due to non-finite (NaN) values from offline SVs.
if use_offline_sat_removal:
sp3_baseline = remove_offline_sats(sp3_baseline)
sp3_test = remove_offline_sats(sp3_test)
sp3_baseline = remove_offline_sats(sp3_baseline, df_friendly_name="baseline")
sp3_test = remove_offline_sats(sp3_test, df_friendly_name="test")

# Ensure the test file is time-ordered so when we align the resulting dataframes will be time-ordered
sp3_baseline = sp3_baseline.sort_index(axis="index", level="J2000")
Expand Down

0 comments on commit d59e22e

Please sign in to comment.