-
Notifications
You must be signed in to change notification settings - Fork 9
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 roaming correctly #35
Comments
That sounds correct to me : the iteration should return to the original point all the time, unless you define another point in space and time to be the new reference. In my work, we often decide before the mission how many days we want the first to cover (eg 14 days), and we typically run the filter for the whole period throughout the mission. |
I presume it oscillates because the redefinition of the reference point (in space & time) requires to reset the fillter. The problem being for roaming application (like cars and rockets) when to decide we should evaluate a new reference point. |
As I reread this, it sounds like you're saying that being iterations of the batch least squares estimator, the initial position of the roaming vehicle changes. If so, that's perfectly normal! In fact that I'd the whole point of a BLSE: estimate the original state until the square of the distance between the propagated initial state and the measurements are the smallest. Typically, the BLSE is used in iteration mode until the solution cannot be improved upon: https://rustdoc.nyxspace.com/nyx_space/od/process/struct.IterationConf.html. |
@ChristopherRabotin, @jmfriedt,
When navigating, we always determine the receiver state with respect to a local (x0, y0, z0) reference point:
Currently, static applications of the solver works very well. Whether the user specifies x0, y0, z0, or we figure it ourselves in a first special iteration, it works as expected.
The problem is that I always use (x0, y0, z0) as figured at build time or first iteration:
https://github.com/rtk-rs/gnss-rtk/blob/main/src/solver.rs#L437. If I use the past solution (t-1) as x0, y0, z0, when attempting to resolve solution(t), the solver starts to oscillate rapidly.
To my understanding, this is what we should ideally do, otherwise roaming rovers (so called dynamic applications) will not be supported correctly, the rover rapidly moves away from (x0, y0, z0) which can no longer serve as a local reference point
The text was updated successfully, but these errors were encountered: