pub struct StrapdownParams {
pub latitude: f64,
pub longitude: f64,
pub altitude: f64,
pub northward_velocity: f64,
pub eastward_velocity: f64,
pub downward_velocity: f64,
pub roll: f64,
pub pitch: f64,
pub yaw: f64,
pub in_degrees: bool,
}Expand description
Basic strapdown state parameters for the UKF and particle filter initialization.
Fields§
§latitude: f64§longitude: f64§altitude: f64§northward_velocity: f64§eastward_velocity: f64§downward_velocity: f64§roll: f64§pitch: f64§yaw: f64§in_degrees: boolTrait Implementations§
Source§impl Clone for StrapdownParams
impl Clone for StrapdownParams
Source§fn clone(&self) -> StrapdownParams
fn clone(&self) -> StrapdownParams
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 StrapdownParams
impl Debug for StrapdownParams
Source§impl Default for StrapdownParams
impl Default for StrapdownParams
Source§fn default() -> StrapdownParams
fn default() -> StrapdownParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for StrapdownParams
impl RefUnwindSafe for StrapdownParams
impl Send for StrapdownParams
impl Sync for StrapdownParams
impl Unpin for StrapdownParams
impl UnwindSafe for StrapdownParams
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.