PX4-Autopilot/docs/uk/msg_docs/LandingTargetPose.md
Hamish Willee 88d623bedb
Move PX4 Guide source into /docs (#24490)
* Add vitepress tree

* Update existing workflows so they dont trigger on changes in the docs path

* Add nojekyll, package.json, LICENCE etc

* Add crowdin docs upload/download scripts

* Add docs flaw checker workflows

* Used docs prefix for docs workflows

* Crowdin obvious fixes

* ci: docs move to self hosted runner

runs on a beefy server for faster builds

Signed-off-by: Ramon Roche <mrpollo@gmail.com>

* ci: don't run build action for docs or ci changes

Signed-off-by: Ramon Roche <mrpollo@gmail.com>

* ci: update runners

Signed-off-by: Ramon Roche <mrpollo@gmail.com>

* Add docs/en

* Add docs assets and scripts

* Fix up editlinks to point to PX4 sources

* Download just the translations that are supported

* Add translation sources for zh, uk, ko

* Update latest tranlsation and uorb graphs

* update vitepress to latest

---------

Signed-off-by: Ramon Roche <mrpollo@gmail.com>
Co-authored-by: Ramon Roche <mrpollo@gmail.com>
2025-03-13 16:08:27 +11:00

36 lines
2.0 KiB
Markdown

# LandingTargetPose (повідомлення UORB)
Відносне положення цільової точки з високою точністю в навігаційних кадрах (тіло фіксоване, орієнтоване на північ, NED) та інерційних (фіксовані на світі, орієнтовані на північ, NED) кадрах
[source file](https://github.com/PX4/PX4-Autopilot/blob/main/msg/LandingTargetPose.msg)
```c
# Relative position of precision land target in navigation (body fixed, north aligned, NED) and inertial (world fixed, north aligned, NED) frames
uint64 timestamp # time since system start (microseconds)
bool is_static # Flag indicating whether the landing target is static or moving with respect to the ground
bool rel_pos_valid # Flag showing whether relative position is valid
bool rel_vel_valid # Flag showing whether relative velocity is valid
float32 x_rel # X/north position of target, relative to vehicle (navigation frame) [meters]
float32 y_rel # Y/east position of target, relative to vehicle (navigation frame) [meters]
float32 z_rel # Z/down position of target, relative to vehicle (navigation frame) [meters]
float32 vx_rel # X/north velocity of target, relative to vehicle (navigation frame) [meters/second]
float32 vy_rel # Y/east velocity of target, relative to vehicle (navigation frame) [meters/second]
float32 cov_x_rel # X/north position variance [meters^2]
float32 cov_y_rel # Y/east position variance [meters^2]
float32 cov_vx_rel # X/north velocity variance [(meters/second)^2]
float32 cov_vy_rel # Y/east velocity variance [(meters/second)^2]
bool abs_pos_valid # Flag showing whether absolute position is valid
float32 x_abs # X/north position of target, relative to origin (navigation frame) [meters]
float32 y_abs # Y/east position of target, relative to origin (navigation frame) [meters]
float32 z_abs # Z/down position of target, relative to origin (navigation frame) [meters]
```