pub struct Wgs84Geodetic {
pub lat_rad: f64,
pub lon_rad: f64,
pub height_m: f64,
}Expand description
A geodetic (ellipsoidal) position on the WGS84 datum.
Latitude and longitude are geodetic angles in radians; height is the ellipsoidal height in meters. This is the receiver-position type the atmospheric (ionosphere/troposphere) models take: they need the geodetic latitude/longitude of the antenna and, for the troposphere, the height.
The frame and units are fixed in the type so a caller cannot mix this with
the ECEF ItrfPositionM or pass degrees where radians are expected.
Longitude is positive east; latitude is positive north.
Fields§
§lat_rad: f64Geodetic latitude in radians, positive north, range [-pi/2, pi/2].
lon_rad: f64Geodetic longitude in radians, positive east, range [-pi, pi].
height_m: f64Ellipsoidal height above the WGS84 ellipsoid in meters.
Implementations§
Source§impl Wgs84Geodetic
impl Wgs84Geodetic
Trait Implementations§
Source§impl Clone for Wgs84Geodetic
impl Clone for Wgs84Geodetic
Source§fn clone(&self) -> Wgs84Geodetic
fn clone(&self) -> Wgs84Geodetic
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for Wgs84Geodetic
Source§impl Debug for Wgs84Geodetic
impl Debug for Wgs84Geodetic
Source§impl Display for Wgs84Geodetic
impl Display for Wgs84Geodetic
Source§impl PartialEq for Wgs84Geodetic
impl PartialEq for Wgs84Geodetic
Source§fn eq(&self, other: &Wgs84Geodetic) -> bool
fn eq(&self, other: &Wgs84Geodetic) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for Wgs84Geodetic
Auto Trait Implementations§
impl Freeze for Wgs84Geodetic
impl RefUnwindSafe for Wgs84Geodetic
impl Send for Wgs84Geodetic
impl Sync for Wgs84Geodetic
impl Unpin for Wgs84Geodetic
impl UnsafeUnpin for Wgs84Geodetic
impl UnwindSafe for Wgs84Geodetic
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<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> Pointable for T
impl<T> Pointable for T
impl<T> Scalar for T
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.