-
Notifications
You must be signed in to change notification settings - Fork 20
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
Support IGS SP3 files #82
Comments
Hello @ljbade, SP3 parser should be a dedicated crate since it's not a RINEX and it differs a lot. |
Hello @ljbade, I iniated this library, that we will merge into the georust community once stabilized. It will be easy for the rinex-cli tool, through the They're might be an interesting aspect if we support real time parsing of all of these IGS datasets, mainly for real time PPP solving, which needs SP3 predictions as soon as they are published. Feel free to contribute to all of that, lots of topic and I can only achieve so little by myself, especially considering this is no longer part of my main occupation. |
@gwbres nice, I will take a look. SP3 is useful when you want precise orbits, so is often used in PPP but can be used for a number of other things. There are even some SP3 files which just contain the "broadcast" orbits translated from the RINEX NAV files, which I found a useful reference when writing my own satellite position calculator. |
Hello @ljbade, SP3 is definitely interesting data to have. We'll soon have the ability to load an SP3 pool into the The main thing it needs now is an interpolatin method, just like here. |
The current PR already has the ability to load a pool of SP3 files. We currently only plot SP3 orbits and clock data, there is no processing involved. They say Clock predictions should not be interpolated, although they seem to be very linear and stable. |
Though SP3 isn't a *NEX file type it is pretty much a companion of the clock RINEX format and used by IGS and others to provide precise satellite orbits.
I can't see any other crate yet that supports SP3 so I think this crate would be a good choice to support it.
The format definition can be found on https://www.igs.org/formats-and-standards/. For some reason the "b" version is missing, can be found at https://files.igs.org/pub/data/format/sp3_glon.txt
Luckily its a fairly simple format type
The text was updated successfully, but these errors were encountered: