-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
gnss_position: include geoid separation
- Loading branch information
Showing
1 changed file
with
5 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
# A global position measurement from a GNSS sensor. | ||
|
||
bool fix_3d # Indicates if the fix is 3-dimensional (includes altitude). | ||
bool fix_3d # Indicates if the fix is 3-dimensional (includes altitude/separation). | ||
|
||
float64 latitude # Degrees latitude (positive = N, negative = S). | ||
float64 longitude # Degrees longitude (positive = E, negative = W). | ||
float64 altitude # Altitude above MSL [m] | ||
float64 latitude # Degrees latitude (positive = N, negative = S) | ||
float64 longitude # Degrees longitude (positive = E, negative = W) | ||
float32 altitude # Orthometric altitude above geoid/MSL [m] | ||
float32 separation # Geoid separation above the ellipsoid [m] |