接口 GBSSentence
- 所有超级接口:
Sentence,TimeSentence
GNSS satellite fault detection (RAIM support).
Example:
$GPGBS,215643.00,0.1190,-0.0872,-0.3320,13,0.9009,-0.8342,2.3281*46
- 作者:
- Kimmo Tuukkanen
-
字段概要
从接口继承的字段 net.sf.marineapi.nmea.sentence.Sentence
ALTERNATIVE_BEGIN_CHAR, BEGIN_CHAR, CHECKSUM_DELIMITER, FIELD_DELIMITER, MAX_LENGTH, TERMINATOR -
方法概要
修饰符和类型方法说明doubleReturns the expected error in altitude.doubleReturns the standard deviation of bias estimate.doubleReturns the estimate of bias on the most likely failed satellite.doubleReturns the expected error in latitude.doubleReturns the expected error in longitude.doubleReturns the probability of missed detection of most likely failed satellite.Returns the ID of most likely failed satellite.voidsetAltitudeError(double err) Sets the expected error in altitude.voidsetDeviation(double deviation) Sets the standard deviation of bias estimate.voidsetEstimate(double estimate) Sets the estimate of bias on the most likely failed satellite.voidsetLatitudeError(double err) Sets the expected error in latitude.voidsetLongitudeError(double err) Sets the expected error in longitude.voidsetProbability(double probability) Sets the probability of missed detection of most likely failed satellite.voidsetSatelliteId(String id) Sets the ID of most likely failed satellite.从接口继承的方法 net.sf.marineapi.nmea.sentence.Sentence
getBeginChar, getFieldCount, getSentenceId, getTalkerId, isAISSentence, isProprietary, isValid, reset, setBeginChar, setTalkerId, toSentence, toSentence, toString从接口继承的方法 net.sf.marineapi.nmea.sentence.TimeSentence
getTime, setTime
-
方法详细资料
-
getLatitudeError
double getLatitudeError()Returns the expected error in latitude.- 返回:
- Error in meters, due to bias, with noise = 0.
-
setLatitudeError
void setLatitudeError(double err) Sets the expected error in latitude.- 参数:
err- Error in meters, due to bias, with noise = 0
-
getLongitudeError
double getLongitudeError()Returns the expected error in longitude.- 返回:
- Error in meters, due to bias, with noise = 0.
-
setLongitudeError
void setLongitudeError(double err) Sets the expected error in longitude.- 参数:
err- Error in meters, due to bias, with noise = 0
-
getAltitudeError
double getAltitudeError()Returns the expected error in altitude.- 返回:
- Error in meters, due to bias, with noise = 0.
-
setAltitudeError
void setAltitudeError(double err) Sets the expected error in altitude.- 参数:
err- Error in meters, due to bias, with noise = 0
-
getSatelliteId
String getSatelliteId()Returns the ID of most likely failed satellite.- 返回:
- Satellite ID number
-
setSatelliteId
Sets the ID of most likely failed satellite.- 参数:
id- Satellite ID to set
-
getProbability
double getProbability()Returns the probability of missed detection of most likely failed satellite.- 返回:
- Probability of missed detection
-
setProbability
void setProbability(double probability) Sets the probability of missed detection of most likely failed satellite.- 参数:
probability- Probability value
-
getEstimate
double getEstimate()Returns the estimate of bias on the most likely failed satellite.- 返回:
- Bias estimate, in meters.
-
setEstimate
void setEstimate(double estimate) Sets the estimate of bias on the most likely failed satellite.- 参数:
estimate- Bias estimate to set, in meters.
-
getDeviation
double getDeviation()Returns the standard deviation of bias estimate.- 返回:
- Standard deviation of estimate
-
setDeviation
void setDeviation(double deviation) Sets the standard deviation of bias estimate.- 参数:
deviation- Standard deviation value to set.
-