New Crowdin translations - ko (#26487)

Co-authored-by: Crowdin Bot <support+bot@crowdin.com>
This commit is contained in:
PX4 Build Bot
2026-02-18 16:44:57 +11:00
committed by GitHub
parent 602add3ec1
commit 18c176beef
314 changed files with 11938 additions and 1357 deletions
+27 -2
View File
@@ -1,6 +1,30 @@
---
pageClass: is-wide-page
---
# FigureEightStatus (UORB message)
[source file](https://github.com/PX4/PX4-Autopilot/blob/main/msg/FigureEightStatus.msg)
**TOPICS:** figure_eightstatus
## Fields
| 명칭 | 형식 | Unit [Frame] | Range/Enum | 설명 |
| --------------------------------- | --------- | ---------------------------------------------------------------- | ---------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| timestamp | `uint64` | | | time since system start (microseconds) |
| major_radius | `float32` | | | Major axis radius of the figure eight [m]. Positive values orbit clockwise, negative values orbit counter-clockwise. |
| minor_radius | `float32` | | | Minor axis radius of the figure eight [m]. |
| orientation | `float32` | | | Orientation of the major axis of the figure eight [rad]. |
| frame | `uint8` | | | The coordinate system of the fields: x, y, z. |
| x | `int32` | | | X coordinate of center point. Coordinate system depends on frame field: local = x position in meters _ 1e4, global = latitude in degrees _ 1e7. |
| y | `int32` | | | Y coordinate of center point. Coordinate system depends on frame field: local = y position in meters _ 1e4, global = latitude in degrees _ 1e7. |
| z | `float32` | | | Altitude of center point. Coordinate system depends on frame field. |
## Source Message
[Source file (GitHub)](https://github.com/PX4/PX4-Autopilot/blob/main/msg/FigureEightStatus.msg)
:::details
Click here to see original file
```c
uint64 timestamp # time since system start (microseconds)
@@ -11,5 +35,6 @@ uint8 frame # The coordinate system of the fields: x, y, z.
int32 x # X coordinate of center point. Coordinate system depends on frame field: local = x position in meters * 1e4, global = latitude in degrees * 1e7.
int32 y # Y coordinate of center point. Coordinate system depends on frame field: local = y position in meters * 1e4, global = latitude in degrees * 1e7.
float32 z # Altitude of center point. Coordinate system depends on frame field.
```
:::