Function convert_nav_dataset_to_dataframe of src/prx/rinex_nav/evaluate.py assumes that GLONASS is present in RNX NAV file.
When it is not the case, the following line causes an error:
df["frequency_slot"] = df.FreqNum.where(df.sv.str[0] == "R", 1).astype(int)
due to the absence of FreqNum in the parsed NAV file.
This happened when I tried to process TLSE00FRA_R_20220010000_01D_30S_MO.rnx.gz. The file BRDC00WRD_R_20213650000_01D_MN.rnx was downloaded and produced an error.
Function
convert_nav_dataset_to_dataframeofsrc/prx/rinex_nav/evaluate.pyassumes that GLONASS is present in RNX NAV file.When it is not the case, the following line causes an error:
due to the absence of
FreqNumin the parsed NAV file.This happened when I tried to process
TLSE00FRA_R_20220010000_01D_30S_MO.rnx.gz. The fileBRDC00WRD_R_20213650000_01D_MN.rnxwas downloaded and produced an error.