forked from Auterion/px4-simulation-ignition
-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
41da687
commit 62c1d50
Showing
6 changed files
with
96 additions
and
59 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
File renamed without changes.
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,51 @@ | ||
syntax = "proto3"; | ||
package gz.msgs; | ||
option java_package = "com.gz.msgs"; | ||
option java_outer_classname = "GroundtruthProtos"; | ||
|
||
/// \ingroup gz.msgs | ||
/// \interface Groundtruth | ||
/// \brief Data from a Groundtruth plugin | ||
/// This is for GPS message. | ||
|
||
message Groundtruth | ||
{ | ||
/// \brief Sequence number | ||
uint32 seq_num = 1; | ||
|
||
/// \brief Time | ||
int64 time_usec = 2; | ||
|
||
/// \brief Latitude in degrees | ||
double latitude_rad = 3; | ||
|
||
/// \brief Longitude in degrees | ||
double longitude_rad = 4; | ||
|
||
/// \brief Altitude in meters | ||
double altitude_m = 5; | ||
|
||
/// \brief East velocity in the ENU frame, in m / s | ||
double velocity_east = 6; | ||
|
||
/// \brief North velocity in the ENU frame, in m / s | ||
double velocity_north = 7; | ||
|
||
/// \brief Up velocity in the ENU frame, in m / s | ||
double velocity_up = 8; | ||
|
||
/// \brief Quaternion - altitude_w | ||
double attitude_q_w = 9; | ||
|
||
/// \brief Quaternion - altitude_x | ||
double attitude_q_x = 10; | ||
|
||
/// \brief Quaternion - altitude_y | ||
double attitude_q_y = 11; | ||
|
||
/// \brief Quaternion - altitude_z | ||
double attitude_q_z = 12; | ||
|
||
/// \brief Reference name | ||
string frame_id = 13; | ||
} |
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