Struct unbounded_gpsd::types::SatelliteObject[][src]

pub struct SatelliteObject {
    pub prn: u16,
    pub azimuth: u32,
    pub elevation: u32,
    pub signal_strength: u32,
    pub used: bool,
}

A single satellite.

Fields

PRN ID of the satellite. 1-63 are GNSS satellites, 64-96 are GLONASS satellites, 100-164 are SBAS satellites

Azimuth, degrees from true north.

Elevation in degrees.

Signal strength in dB.

Used in current solution? (SBAS/WAAS/EGNOS satellites may be flagged used if the solution has corrections from them, but not all drivers make this information available.)

Trait Implementations

impl Debug for SatelliteObject
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations