-
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.
multi: removed frame_ids and improved documentation
- Loading branch information
Showing
4 changed files
with
6 additions
and
12 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,5 @@ | ||
# Reports the instantaneous state of an axis. | ||
|
||
float64 position # The current position of the axis in radians. | ||
float64 velocity # The current velocity of the axis in radians/second. | ||
float64 acceleration # The current acceleration of the axis in radians/second^2. | ||
|
||
string frame_id # The id of the measurement's frame. | ||
float64 position # The current position of the axis [rad] | ||
float64 velocity # The current velocity of the axis [rad/s] | ||
float64 acceleration # The current acceleration of the axis [rad/s^2] |
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,12 +1,10 @@ | ||
# A global position measurement from a GNSS sensor. | ||
|
||
string frame_id # The ID of the GNSS coordinate frame. | ||
|
||
bool fix_3d # Indicates if the fix is 3-dimensional (includes altitude). | ||
|
||
float64 latitude # Degrees latitude (positive = N, negative = S). | ||
float64 longitude # Degrees longitude (positive = E, negative = W). | ||
float64 altitude # Altitude above MSL (in meters). | ||
float64 altitude # Altitude above MSL [m] | ||
|
||
bool has_covariance # Indicates if a covariance matrix is provided in this measurement. | ||
float64[9] covariance # The covariance matrix of the measurement for lat,lon,alt. |
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 |
---|---|---|
@@ -1,4 +1,3 @@ | ||
# A time measurement from a timing source. | ||
|
||
string source # The timing source generating the measurement. | ||
time utc_time # The measured UTC time. |