pub struct SpaceWeatherTable { /* private fields */ }Expand description
Time-indexed CelesTrak CSSI space-weather table.
Implementations§
Source§impl SpaceWeatherTable
impl SpaceWeatherTable
Sourcepub fn days(&self) -> &[SpaceWeatherDay]
pub fn days(&self) -> &[SpaceWeatherDay]
All daily-resolution rows, sorted by date.
Sourcepub fn monthly(&self) -> &[SpaceWeatherDay]
pub fn monthly(&self) -> &[SpaceWeatherDay]
All monthly-predicted rows, sorted by date.
Sourcepub fn day(&self, year: i32, month: u8, day: u8) -> Option<&SpaceWeatherDay>
pub fn day(&self, year: i32, month: u8, day: u8) -> Option<&SpaceWeatherDay>
Row for a UTC civil date, including monthly holdover when applicable.
Sourcepub fn coverage(&self) -> SpaceWeatherCoverage
pub fn coverage(&self) -> SpaceWeatherCoverage
Summary of the dates covered by this table.
Sourcepub fn space_weather_at(
&self,
epoch_j2000_s: f64,
) -> Result<SpaceWeather, SpaceWeatherError>
pub fn space_weather_at( &self, epoch_j2000_s: f64, ) -> Result<SpaceWeather, SpaceWeatherError>
NRLMSISE-00 conventional space-weather inputs at an epoch.
epoch_j2000_s is treated as UT seconds on the same convention used by
the drag module for CartesianState::epoch_tdb_seconds; the TDB-UT
difference is below one minute against daily and 3-hour source data.
Sourcepub fn sample_at(
&self,
epoch_j2000_s: f64,
) -> Result<SpaceWeatherSample, SpaceWeatherError>
pub fn sample_at( &self, epoch_j2000_s: f64, ) -> Result<SpaceWeatherSample, SpaceWeatherError>
Lookup a sample with default policy, returning values plus row metadata.
Sourcepub fn sample_at_with_policy(
&self,
epoch_j2000_s: f64,
policy: SpaceWeatherPolicy,
) -> Result<SpaceWeatherSample, SpaceWeatherError>
pub fn sample_at_with_policy( &self, epoch_j2000_s: f64, policy: SpaceWeatherPolicy, ) -> Result<SpaceWeatherSample, SpaceWeatherError>
Lookup a sample with explicit row-class and geomagnetic-default policy.
Sourcepub fn ap_array_at(
&self,
epoch_j2000_s: f64,
) -> Result<ApArray, SpaceWeatherError>
pub fn ap_array_at( &self, epoch_j2000_s: f64, ) -> Result<ApArray, SpaceWeatherError>
Build the NRLMSISE-00 seven-element Ap history array at an epoch.
Trait Implementations§
Source§impl Clone for SpaceWeatherTable
impl Clone for SpaceWeatherTable
Source§fn clone(&self) -> SpaceWeatherTable
fn clone(&self) -> SpaceWeatherTable
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 moreSource§impl Debug for SpaceWeatherTable
impl Debug for SpaceWeatherTable
Source§impl PartialEq for SpaceWeatherTable
impl PartialEq for SpaceWeatherTable
Source§fn eq(&self, other: &SpaceWeatherTable) -> bool
fn eq(&self, other: &SpaceWeatherTable) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SpaceWeatherTable
Auto Trait Implementations§
impl Freeze for SpaceWeatherTable
impl RefUnwindSafe for SpaceWeatherTable
impl Send for SpaceWeatherTable
impl Sync for SpaceWeatherTable
impl Unpin for SpaceWeatherTable
impl UnsafeUnpin for SpaceWeatherTable
impl UnwindSafe for SpaceWeatherTable
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.