-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Facundo Garcia
committed
Jan 12, 2024
1 parent
a9bf143
commit b243cde
Showing
4 changed files
with
147 additions
and
7 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
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
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 |
---|---|---|
@@ -0,0 +1,66 @@ | ||
#################################################################################################### | ||
# | ||
# Copyright (c) 2023 ___ ___ | ||
# \\ \\ / / | ||
# \\ \\/ / | ||
# / /\\ \\ | ||
# /__/ \\__\\ Fixposition AG | ||
# | ||
#################################################################################################### | ||
# | ||
# Fixposition NMEA Message | ||
# | ||
# | ||
#################################################################################################### | ||
|
||
# Navigation Satellite fix for any Global Navigation Satellite System | ||
# | ||
# Specified using the WGS 84 reference ellipsoid | ||
|
||
# header.stamp specifies the ROS time for this measurement (the | ||
# corresponding satellite time may be reported using the | ||
# sensor_msgs/TimeReference message). | ||
# | ||
# header.frame_id is the frame of reference reported by the satellite | ||
# receiver, usually the location of the antenna. This is a | ||
# Euclidean frame relative to the vehicle, not a reference | ||
# ellipsoid. | ||
Header header | ||
|
||
# Latitude [degrees]. Positive is north of equator; negative is south. | ||
float64 latitude | ||
|
||
# Longitude [degrees]. Positive is east of prime meridian; negative is west. | ||
float64 longitude | ||
|
||
# Altitude [m]. Positive is above the WGS 84 ellipsoid. | ||
float64 altitude | ||
|
||
# Speed over ground [m/s] | ||
float64 speed | ||
|
||
# Course over ground [deg] | ||
float64 course | ||
|
||
# Position covariance [m^2] defined relative to a tangential plane | ||
# through the reported position. The components are East, North, and | ||
# Up (ENU), in row-major order. | ||
# | ||
# Beware: this coordinate system exhibits singularities at the poles. | ||
|
||
float64[9] position_covariance | ||
|
||
# If the covariance of the fix is known, fill it in completely. If the | ||
# GPS receiver provides the variance of each measurement, put them | ||
# along the diagonal. If only Dilution of Precision is available, | ||
# estimate an approximate covariance from that. | ||
|
||
uint8 COVARIANCE_TYPE_UNKNOWN = 0 | ||
uint8 COVARIANCE_TYPE_APPROXIMATED = 1 | ||
uint8 COVARIANCE_TYPE_DIAGONAL_KNOWN = 2 | ||
uint8 COVARIANCE_TYPE_KNOWN = 3 | ||
|
||
uint8 position_covariance_type | ||
|
||
# Positioning system mode indicator, R (RTK fixed), F (RTK float), A (no RTK), E, N | ||
string mode |
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