2015-01-28 02:54:58 -04:00
|
|
|
# Fused local position in NED.
|
2021-09-22 03:11:13 -03:00
|
|
|
# The coordinate system origin is the vehicle position at the time when the EKF2-module was started.
|
2015-01-28 02:54:58 -04:00
|
|
|
|
2018-08-06 21:30:05 -03:00
|
|
|
uint64 timestamp # time since system start (microseconds)
|
2020-09-01 15:38:41 -03:00
|
|
|
uint64 timestamp_sample # the timestamp of the raw data (microseconds)
|
2018-08-06 21:30:05 -03:00
|
|
|
|
2015-12-31 22:38:02 -04:00
|
|
|
bool xy_valid # true if x and y are valid
|
|
|
|
bool z_valid # true if z is valid
|
2021-12-17 10:21:00 -04:00
|
|
|
bool v_xy_valid # true if vx and vy are valid
|
2015-12-31 22:38:02 -04:00
|
|
|
bool v_z_valid # true if vz is valid
|
2015-01-28 02:54:58 -04:00
|
|
|
|
|
|
|
# Position in local NED frame
|
2015-12-31 22:38:02 -04:00
|
|
|
float32 x # North position in NED earth-fixed frame, (metres)
|
|
|
|
float32 y # East position in NED earth-fixed frame, (metres)
|
|
|
|
float32 z # Down position (negative altitude) in NED earth-fixed frame, (metres)
|
2015-01-28 02:54:58 -04:00
|
|
|
|
2016-06-06 05:41:24 -03:00
|
|
|
# Position reset delta
|
2023-11-20 10:35:57 -04:00
|
|
|
float32[2] delta_xy # Amount of lateral shift of position estimate in latest reset (in x and y) [m]
|
|
|
|
uint8 xy_reset_counter # Index of latest lateral position estimate reset
|
|
|
|
float32 delta_z # Amount of vertical shift of position estimate in latest reset [m]
|
|
|
|
uint8 z_reset_counter # Index of latest vertical position estimate reset
|
2016-06-06 05:41:24 -03:00
|
|
|
|
2015-01-28 02:54:58 -04:00
|
|
|
# Velocity in NED frame
|
2015-12-31 22:38:02 -04:00
|
|
|
float32 vx # North velocity in NED earth-fixed frame, (metres/sec)
|
|
|
|
float32 vy # East velocity in NED earth-fixed frame, (metres/sec)
|
|
|
|
float32 vz # Down velocity in NED earth-fixed frame, (metres/sec)
|
2017-04-26 21:42:59 -03:00
|
|
|
float32 z_deriv # Down position time derivative in NED earth-fixed frame, (metres/sec)
|
2015-01-28 02:54:58 -04:00
|
|
|
|
2016-06-06 05:41:24 -03:00
|
|
|
# Velocity reset delta
|
2023-11-20 10:35:57 -04:00
|
|
|
float32[2] delta_vxy # Amount of lateral shift of velocity estimate in latest reset (in x and y) [m/s]
|
|
|
|
uint8 vxy_reset_counter # Index of latest vertical velocity estimate reset
|
|
|
|
float32 delta_vz # Amount of vertical shift of velocity estimate in latest reset [m/s]
|
|
|
|
uint8 vz_reset_counter # Index of latest vertical velocity estimate reset
|
2016-06-06 05:41:24 -03:00
|
|
|
|
2017-09-04 22:54:08 -03:00
|
|
|
# Acceleration in NED frame
|
|
|
|
float32 ax # North velocity derivative in NED earth-fixed frame, (metres/sec^2)
|
|
|
|
float32 ay # East velocity derivative in NED earth-fixed frame, (metres/sec^2)
|
|
|
|
float32 az # Down velocity derivative in NED earth-fixed frame, (metres/sec^2)
|
2016-11-17 10:54:11 -04:00
|
|
|
|
2020-08-07 15:06:38 -03:00
|
|
|
float32 heading # Euler yaw angle transforming the tangent plane relative to NED earth-fixed frame, -PI..+PI, (radians)
|
2023-08-18 11:31:43 -03:00
|
|
|
float32 unaided_heading # Same as heading but generated by integrating corrected gyro data only
|
2023-11-20 10:39:02 -04:00
|
|
|
float32 delta_heading # Heading delta caused by latest heading reset [rad]
|
|
|
|
uint8 heading_reset_counter # Index of latest heading reset
|
2021-09-20 10:36:47 -03:00
|
|
|
bool heading_good_for_control
|
2015-01-28 02:54:58 -04:00
|
|
|
|
2015-12-31 22:38:02 -04:00
|
|
|
# Position of reference point (local NED frame origin) in global (GPS / WGS84) frame
|
2016-12-27 19:49:17 -04:00
|
|
|
bool xy_global # true if position (x, y) has a valid global reference (ref_lat, ref_lon)
|
|
|
|
bool z_global # true if z has a valid global reference (ref_alt)
|
2015-12-31 22:38:02 -04:00
|
|
|
uint64 ref_timestamp # Time when reference position was set since system start, (microseconds)
|
|
|
|
float64 ref_lat # Reference point latitude, (degrees)
|
|
|
|
float64 ref_lon # Reference point longitude, (degrees)
|
2019-10-14 13:33:25 -03:00
|
|
|
float32 ref_alt # Reference altitude AMSL, (metres)
|
2015-01-28 02:54:58 -04:00
|
|
|
|
|
|
|
# Distance to surface
|
2015-12-31 22:38:02 -04:00
|
|
|
float32 dist_bottom # Distance from from bottom surface to ground, (metres)
|
|
|
|
bool dist_bottom_valid # true if distance to bottom surface is valid
|
2020-05-11 11:12:28 -03:00
|
|
|
uint8 dist_bottom_sensor_bitfield # bitfield indicating what type of sensor is used to estimate dist_bottom
|
|
|
|
uint8 DIST_BOTTOM_SENSOR_NONE = 0
|
|
|
|
uint8 DIST_BOTTOM_SENSOR_RANGE = 1 # (1 << 0) a range sensor is used to estimate dist_bottom field
|
|
|
|
uint8 DIST_BOTTOM_SENSOR_FLOW = 2 # (1 << 1) a flow sensor is used to estimate dist_bottom field (mostly fixed-wing use case)
|
2017-09-21 17:24:53 -03:00
|
|
|
|
2015-12-31 22:38:02 -04:00
|
|
|
float32 eph # Standard deviation of horizontal position error, (metres)
|
2016-11-09 20:38:38 -04:00
|
|
|
float32 epv # Standard deviation of vertical position error, (metres)
|
2017-03-07 19:50:29 -04:00
|
|
|
float32 evh # Standard deviation of horizontal velocity error, (metres/sec)
|
2022-07-25 09:54:21 -03:00
|
|
|
float32 evv # Standard deviation of vertical velocity error, (metres/sec)
|
2016-11-09 20:38:38 -04:00
|
|
|
|
2022-07-12 10:53:04 -03:00
|
|
|
bool dead_reckoning # True if this position is estimated through dead-reckoning
|
|
|
|
|
2017-09-18 21:01:50 -03:00
|
|
|
# estimator specified vehicle limits
|
2018-05-19 15:10:34 -03:00
|
|
|
float32 vxy_max # maximum horizontal speed - set to 0 when limiting not required (meters/sec)
|
|
|
|
float32 vz_max # maximum vertical speed - set to 0 when limiting not required (meters/sec)
|
|
|
|
float32 hagl_min # minimum height above ground level - set to 0 when limiting not required (meters)
|
|
|
|
float32 hagl_max # maximum height above ground level - set to 0 when limiting not required (meters)
|
2017-09-18 21:01:50 -03:00
|
|
|
|
2023-01-20 20:09:30 -04:00
|
|
|
# TOPICS vehicle_local_position vehicle_local_position_groundtruth external_ins_local_position
|
2020-10-27 11:56:11 -03:00
|
|
|
# TOPICS estimator_local_position
|