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
+44 -7
View File
@@ -1,12 +1,48 @@
---
pageClass: is-wide-page
---
# VehicleGlobalPosition (UORB message)
Fused global position in WGS84.
This struct contains global position estimation. It is not the raw GPS
measurement (@see vehicle_gps_position). This topic is usually published by the position
estimator, which will take more sources of information into account than just GPS,
e.g. control inputs of the vehicle in a Kalman-filter implementation.
Fused global position in WGS84. This struct contains global position estimation. It is not the raw GPS. measurement (@see vehicle_gps_position). This topic is usually published by the position. estimator, which will take more sources of information into account than just GPS,. e.g. control inputs of the vehicle in a Kalman-filter implementation.
[source file](https://github.com/PX4/PX4-Autopilot/blob/main/msg/versioned/VehicleGlobalPosition.msg)
**TOPICS:** vehicle_global_position vehicle_global_position_groundtruth external_ins_global_position estimator_global_position aux_global_position
## Fields
| 명칭 | 형식 | Unit [Frame] | Range/Enum | 설명 |
| ------------------------------------------------------------------------------------ | --------- | ---------------------------------------------------------------- | ---------- | ---------------------------------------------------------------------------- |
| timestamp | `uint64` | | | time since system start (microseconds) |
| timestamp_sample | `uint64` | | | the timestamp of the raw data (microseconds) |
| lat | `float64` | | | Latitude, (degrees) |
| lon | `float64` | | | Longitude, (degrees) |
| alt | `float32` | | | Altitude AMSL, (meters) |
| alt_ellipsoid | `float32` | | | Altitude above ellipsoid, (meters) |
| lat_lon_valid | `bool` | | | |
| alt_valid | `bool` | | | |
| delta_alt | `float32` | | | Reset delta for altitude |
| delta_terrain | `float32` | | | Reset delta for terrain |
| lat_lon_reset_counter | `uint8` | | | Counter for reset events on horizontal position coordinates |
| alt_reset_counter | `uint8` | | | Counter for reset events on altitude |
| terrain_reset_counter | `uint8` | | | Counter for reset events on terrain |
| eph | `float32` | | | Standard deviation of horizontal position error, (metres) |
| epv | `float32` | | | Standard deviation of vertical position error, (metres) |
| terrain_alt | `float32` | | | Terrain altitude WGS84, (metres) |
| terrain_alt_valid | `bool` | | | Terrain altitude estimate is valid |
| dead_reckoning | `bool` | | | True if this position is estimated through dead-reckoning |
## Constants
| 명칭 | 형식 | Value | 설명 |
| -------------------------------------------------------------------- | -------- | ----- | -- |
| <a href="#MESSAGE_VERSION"></a> MESSAGE_VERSION | `uint32` | 0 | |
## Source Message
[Source file (GitHub)](https://github.com/PX4/PX4-Autopilot/blob/main/msg/versioned/VehicleGlobalPosition.msg)
:::details
Click here to see original file
```c
# Fused global position in WGS84.
@@ -46,5 +82,6 @@ bool dead_reckoning # True if this position is estimated through dead-reckoning
# TOPICS vehicle_global_position vehicle_global_position_groundtruth external_ins_global_position
# TOPICS estimator_global_position
# TOPICS aux_global_position
```
:::