pub struct GPSPositionMeasurement {
pub latitude: f64,
pub longitude: f64,
pub altitude: f64,
pub horizontal_noise_std: f64,
pub vertical_noise_std: f64,
}
Expand description
GPS position measurement model
Fields§
§latitude: f64
latitude in degrees
longitude: f64
longitude in degrees
altitude: f64
altitude in meters
horizontal_noise_std: f64
noise standard deviation in meters
vertical_noise_std: f64
vertical noise standard deviation in meters
Trait Implementations§
Source§impl Clone for GPSPositionMeasurement
impl Clone for GPSPositionMeasurement
Source§fn clone(&self) -> GPSPositionMeasurement
fn clone(&self) -> GPSPositionMeasurement
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 GPSPositionMeasurement
impl Debug for GPSPositionMeasurement
Source§impl Default for GPSPositionMeasurement
impl Default for GPSPositionMeasurement
Source§fn default() -> GPSPositionMeasurement
fn default() -> GPSPositionMeasurement
Returns the “default value” for a type. Read more
Source§impl MeasurementModel for GPSPositionMeasurement
impl MeasurementModel for GPSPositionMeasurement
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 GPSPositionMeasurement
impl RefUnwindSafe for GPSPositionMeasurement
impl Send for GPSPositionMeasurement
impl Sync for GPSPositionMeasurement
impl Unpin for GPSPositionMeasurement
impl UnwindSafe for GPSPositionMeasurement
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.