-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
prx: evaluate.py handle cases when NAV files are not perfect or missing data #82
base: main
Are you sure you want to change the base?
Conversation
…ng data Rinex NAV files from NASA hourly for example can usually miss data like some satellites or so even when merged from many stations. This commit fixes cases for missing some data or where data is not perfect, so as computation can be done on available satellites. Caller should handle cases where a subset of query is not fulfilled.
Hi @Raviu56, and thanks for the contribution. |
@plutonheaven Pick some of MN.rnx.gz files from here or any other recent hour and test yourself please. https://cddis.nasa.gov/archive/gnss/data/hourly/2024/146/06/ |
You can use some bash script like this - does need an account - and test them in a for loop;
You can repeat the test running this before python code;
Still many errors. Hope this fulfills your request You can see the huge number of files missing data (despite mixed) and having errors. |
For Galileo error - as it's harder to find -
It's found almost in each hour in ~3 randoms files, after patching other errors; you'd get:
And so. Even after fixing them with latest gfzrnx By the way, I'm not a programmer by any definition, I just did my best to solve the errors I'd, so you may find a better solution now, as all test cases are in your hands. |
For error:
I could not/did not solve them; I simply remove all instances of IRNSS with by adding |
src/prx/rinex_nav/evaluate.py
Outdated
helpers.get_gpst_utc_leap_seconds_from_rinex_header(rinex_file) | ||
) | ||
except: | ||
ds.attrs["utc_gpst_leap_seconds"] = 18 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This solution is not future proof. I have just coded a leap seconds
function, that I will push to your branch.
I added a function that compute leap seconds from the
The Thanks for your weekend contributions!! |
dear all, gfzrnx -finp *.rnx -fout xxxx -f can you figure out more clear the problem on a single broadcast epoch ? gfzrnx developer |
assert "LEAP SECONDS" in header, "LEAP SECONDS not found in RINEX header" | ||
ls_before = header["LEAP SECONDS"][0:6].strip() | ||
|
||
if "LEAP SECONDS" not in header: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Was wondering - is there a reason to not always use the astropy
leap second? It would remove a small piece of complexity, and I see now drawback.
As an alternative, why not compare the header leap second (when present) to the astropy leap second, as an additional sanity check?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@@ -25,7 +25,7 @@ def cached_parse(rinex_file: Path, file_hash: str): | |||
def cached_load(rinex_file: Path, file_hash: str): | |||
ds = cached_parse(rinex_file, file_hash) | |||
ds.attrs["utc_gpst_leap_seconds"] = ( | |||
helpers.get_gpst_utc_leap_seconds_from_rinex_header(rinex_file) | |||
helpers.get_gpst_utc_leap_seconds_from_rinex_header(rinex_file) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we should pick one order of utc
and gpst
here and apply it to both the ds.attrs
field and the function names.
@@ -496,11 +497,13 @@ def compute_ephemeris_and_clock_offset_reference_times(group): | |||
} | |||
) | |||
df = df.reset_index(drop=True) | |||
df = compute_gal_inav_fnav_indicators(df) | |||
if (df.sv.str[0] == "E").any(): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice, thanks for adding those checks.
@@ -91,6 +94,9 @@ def timestamp_2_timedelta(timestamp: pd.Timestamp, time_scale): | |||
|
|||
|
|||
def timedelta_2_weeks_and_seconds(time_delta: pd.Timedelta): | |||
if pd.isnull(time_delta): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for adding the check!
@@ -591,14 +598,16 @@ def find_ephemeris_index(row, df): | |||
df = df.reset_index(drop=True) | |||
df["ephemeris_index"] = df.index | |||
|
|||
query[query.ephemeris_index.isna()]["ephemeris_index"] = df.index[len(df) - 1] | |||
# Use .loc to set the values in the query DataFrame to solve SettingWithCopyWarning |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
great!
# Copy ephemerides into query dataframe | ||
# We are doing it this way around because the same satellite might show up multiple times in the query dataframe, | ||
# e.g. with different query times | ||
query = query.merge(df.drop(columns=["sv"]), on="ephemeris_index") | ||
# For Galileo satellites we can have both F/NAV and I/NAV ephemerides for the same satellite and time, keep | ||
# only one | ||
# Compute times w.r.t. orbit and clock reference times used by downstream computations | ||
query = query[query["ephemeris_reference_time_isagpst"].notna() & (query["ephemeris_reference_time_isagpst"] != '')] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It looks like the ephemeris_reference_time_isagpst
column's dtype
is string here, it should be float
.
@Raviu56 It looks like github actions are not running on your fork. We could merge your branch into a branch in https://github.com/jtec/prx/ so that we get CI checks back - what do you think? |
I did not use github actions before, so do what you see suitable. |
@tn-helmen
Here are list of files at day 155 that could be downloaded from here
========================== Have you checked the Galilio issue mentioned above here #82 (comment) ? It still shows errors after gfzrnx repair/merge? |
@Raviu56, I have added 2 of the files you mention to the test, and the problem is from the Let's maybe raise an issue on the |
@tn-helmen, so nothing wrong on the side of |
Why not? Can you open it please and mention this?
Only Galileo issue is confirmed on |
Rinex NAV files from NASA hourly for example can usually miss data like some satellites or so even when merged from many stations. This commit fixes cases for missing some data or where data is not perfect, so as computation can be done on available satellites. Caller should handle cases where a subset of query is not fulfilled.