public enum MavFrame extends Enum<MavFrame>
| 枚举常量和说明 |
|---|
MAV_FRAME_BODY_NED
Setpoint in body NED frame.
|
MAV_FRAME_BODY_OFFSET_NED
Offset in body NED frame.
|
MAV_FRAME_GLOBAL
Global coordinate frame, WGS84 coordinate system.
|
MAV_FRAME_GLOBAL_RELATIVE_ALT
Global coordinate frame, WGS84 coordinate system, relative altitude over ground with respect to the home position.
|
MAV_FRAME_GLOBAL_TERRAIN_ALT
Global coordinate frame with above terrain level altitude.
|
MAV_FRAME_LOCAL_ENU
Local coordinate frame, Z-down (x: east, y: north, z: up)
|
MAV_FRAME_LOCAL_NED
Local coordinate frame, Z-up (x: north, y: east, z: down).
|
MAV_FRAME_LOCAL_OFFSET_NED
Offset to the current local frame.
|
MAV_FRAME_MISSION
NOT a coordinate frame, indicates a mission command.
|
public static final MavFrame MAV_FRAME_GLOBAL
public static final MavFrame MAV_FRAME_LOCAL_NED
public static final MavFrame MAV_FRAME_MISSION
public static final MavFrame MAV_FRAME_GLOBAL_RELATIVE_ALT
public static final MavFrame MAV_FRAME_LOCAL_ENU
public static final MavFrame MAV_FRAME_LOCAL_OFFSET_NED
public static final MavFrame MAV_FRAME_BODY_NED
public static final MavFrame MAV_FRAME_BODY_OFFSET_NED
public static final MavFrame MAV_FRAME_GLOBAL_TERRAIN_ALT
public static MavFrame[] values()
for (MavFrame c : MavFrame.values()) System.out.println(c);
public static MavFrame valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2020. All rights reserved.