Files
PX4-Autopilot/docs/uk/msg_docs/FollowTargetEstimator.md
PX4 Build Bot 30b6938f5e New Crowdin translations - uk (#26552)
Co-authored-by: Crowdin Bot <support+bot@crowdin.com>
2026-03-05 14:01:38 +11:00

5.9 KiB

pageClass
pageClass
is-wide-page

FollowTargetEstimator (UORB message)

TOPICS: follow_target_estimator

Fields

Назва Тип Unit [Frame] Range/Enum Опис
timestamp uint64 time since system start (microseconds)
last_filter_reset_timestamp uint64 time of last filter reset (microseconds)
valid bool True if estimator states are okay to be used
stale bool True if estimator stopped receiving follow_target messages for some time. The estimate can still be valid, though it might be inaccurate.
lat_est float64 Estimated target latitude
lon_est float64 Estimated target longitude
alt_est float32 Estimated target altitude
pos_est float32[3] Estimated target NED position (m)
vel_est float32[3] Estimated target NED velocity (m/s)
acc_est float32[3] Estimated target NED acceleration (m^2/s)
prediction_count uint64
fusion_count uint64

Source Message

Source file (GitHub)

:::details Click here to see original file

uint64 timestamp                     # time since system start (microseconds)
uint64 last_filter_reset_timestamp   # time of last filter reset (microseconds)

bool valid              # True if estimator states are okay to be used
bool stale              # True if estimator stopped receiving follow_target messages for some time. The estimate can still be valid, though it might be inaccurate.

float64 lat_est         # Estimated target latitude
float64 lon_est         # Estimated target longitude
float32 alt_est         # Estimated target altitude

float32[3] pos_est      # Estimated target NED position (m)
float32[3] vel_est      # Estimated target NED velocity (m/s)
float32[3] acc_est      # Estimated target NED acceleration (m^2/s)

uint64 prediction_count
uint64 fusion_count

:::