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
+40 -2
View File
@@ -1,8 +1,45 @@
---
pageClass: is-wide-page
---
# HomePosition (UORB message)
GPS home position in WGS84 coordinates.
[source file](https://github.com/PX4/PX4-Autopilot/blob/main/msg/versioned/HomePosition.msg)
**TOPICS:** home_position
## Fields
| 명칭 | 형식 | Unit [Frame] | Range/Enum | 설명 |
| --------------------------------- | --------- | ---------------------------------------------------------------- | ---------- | ------------------------------------------------------------------ |
| timestamp | `uint64` | | | time since system start (microseconds) |
| lat | `float64` | | | Latitude in degrees |
| lon | `float64` | | | Longitude in degrees |
| alt | `float32` | | | Altitude in meters (AMSL) |
| x | `float32` | | | X coordinate in meters |
| y | `float32` | | | Y coordinate in meters |
| z | `float32` | | | Z coordinate in meters |
| roll | `float32` | | | Pitch angle in radians |
| pitch | `float32` | | | Roll angle in radians |
| yaw | `float32` | | | Yaw angle in radians |
| valid_alt | `bool` | | | true when the altitude has been set |
| valid_hpos | `bool` | | | true when the latitude and longitude have been set |
| valid_lpos | `bool` | | | true when the local position (xyz) has been set |
| manual_home | `bool` | | | true when home position was set manually |
| update_count | `uint32` | | | update counter of the home position |
## Constants
| 명칭 | 형식 | Value | 설명 |
| -------------------------------------------------------------------- | -------- | ----- | -- |
| <a href="#MESSAGE_VERSION"></a> MESSAGE_VERSION | `uint32` | 1 | |
## Source Message
[Source file (GitHub)](https://github.com/PX4/PX4-Autopilot/blob/main/msg/versioned/HomePosition.msg)
:::details
Click here to see original file
```c
# GPS home position in WGS84 coordinates.
@@ -30,5 +67,6 @@ bool valid_lpos # true when the local position (xyz) has been set
bool manual_home # true when home position was set manually
uint32 update_count # update counter of the home position
```
:::