SpaceWeatherProvider
このコンテンツはまだ日本語訳がありません。
Defined in: space_weather.rs:36
pub trait SpaceWeatherProvider: [Send](https://doc.rust-lang.org/std/marker/trait.Send.html) + [Sync](https://doc.rust-lang.org/std/marker/trait.Sync.html)Provider of space weather data for a given epoch.
Implementations supply time-varying solar activity data to atmosphere models.
Must be Send + Sync for use inside ForceModel trait objects.
Required Methods
Section titled “Required Methods”fn get(&self, epoch: &Epoch) -> SpaceWeather
Returns space weather conditions at the given epoch.