接口 XTESentence
- 所有超级接口:
Sentence
Measured cross-track error when navigating towards waypoint.
- 作者:
- Kimmo Tuukkanen
-
字段概要
从接口继承的字段 net.sf.marineapi.nmea.sentence.Sentence
ALTERNATIVE_BEGIN_CHAR, BEGIN_CHAR, CHECKSUM_DELIMITER, FIELD_DELIMITER, MAX_LENGTH, TERMINATOR -
方法概要
修饰符和类型方法说明Returns the Loran-C cycle lock status, not used for GPS.doubleReturns the cross-track error magnitude/distance.getMode()Returns the FAA mode.Returns the signal/fix status.Returns the direction in which to steer in order to get back on route.voidsetCycleLockStatus(DataStatus status) Sets the Loran-C cycle lock status.voidsetMagnitude(double distance) Sets the cross-track error magnitude/distance.voidSets the FAA mode.voidsetStatus(DataStatus status) Sets the signal/fix status.voidsetSteerTo(Direction direction) Set direction in which to steer in order to get back on route.从接口继承的方法 net.sf.marineapi.nmea.sentence.Sentence
getBeginChar, getFieldCount, getSentenceId, getTalkerId, isAISSentence, isProprietary, isValid, reset, setBeginChar, setTalkerId, toSentence, toSentence, toString
-
方法详细资料
-
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.LEFTorDirection.RIGHT
-
setCycleLockStatus
Sets the Loran-C cycle lock status. Not used for GPS, may be omitted orDataStatus.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
Sets the FAA mode. Optional, NMEA 2.3 and later.- 参数:
mode- FaaMode to set
-
setStatus
Sets the signal/fix status.- 参数:
status- DataStatus to set
-
setSteerTo
Set direction in which to steer in order to get back on route.- 参数:
direction-Direction.RIGHTorDirection.LEFT
-