Struct gpsd_proto::Satellite[][src]

pub struct Satellite {
    pub prn: u16,
    pub el: u16,
    pub az: u16,
    pub ss: u16,
    pub used: bool,
}

Detailed satellite information.

Fields

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

Elevation in degrees.

Azimuth, degrees from true north.

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 Satellite
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Satellite

impl Sync for Satellite