Class QZSSNavigationMessage
- java.lang.Object
-
- org.orekit.propagation.analytical.gnss.data.CommonGnssData
-
- org.orekit.propagation.analytical.gnss.data.AbstractNavigationMessage
-
- org.orekit.propagation.analytical.gnss.data.QZSSNavigationMessage
-
- All Implemented Interfaces:
GNSSOrbitalElements
,TimeStamped
public class QZSSNavigationMessage extends AbstractNavigationMessage implements GNSSOrbitalElements
Container for data contained in a QZSS navigation message.- Since:
- 11.0
- Author:
- Bryan Cazabonne
-
-
Constructor Summary
Constructors Constructor Description QZSSNavigationMessage()
Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getIODC()
Getter for the Issue Of Data Clock (IODC).int
getIODE()
Getter for the Issue Of Data Ephemeris (IODE).double
getSvAccuracy()
Getter for the user SV accuray (meters).double
getSvHealth()
Getter for the satellite health status.double
getTGD()
Getter for the Group Delay Differential (s).void
setIODC(double value)
Setter for the Issue of Data, Clock.void
setIODE(double value)
Setter for the Issue of Data, Ephemeris.void
setSvAccuracy(double svAccuracy)
Setter for the user SV accuracy.void
setSvHealth(double svHealth)
Setter for the satellite health status.void
setTGD(double time)
Setter for the Group Delay Differential (s).-
Methods inherited from class org.orekit.propagation.analytical.gnss.data.AbstractNavigationMessage
getAf2, getCic, getCis, getCrc, getCrs, getCuc, getCus, getEpochToc, getIDot, getMeanMotion, setAf2, setCic, setCis, setCrc, setCrs, setCuc, setCus, setDeltaN, setEpochToc, setIDot, setSqrtA
-
Methods inherited from class org.orekit.propagation.analytical.gnss.data.CommonGnssData
getAf0, getAf1, getAngularVelocity, getCycleDuration, getDate, getE, getI0, getM0, getMu, getOmega0, getOmegaDot, getPa, getPRN, getSma, getTime, getWeek, setAf0, setAf1, setDate, setE, setI0, setM0, setOmega0, setOmegaDot, setPa, setPRN, setSma, setTime, setWeek
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.orekit.propagation.analytical.gnss.data.GNSSOrbitalElements
getAngularVelocity, getCic, getCis, getCrc, getCrs, getCuc, getCus, getCycleDuration, getE, getI0, getIDot, getM0, getMeanMotion, getMu, getOmega0, getOmegaDot, getPa, getPRN, getSma, getTime, getWeek
-
Methods inherited from interface org.orekit.time.TimeStamped
getDate
-
-
-
-
Method Detail
-
getIODE
public int getIODE()
Getter for the Issue Of Data Ephemeris (IODE).- Returns:
- the Issue Of Data Ephemeris (IODE)
-
setIODE
public void setIODE(double value)
Setter for the Issue of Data, Ephemeris.- Parameters:
value
- the IODE to set
-
getIODC
public int getIODC()
Getter for the Issue Of Data Clock (IODC).- Returns:
- the Issue Of Data Clock (IODC)
-
setIODC
public void setIODC(double value)
Setter for the Issue of Data, Clock.- Parameters:
value
- the IODC to set
-
getTGD
public double getTGD()
Getter for the Group Delay Differential (s).- Returns:
- the Group Delay Differential in seconds
-
setTGD
public void setTGD(double time)
Setter for the Group Delay Differential (s).- Parameters:
time
- the group delay differential to set
-
getSvAccuracy
public double getSvAccuracy()
Getter for the user SV accuray (meters).- Returns:
- the user SV accuracy
-
setSvAccuracy
public void setSvAccuracy(double svAccuracy)
Setter for the user SV accuracy.- Parameters:
svAccuracy
- the value to set
-
getSvHealth
public double getSvHealth()
Getter for the satellite health status.- Returns:
- the satellite health status
-
setSvHealth
public void setSvHealth(double svHealth)
Setter for the satellite health status.- Parameters:
svHealth
- the value to set
-
-