pub struct SimpleEci;Expand description
Approximate Earth-centered inertial frame: the “parent frame” for the ERA-only Z rotation used by the simple path. Ignores precession, nutation, polar motion, and frame bias.
Meeus ephemerides return Gcrs (the analytical “geocentric inertial”),
not SimpleEci. SimpleEci is specifically the complement of SimpleEcef
under the ERA-only rotation; there is no direct relationship between
SimpleEci and Gcrs other than both being Earth-centered inertial in the
broad Eci category.
Trait Implementations§
Source§impl Frame for SimpleEci
impl Frame for SimpleEci
const NAME: &'static str = "SimpleEci"
const DESCRIPTOR: FrameDescriptor = FrameDescriptor::SimpleEci
impl Copy for SimpleEci
impl Eci for SimpleEci
impl Eq for SimpleEci
impl StructuralPartialEq for SimpleEci
Auto Trait Implementations§
impl Freeze for SimpleEci
impl RefUnwindSafe for SimpleEci
impl Send for SimpleEci
impl Sync for SimpleEci
impl Unpin for SimpleEci
impl UnsafeUnpin for SimpleEci
impl UnwindSafe for SimpleEci
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.