-
Notifications
You must be signed in to change notification settings - Fork 6.9k
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
drivers: gnss: Add geoid separation to gnss_info #84547
Conversation
cafa6e2
to
4d71f1d
Compare
Do you foresee an application using both references? I would expect the altitude reference to be selected using a kconfig, so its ether MSL, or relative to ellipsoid, or some other |
We're working on an aviation application where both are needed. We use geoid separation to convert between ellipsoidal heights (measured from the ellipsoid) and orthometric heights (measured from the geoid). It's used along with a DEM for distance-to-ground approximation and terrain avoidance. We still report MSL altitude though, so we need both available. I don't love it living in |
All for putting it in |
4d71f1d
to
fb1302f
Compare
Agreed - just moved it to |
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.
Looks good, other than you forgot to update the commit message (and optionally, the PR title). 🙂
Currently altitude is only provided above MSL. Adding geoid seperation allows for ellipsoidal height to be determined. Signed-off-by: Maxmillion McLaughlin <[email protected]>
fb1302f
to
1639fe5
Compare
whoops 😅 - fixed |
Currently altitude is only provided above MSL. Adding geoid separation allows for ellipsoidal height to be determined. This is important for many applications.
Curious whether others think this should live in
navigation_data
orgnss_info