pub struct SET_GPS_GLOBAL_ORIGIN_DATA {
pub latitude: i32,
pub longitude: i32,
pub altitude: i32,
pub target_system: u8,
pub time_usec: u64,
}
๐Deprecated: See
MAV_CMD_SET_GLOBAL_ORIGIN
(Deprecated since 2025-04)Available on crate feature
avssuas
only.Expand description
id: 48 Sets the GPS coordinates of the vehicle local origin (0,0,0) position. Vehicle should emit GPS_GLOBAL_ORIGIN irrespective of whether the origin is changed. This enables transform between the local coordinate frame and the global (GPS) coordinate frame, which may be necessary when (for example) indoor and outdoor settings are connected and the MAV should move from in- to outdoor.
Fieldsยง
ยงlatitude: i32
๐Deprecated: See
MAV_CMD_SET_GLOBAL_ORIGIN
(Deprecated since 2025-04)Latitude (WGS84)
longitude: i32
๐Deprecated: See
MAV_CMD_SET_GLOBAL_ORIGIN
(Deprecated since 2025-04)Longitude (WGS84)
altitude: i32
๐Deprecated: See
MAV_CMD_SET_GLOBAL_ORIGIN
(Deprecated since 2025-04)Altitude (MSL). Positive for up.
target_system: u8
๐Deprecated: See
MAV_CMD_SET_GLOBAL_ORIGIN
(Deprecated since 2025-04)System ID
time_usec: u64
๐Deprecated: See
MAV_CMD_SET_GLOBAL_ORIGIN
(Deprecated since 2025-04)Timestamp (UNIX Epoch time or time since system boot). The receiving end can infer timestamp format (since 1.1.1970 or since system boot) by checking for the magnitude of the number.
Implementationsยง
Sourceยงimpl SET_GPS_GLOBAL_ORIGIN_DATA
impl SET_GPS_GLOBAL_ORIGIN_DATA
pub const ENCODED_LEN: usize = 21usize
pub const DEFAULT: Self
Trait Implementationsยง
Sourceยงimpl Clone for SET_GPS_GLOBAL_ORIGIN_DATA
impl Clone for SET_GPS_GLOBAL_ORIGIN_DATA
Sourceยงfn clone(&self) -> SET_GPS_GLOBAL_ORIGIN_DATA
fn clone(&self) -> SET_GPS_GLOBAL_ORIGIN_DATA
Returns a duplicate of the value. Read more
1.0.0 ยท Sourceยงfn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSourceยงimpl Debug for SET_GPS_GLOBAL_ORIGIN_DATA
impl Debug for SET_GPS_GLOBAL_ORIGIN_DATA
Sourceยงimpl<'de> Deserialize<'de> for SET_GPS_GLOBAL_ORIGIN_DATA
impl<'de> Deserialize<'de> for SET_GPS_GLOBAL_ORIGIN_DATA
Sourceยงfn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Sourceยงimpl MessageData for SET_GPS_GLOBAL_ORIGIN_DATA
impl MessageData for SET_GPS_GLOBAL_ORIGIN_DATA
const ID: u32 = 48u32
const NAME: &'static str = "SET_GPS_GLOBAL_ORIGIN"
const EXTRA_CRC: u8 = 41u8
const ENCODED_LEN: usize = 21usize
type Message = MavMessage
fn deser(_version: MavlinkVersion, __input: &[u8]) -> Result<Self, ParserError>
fn ser(&self, version: MavlinkVersion, bytes: &mut [u8]) -> usize
Sourceยงimpl PartialEq for SET_GPS_GLOBAL_ORIGIN_DATA
impl PartialEq for SET_GPS_GLOBAL_ORIGIN_DATA
Sourceยงfn eq(&self, other: &SET_GPS_GLOBAL_ORIGIN_DATA) -> bool
fn eq(&self, other: &SET_GPS_GLOBAL_ORIGIN_DATA) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for SET_GPS_GLOBAL_ORIGIN_DATA
Auto Trait Implementationsยง
impl Freeze for SET_GPS_GLOBAL_ORIGIN_DATA
impl RefUnwindSafe for SET_GPS_GLOBAL_ORIGIN_DATA
impl Send for SET_GPS_GLOBAL_ORIGIN_DATA
impl Sync for SET_GPS_GLOBAL_ORIGIN_DATA
impl Unpin for SET_GPS_GLOBAL_ORIGIN_DATA
impl UnwindSafe for SET_GPS_GLOBAL_ORIGIN_DATA
Blanket Implementationsยง
Sourceยงimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Sourceยงfn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more