mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-05-12 12:27:35 +08:00
New Crowdin translations - ko (#26487)
Co-authored-by: Crowdin Bot <support+bot@crowdin.com>
This commit is contained in:
@@ -1,9 +1,86 @@
|
||||
---
|
||||
pageClass: is-wide-page
|
||||
---
|
||||
|
||||
# VehicleLocalPosition (UORB message)
|
||||
|
||||
Fused local position in NED.
|
||||
The coordinate system origin is the vehicle position at the time when the EKF2-module was started.
|
||||
Fused local position in NED. The coordinate system origin is the vehicle position at the time when the EKF2-module was started.
|
||||
|
||||
[source file](https://github.com/PX4/PX4-Autopilot/blob/main/msg/versioned/VehicleLocalPosition.msg)
|
||||
**TOPICS:** vehicle_local_position vehicle_local_position_groundtruth external_ins_local_position estimator_local_position
|
||||
|
||||
## Fields
|
||||
|
||||
| 명칭 | 형식 | Unit [Frame] | Range/Enum | 설명 |
|
||||
| ------------------------------------------------------------------------------------------ | ------------ | ---------------------------------------------------------------- | ---------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| timestamp | `uint64` | | | time since system start (microseconds) |
|
||||
| timestamp_sample | `uint64` | | | the timestamp of the raw data (microseconds) |
|
||||
| xy_valid | `bool` | | | true if x and y are valid |
|
||||
| z_valid | `bool` | | | true if z is valid |
|
||||
| v_xy_valid | `bool` | | | true if vx and vy are valid |
|
||||
| v_z_valid | `bool` | | | true if vz is valid |
|
||||
| x | `float32` | | | North position in NED earth-fixed frame, (metres) |
|
||||
| y | `float32` | | | East position in NED earth-fixed frame, (metres) |
|
||||
| z | `float32` | | | Down position (negative altitude) in NED earth-fixed frame, (metres) |
|
||||
| delta_xy | `float32[2]` | | | Amount of lateral shift of position estimate in latest reset (in x and y) [m] |
|
||||
| xy_reset_counter | `uint8` | | | Index of latest lateral position estimate reset |
|
||||
| delta_z | `float32` | | | Amount of vertical shift of position estimate in latest reset [m] |
|
||||
| z_reset_counter | `uint8` | | | Index of latest vertical position estimate reset |
|
||||
| vx | `float32` | | | North velocity in NED earth-fixed frame, (metres/sec) |
|
||||
| vy | `float32` | | | East velocity in NED earth-fixed frame, (metres/sec) |
|
||||
| vz | `float32` | | | Down velocity in NED earth-fixed frame, (metres/sec) |
|
||||
| z_deriv | `float32` | | | Down position time derivative in NED earth-fixed frame, (metres/sec) |
|
||||
| delta_vxy | `float32[2]` | | | Amount of lateral shift of velocity estimate in latest reset (in x and y) [m/s] |
|
||||
| vxy_reset_counter | `uint8` | | | Index of latest vertical velocity estimate reset |
|
||||
| delta_vz | `float32` | | | Amount of vertical shift of velocity estimate in latest reset [m/s] |
|
||||
| vz_reset_counter | `uint8` | | | Index of latest vertical velocity estimate reset |
|
||||
| ax | `float32` | | | North velocity derivative in NED earth-fixed frame, (metres/sec^2) |
|
||||
| ay | `float32` | | | East velocity derivative in NED earth-fixed frame, (metres/sec^2) |
|
||||
| az | `float32` | | | Down velocity derivative in NED earth-fixed frame, (metres/sec^2) |
|
||||
| heading | `float32` | | | Euler yaw angle transforming the tangent plane relative to NED earth-fixed frame, -PI..+PI, (radians) |
|
||||
| heading_var | `float32` | | | |
|
||||
| unaided_heading | `float32` | | | Same as heading but generated by integrating corrected gyro data only |
|
||||
| delta_heading | `float32` | | | Heading delta caused by latest heading reset [rad] |
|
||||
| heading_reset_counter | `uint8` | | | Index of latest heading reset |
|
||||
| heading_good_for_control | `bool` | | | |
|
||||
| tilt_var | `float32` | | | |
|
||||
| xy_global | `bool` | | | true if position (x, y) has a valid global reference (ref_lat, ref_lon) |
|
||||
| z_global | `bool` | | | true if z has a valid global reference (ref_alt) |
|
||||
| ref_timestamp | `uint64` | | | Time when reference position was set since system start, (microseconds) |
|
||||
| ref_lat | `float64` | | | Reference point latitude, (degrees) |
|
||||
| ref_lon | `float64` | | | Reference point longitude, (degrees) |
|
||||
| ref_alt | `float32` | | | Reference altitude AMSL, (metres) |
|
||||
| dist_bottom_valid | `bool` | | | true if distance to bottom surface is valid |
|
||||
| dist_bottom | `float32` | | | Distance from from bottom surface to ground, (metres) |
|
||||
| dist_bottom_var | `float32` | | | terrain estimate variance (m^2) |
|
||||
| delta_dist_bottom | `float32` | | | Amount of vertical shift of dist bottom estimate in latest reset [m] |
|
||||
| dist_bottom_reset_counter | `uint8` | | | Index of latest dist bottom estimate reset |
|
||||
| dist_bottom_sensor_bitfield | `uint8` | | | bitfield indicating what type of sensor is used to estimate dist_bottom |
|
||||
| eph | `float32` | | | Standard deviation of horizontal position error, (metres) |
|
||||
| epv | `float32` | | | Standard deviation of vertical position error, (metres) |
|
||||
| evh | `float32` | | | Standard deviation of horizontal velocity error, (metres/sec) |
|
||||
| evv | `float32` | | | Standard deviation of vertical velocity error, (metres/sec) |
|
||||
| dead_reckoning | `bool` | | | True if this position is estimated through dead-reckoning |
|
||||
| vxy_max | `float32` | | | maximum horizontal speed (meters/sec) |
|
||||
| vz_max | `float32` | | | maximum vertical speed (meters/sec) |
|
||||
| hagl_min | `float32` | | | minimum height above ground level (meters) |
|
||||
| hagl_max_z | `float32` | | | maximum height above ground level for z-control (meters) |
|
||||
| hagl_max_xy | `float32` | | | maximum height above ground level for xy-control (meters) |
|
||||
|
||||
## Constants
|
||||
|
||||
| 명칭 | 형식 | Value | 설명 |
|
||||
| -------------------------------------------------------------------------------------------------------------------------------- | -------- | ----- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
|
||||
| <a href="#MESSAGE_VERSION"></a> MESSAGE_VERSION | `uint32` | 1 | |
|
||||
| <a href="#DIST_BOTTOM_SENSOR_NONE"></a> DIST_BOTTOM_SENSOR_NONE | `uint8` | 0 | |
|
||||
| <a href="#DIST_BOTTOM_SENSOR_RANGE"></a> DIST_BOTTOM_SENSOR_RANGE | `uint8` | 1 | (1 << 0) a range sensor is used to estimate dist_bottom field |
|
||||
| <a href="#DIST_BOTTOM_SENSOR_FLOW"></a> DIST_BOTTOM_SENSOR_FLOW | `uint8` | 2 | (1 << 1) a flow sensor is used to estimate dist_bottom field (mostly fixed-wing use case) |
|
||||
|
||||
## Source Message
|
||||
|
||||
[Source file (GitHub)](https://github.com/PX4/PX4-Autopilot/blob/main/msg/versioned/VehicleLocalPosition.msg)
|
||||
|
||||
:::details
|
||||
Click here to see original file
|
||||
|
||||
```c
|
||||
# Fused local position in NED.
|
||||
@@ -94,5 +171,6 @@ float32 hagl_max_xy # maximum height above ground level for xy-control (meters
|
||||
|
||||
# TOPICS vehicle_local_position vehicle_local_position_groundtruth external_ins_local_position
|
||||
# TOPICS estimator_local_position
|
||||
|
||||
```
|
||||
|
||||
:::
|
||||
|
||||
Reference in New Issue
Block a user