# Position Mode (MC)

[![](/files/hKSQeq0wvW8pNxaKG1kU)](/px4-user-guide/getting_started/flight_modes.md#key_difficulty) [![](/files/2FLQfgZoPVGdha5rfU1p)](/px4-user-guide/getting_started/flight_modes.md#key_manual) [![](/files/HzwSY3R2HwNAJpuyPJo2)](/px4-user-guide/getting_started/flight_modes.md#key_position_fixed)

*Position* is an easy-to-fly RC mode in which roll and pitch sticks control acceleration over ground in the vehicle's left-right and forward-back directions (similar to a car's accelerator pedal), and throttle controls speed of ascent-descent. When the sticks are released/centered the vehicle will actively brake, level, and be locked to a position in 3D space — compensating for wind and other forces. With full stick deflection the vehicle accelerates initially with [MPC\_ACC\_HOR\_MAX](#MPC_ACC_HOR_MAX) ramping down until it reaches the final velocity [MPC\_VEL\_MANUAL](#MPC_VEL_MANUAL).

:::tip Position mode is the safest manual mode for new fliers. Unlike [Altitude](/px4-user-guide/flying/flight_modes/altitude_mc.md) and [Manual/Stabilized](/px4-user-guide/flying/flight_modes/manual_stabilized_mc.md) modes the vehicle will stop when the sticks are centered rather than continuing until slowed by wind resistance. :::

The diagram below shows the mode behaviour visually (for a mode 2 transmitter).

![MC Position Mode](/files/OTJldGsinVTzbstnIfce)

### Landing

Landing in this mode is easy:

1. Position the drone horizontally above the landing spot using the roll and pitch stick.
2. Let go of the roll and pitch stick and give it enough time to come to a complete stop.
3. Pull the throttle stick down gently until the vehicle touches the ground.
4. Pull the throttle stick all the way down to facilitate and accelerate land detection.
5. The vehicle will lower propeller thrust, detect the ground and [automatically disarm](/px4-user-guide/advanced_config/prearm_arm_disarm.md#auto-disarming) (by default).

:::warning While very rare on a well calibrated vehicle, sometimes there may be problems with landing.

* If the vehicle does not stop moving horizontally:
  * You can still land under control in [Altitude mode](/px4-user-guide/flying/flight_modes/altitude_mc.md). The approach is the same as above, except that you must manually ensure that the vehicle stays above the landing spot using the roll and pitch stick.
  * After landing check GPS and magnetometer orientation, calibration.
* If the vehicle does not detect the ground/landing and disarm:
  * After the vehicle is on the ground switch to [Manual/Stabilized mode](/px4-user-guide/flying/flight_modes/manual_stabilized_mc.md) keeping the throttle stick low, and manually disarm using a gesture or other command. Alternatively you can also use the kill switch when the vehicle is already on the ground. :::

## Technical Summary

RC mode where roll, pitch, throttle (RPT) sticks control movement in corresponding axes/directions. Centered sticks level vehicle and hold it to fixed altitude and position against wind.

* Centered roll, pitch, throttle sticks (within RC deadzone [MPC\_HOLD\_DZ](/px4-user-guide/advanced_config/parameter_reference.md#MPC_HOLD_DZ)) hold x, y, z position steady against any disturbance like wind.
* Outside center:
  * Roll/Pitch sticks control horizontal acceleration over ground in the vehicle's left-right and forward-back directions (respectively).
  * Throttle stick controls speed of ascent-descent.
  * Yaw stick controls rate of angular rotation above the horizontal plane.
* Takeoff:
  * When landed, the vehicle will take off if the throttle stick is raised above 62.5% percent (of the full range from bottom).

:::note

* Manual input is required (RC controller, or gamepad/thumbsticks through MAVLink).
* This mode requires GPS. :::

### Parameters

All the parameters in the [Multicopter Position Control](/px4-user-guide/advanced_config/parameter_reference.md#multicopter-position-control) group are relevant. A few parameters of particular note are listed below.

| Parameter                                                                                       | Description                                                                                                                                                                                                                                                                                                                      |
| ----------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| [MPC\_HOLD\_DZ](/px4-user-guide/advanced_config/parameter_reference.md#MPC_HOLD_DZ)             | Deadzone of sticks where position hold is enabled. Default: 0.1 (10% of full stick range).                                                                                                                                                                                                                                       |
| [MPC\_Z\_VEL\_MAX\_UP](/px4-user-guide/advanced_config/parameter_reference.md#MPC_Z_VEL_MAX_UP) | Maximum vertical ascent velocity. Default: 3 m/s.                                                                                                                                                                                                                                                                                |
| [MPC\_Z\_VEL\_MAX\_DN](/px4-user-guide/advanced_config/parameter_reference.md#MPC_Z_VEL_MAX_DN) | Maximum vertical descent velocity. Default: 1 m/s.                                                                                                                                                                                                                                                                               |
| [MPC\_LAND\_ALT1](/px4-user-guide/advanced_config/parameter_reference.md#MPC_LAND_ALT1)         | Altitude for triggering first phase of slow landing. Below this altitude descending velocity gets limited to a value between [MPC\_Z\_VEL\_MAX\_DN](#MPC_Z_VEL_MAX_DN) (or `MPC_Z_V_AUTO_DN`) and [MPC\_LAND\_SPEED](#MPC_LAND_SPEED). Value needs to be higher than [MPC\_LAND\_ALT2](#MPC_LAND_ALT2). Default 10m.             |
| [MPC\_LAND\_ALT2](/px4-user-guide/advanced_config/parameter_reference.md#MPC_LAND_ALT2)         | Altitude for second phase of slow landing. Below this altitude descending velocity gets limited to [`MPC_LAND_SPEED`](#MPC_LAND_SPEED). Value needs to be lower than "MPC\_LAND\_ALT1". Default 5m.                                                                                                                              |
| `RCX_DZ`                                                                                        | RC dead zone for channel X. The value of X for throttle will depend on the value of [RC\_MAP\_THROTTLE](/px4-user-guide/advanced_config/parameter_reference.md#RC_MAP_THROTTLE). For example, if the throttle is channel 4 then [RC4\_DZ](/px4-user-guide/advanced_config/parameter_reference.md#RC4_DZ) specifies the deadzone. |
| `MPC_XXXX`                                                                                      | Most of the MPC\_xxx parameters affect flight behaviour in this mode (at least to some extent). For example, [MPC\_THR\_HOVER](/px4-user-guide/advanced_config/parameter_reference.md#MPC_THR_HOVER) defines the thrust at which a vehicle will hover.                                                                           |
| [MPC\_POS\_MODE](/px4-user-guide/advanced_config/parameter_reference.md#MPC_POS_MODE)           | Stick input to movement translation strategy. From PX4 v1.12 the default (4) is that stick position controls acceleration (in a similar way to a car accelerator pedal). Other options allow stick deflection to directly control speed over ground, with and without smoothing and acceleration limits.                         |
| [MPC\_ACC\_HOR\_MAX](/px4-user-guide/advanced_config/parameter_reference.md#MPC_ACC_HOR_MAX)    | Maximum horizontal acceleration.                                                                                                                                                                                                                                                                                                 |
| [MPC\_VEL\_MANUAL](/px4-user-guide/advanced_config/parameter_reference.md#MPC_VEL_MANUAL)       | Maximum horizontal velocity.                                                                                                                                                                                                                                                                                                     |
| [MPC\_LAND\_SPEED](/px4-user-guide/advanced_config/parameter_reference.md#MPC_LAND_SPEED)       | Landing descend rate. Default 0.7 m/s.                                                                                                                                                                                                                                                                                           |

## Additional Information

### Position Loss/Safety

Position mode is dependent on having an acceptable position estimate. If the estimate falls below acceptable levels, for example due to GPS loss, this may trigger a [Position (GPS) Loss Failsafe](/px4-user-guide/config/safety.md#position-gps-loss-failsafe). Depending on configuration, whether you have a remote control, and whether there is an adequate altitude estimate, PX4 may switch to altitude mode, manual mode, land mode or terminate.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://px4.gitbook.io/px4-user-guide/flying/flight_modes/position_mc.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
