pub struct GPSPositionAndVelocityMeasurement {
pub latitude: f64,
pub longitude: f64,
pub altitude: f64,
pub northward_velocity: f64,
pub eastward_velocity: f64,
pub horizontal_noise_std: f64,
pub vertical_noise_std: f64,
pub velocity_noise_std: f64,
}
Expand description
GPS Position and Velocity measurement model
Fields§
§latitude: f64
latitude in degrees
longitude: f64
longitude in degrees
altitude: f64
altitude in meters
northward_velocity: f64
Northward velocity in m/s
eastward_velocity: f64
Eastward velocity in m/s
horizontal_noise_std: f64
Downward velocity in m/s noise standard deviation in meters for position
vertical_noise_std: f64
vertical noise standard deviation in meters for position
velocity_noise_std: f64
noise standard deviation in m/s for velocity
Trait Implementations§
Source§impl Clone for GPSPositionAndVelocityMeasurement
impl Clone for GPSPositionAndVelocityMeasurement
Source§fn clone(&self) -> GPSPositionAndVelocityMeasurement
fn clone(&self) -> GPSPositionAndVelocityMeasurement
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 Default for GPSPositionAndVelocityMeasurement
impl Default for GPSPositionAndVelocityMeasurement
Source§fn default() -> GPSPositionAndVelocityMeasurement
fn default() -> GPSPositionAndVelocityMeasurement
Returns the “default value” for a type. Read more
Source§impl MeasurementModel for GPSPositionAndVelocityMeasurement
impl MeasurementModel for GPSPositionAndVelocityMeasurement
Source§fn get_dimension(&self) -> usize
fn get_dimension(&self) -> usize
Get the dimensionality of the measurement vector.
Source§fn get_vector(&self) -> DVector<f64>
fn get_vector(&self) -> DVector<f64>
Get the measurement vector
Auto Trait Implementations§
impl Freeze for GPSPositionAndVelocityMeasurement
impl RefUnwindSafe for GPSPositionAndVelocityMeasurement
impl Send for GPSPositionAndVelocityMeasurement
impl Sync for GPSPositionAndVelocityMeasurement
impl Unpin for GPSPositionAndVelocityMeasurement
impl UnwindSafe for GPSPositionAndVelocityMeasurement
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.