pub fn msise00_density(
sw: Msise00DailyWeather,
lst_h: f64,
latitude_deg: f64,
longitude_deg: f64,
altitude_km: f64,
epoch: Epoch,
) -> Result<Nrlmsise00Output, DynamicsError>Expand description
Compute full atmospheric composition from geodetic coordinates and epoch.
Returns the complete NRLMSISE-00 output including:
- Total mass density [kg/m³]
- Number densities [cm⁻³] for 9 species: He, O, N₂, O₂, Ar, H, N, anomalous O
- Exospheric and local temperatures [K]
This is the high-level API that takes pre-computed geodetic coordinates.
For direct low-level access with explicit NRLMSISE-00 input parameters,
use [Nrlmsise00::calculate()].