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.
Fields
Section titled “Fields”norad_cat_id
Section titled “norad_cat_id”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
Section titled “mean_motion”mean_motion: f64
Mean motion [rad/s] (positive).
eccentricity
Section titled “eccentricity”eccentricity: f64
Eccentricity (dimensionless), in [0, 1).
inclination
Section titled “inclination”inclination: f64
Inclination [rad].
raan: f64
Right ascension of the ascending node [rad].
argument_of_perigee
Section titled “argument_of_perigee”argument_of_perigee: f64
Argument of perigee [rad].
mean_anomaly
Section titled “mean_anomaly”mean_anomaly: f64
Mean anomaly [rad].
bstar: f64
B* drag term [1/earth radii].