コンテンツにスキップ

Sgp4ElementsFields

このコンテンツはまだ日本語訳がありません。

Defined in: elements.rs:58

pub struct Sgp4ElementsFields {
pub norad_cat_id: u32,
pub epoch: Epoch<Utc>,
pub mean_motion: f64,
pub eccentricity: f64,
pub inclination: f64,
pub raan: f64,
pub argument_of_perigee: f64,
pub mean_anomaly: f64,
pub bstar: f64,
}

The field bundle a Sgp4Elements wraps: the input to Sgp4Elements::try_new and the shape Sgp4Elements::fields hands back for reading. Holding a Sgp4ElementsFields does not imply validity — only a validated Sgp4Elements does.

norad_cat_id: u32

NORAD_CAT_ID — catalog number. Alpha-5 alphanumeric ids are decoded to their numeric value (e.g. "A0000"100000).


epoch: [Epoch<Utc>](../epoch/)

Element-set epoch (UTC).


mean_motion: f64

Mean motion [rad/s] (positive).


eccentricity: f64

Eccentricity (dimensionless), in [0, 1).


inclination: f64

Inclination [rad].


raan: f64

Right ascension of the ascending node [rad].


argument_of_perigee: f64

Argument of perigee [rad].


mean_anomaly: f64

Mean anomaly [rad].


bstar: f64

B* drag term [1/earth radii].