Class NmeaSatelliteInfo


  • public final class NmeaSatelliteInfo
    extends java.lang.Object
    An NMEA satellite info object. Contains information about a satellite visible at the location.
    Since:
    100.10.0
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      double getAzimuth()
      Gets the azimuth of the satellite info in degrees.
      double getElevation()
      Gets the elevation of the satellite info in degrees.
      int getId()
      Gets the ID of the satellite information.
      NmeaGnssSystem getSystem()
      Gets the GNSS (Global Navigation Satellite System) system.
      boolean isInUse()
      Indicates if the satellite was used in the calculation of the location.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • getAzimuth

        public double getAzimuth()
        Gets the azimuth of the satellite info in degrees.
        Returns:
        the azimuth of the satellite info in degrees
        Since:
        100.10.0
      • getElevation

        public double getElevation()
        Gets the elevation of the satellite info in degrees.
        Returns:
        the elevation of the satellite info in degrees
        Since:
        100.10.0
      • getId

        public int getId()
        Gets the ID of the satellite information.
        Returns:
        the ID of the satellite information
        Since:
        100.10.0
      • isInUse

        public boolean isInUse()
        Indicates if the satellite was used in the calculation of the location.
        Returns:
        true if the satellite was used in the calculation of the location, false otherwise
        Since:
        100.10.0
      • getSystem

        public NmeaGnssSystem getSystem()
        Gets the GNSS (Global Navigation Satellite System) system. Included in NMEA specification as of v4.11.
        Returns:
        the GNSS (Global Navigation Satellite System) system
        Since:
        100.10.0