接口 XTESentence

所有超级接口:
Sentence

public interface XTESentence extends Sentence
Measured cross-track error when navigating towards waypoint.
作者:
Kimmo Tuukkanen
  • 方法详细资料

    • getCycleLockStatus

      DataStatus getCycleLockStatus()
      Returns the Loran-C cycle lock status, not used for GPS.
      返回:
      DataStatus
    • getMagnitude

      double getMagnitude()
      Returns the cross-track error magnitude/distance.
      返回:
      Cross-track error distance in nautical miles
    • getMode

      FaaMode getMode()
      Returns the FAA mode. Optional, NMEA 2.3 and later.
      返回:
      FaaMode
    • getStatus

      DataStatus getStatus()
      Returns the signal/fix status.
      返回:
      DataStatus
    • getSteerTo

      Direction getSteerTo()
      Returns the direction in which to steer in order to get back on route.
      返回:
      Direction.LEFT or Direction.RIGHT
    • setCycleLockStatus

      void setCycleLockStatus(DataStatus status)
      Sets the Loran-C cycle lock status. Not used for GPS, may be omitted or DataStatus.VOID.
      参数:
      status - DataStatus to set
    • setMagnitude

      void setMagnitude(double distance)
      Sets the cross-track error magnitude/distance.
      参数:
      distance - Cross-track error distance in nautical miles
    • setMode

      void setMode(FaaMode mode)
      Sets the FAA mode. Optional, NMEA 2.3 and later.
      参数:
      mode - FaaMode to set
    • setStatus

      void setStatus(DataStatus status)
      Sets the signal/fix status.
      参数:
      status - DataStatus to set
    • setSteerTo

      void setSteerTo(Direction direction)
      Set direction in which to steer in order to get back on route.
      参数:
      direction - Direction.RIGHT or Direction.LEFT