pub struct Ned {
pub rel_pos_n: Option<f64>,
pub rel_pos_e: Option<f64>,
pub rel_pos_d: Option<f64>,
pub rel_pos_h: Option<f64>,
pub rel_pos_l: Option<f64>,
pub vel_n: Option<f64>,
pub vel_e: Option<f64>,
pub vel_d: Option<f64>,
}Expand description
North-East-Down (NED) coordinate system data
Represents position and velocity in the local tangent plane coordinate system. NED is a local coordinate system with origin at the receiver position.
Reference: gps_fix_t.ned
Fields§
§rel_pos_n: Option<f64>Relative position North in meters
rel_pos_e: Option<f64>Relative position East in meters
rel_pos_d: Option<f64>Relative position Down in meters
rel_pos_h: Option<f64>Relative horizontal position in meters
rel_pos_l: Option<f64>Relative position length in meters
vel_n: Option<f64>Velocity North in meters/second
vel_e: Option<f64>Velocity East in meters/second
vel_d: Option<f64>Velocity Down in meters/second
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Ned
impl<'de> Deserialize<'de> for Ned
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
impl StructuralPartialEq for Ned
Auto Trait Implementations§
impl Freeze for Ned
impl RefUnwindSafe for Ned
impl Send for Ned
impl Sync for Ned
impl Unpin for Ned
impl UnwindSafe for Ned
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