Class IonosphereBDGIMMessage
java.lang.Object
org.orekit.files.rinex.navigation.TypeSvMessage
org.orekit.files.rinex.navigation.IonosphereBaseMessage
org.orekit.files.rinex.navigation.IonosphereBDGIMMessage
- All Implemented Interfaces:
NavigationMessage,TimeStamped
Container for data contained in a ionosphere BDGIM message.
- Since:
- 12.0
- Author:
- Luc Maisonobe
-
Field Summary
Fields inherited from class org.orekit.files.rinex.navigation.IonosphereBaseMessage
S_PER_SC_N0, S_PER_SC_N1, S_PER_SC_N2, S_PER_SC_N3, SC -
Constructor Summary
ConstructorsConstructorDescriptionIonosphereBDGIMMessage(SatelliteSystem system, int prn, String navigationMessageType, String subType) Simple constructor. -
Method Summary
Methods inherited from class org.orekit.files.rinex.navigation.IonosphereBaseMessage
getDate, getTransmitTime, setTransmitTimeMethods inherited from class org.orekit.files.rinex.navigation.TypeSvMessage
getIdentifier, getNavigationMessageSubType, getNavigationMessageType, getPrn, getSystemMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.orekit.time.TimeStamped
durationFrom
-
Constructor Details
-
IonosphereBDGIMMessage
public IonosphereBDGIMMessage(SatelliteSystem system, int prn, String navigationMessageType, String subType) Simple constructor.- Parameters:
system- satellite systemprn- satellite numbernavigationMessageType- navigation message typesubType- message subtype
-
-
Method Details
-
getAlpha
public double[] getAlpha()Get the α coefficients.Beware Orekit uses SI units here. In order to retrieve the more traditional TECu, use
Unit.TOTAL_ELECTRON_CONTENT_UNIT.fromSI(msg.getAlpha()[i])- Returns:
- α coefficients (m⁻²)
- See Also:
-
setAlphaI
public void setAlphaI(int i, double alphaI) Set one α coefficient.Beware Orekit uses SI units here. In order to use the more traditional TECu, use
msg.setAlpha(i, Unit.TOTAL_ELECTRON_CONTENT_UNIT.toSI(ai))- Parameters:
i- index of the coefficientalphaI- α coefficient to set (m⁻²)- See Also:
-