pub struct SpaTimeDependent {
pub theta_degrees: f64,
pub beta_degrees: f64,
pub r: f64,
pub delta_psi: f64,
pub epsilon_degrees: f64,
pub lambda_degrees: f64,
pub nu_degrees: f64,
pub alpha_degrees: f64,
pub delta_degrees: f64,
}Expand description
Represents nutation corrections for longitude and obliquity. Time-dependent intermediate values from SPA calculation (steps 1-11).
Fields§
§theta_degrees: f64Geocentric longitude (degrees)
beta_degrees: f64Geocentric latitude (degrees)
r: f64Earth radius vector (AU)
delta_psi: f64Nutation in longitude (degrees)
epsilon_degrees: f64True obliquity of ecliptic (degrees)
lambda_degrees: f64Apparent sun longitude (degrees)
nu_degrees: f64Apparent sidereal time at Greenwich (degrees)
alpha_degrees: f64Geocentric sun right ascension (degrees)
delta_degrees: f64Geocentric sun declination (degrees)
Trait Implementations§
Source§impl Clone for SpaTimeDependent
impl Clone for SpaTimeDependent
Source§fn clone(&self) -> SpaTimeDependent
fn clone(&self) -> SpaTimeDependent
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 moreAuto Trait Implementations§
impl Freeze for SpaTimeDependent
impl RefUnwindSafe for SpaTimeDependent
impl Send for SpaTimeDependent
impl Sync for SpaTimeDependent
impl Unpin for SpaTimeDependent
impl UnwindSafe for SpaTimeDependent
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