Package org.orekit.files.ilrs
Class CRDConfiguration.TransponderConfiguration
- java.lang.Object
-
- org.orekit.files.ilrs.CRDConfiguration.BaseConfiguration
-
- org.orekit.files.ilrs.CRDConfiguration.TransponderConfiguration
-
- Enclosing class:
- CRDConfiguration
public static class CRDConfiguration.TransponderConfiguration extends CRDConfiguration.BaseConfiguration
Container for transponder configuration record.
-
-
Constructor Summary
Constructors Constructor Description TransponderConfiguration()
Empty constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getSpacecraftClockAndDriftApplied()
Get the spacecraft clock offset and drift applied indicator.int
getStationClockAndDriftApplied()
Get the station clock offset and drift applied indicator.double
getStationOscDrift()
Get the estimated station oscillator drift in parts in 10¹⁵.double
getStationUTCOffset()
Get the estimated station UTC offset.double
getTranspClkRefTime()
Get the transponder clock reference time.String
getTransponderId()
Get the transponder configuration ID.double
getTranspOscDrift()
Get the estimated transponder oscillator drift in parts in 10¹⁵.double
getTranspUTCOffset()
Get the estimated transponder UTC offset.boolean
isSpacecraftTimeSimplified()
Get the spacecraft time simplified flag.void
setIsSpacecraftTimeSimplified(boolean isSpacecraftTimeSimplified)
Set the spacecraft time simplified flag.void
setSpacecraftClockAndDriftApplied(int spacecraftClockAndDriftApplied)
Set the spacecraft clock offset and drift applied indicator.void
setStationClockAndDriftApplied(int stationClockAndDriftApplied)
Set the station clock offset and drift applied indicator.void
setStationOscDrift(double stationOscDrift)
Set the estimated station oscillator drift in parts in 10¹⁵.void
setStationUTCOffset(double stationUTCOffset)
Set the estimated station UTC offset.void
setTranspClkRefTime(double transpClkRefTime)
Set the transponder clock reference time.void
setTransponderId(String transponderId)
Set the transponder configuration ID.void
setTranspOscDrift(double transpOscDrift)
Set the estimated transponder oscillator drift in parts in 10¹⁵.void
setTranspUTCOffset(double transpUTCOffset)
Set the estimated transponder UTC offset.String
toCrdString()
Get a string representation of the instance in the CRD format.String
toString()
-
Methods inherited from class org.orekit.files.ilrs.CRDConfiguration.BaseConfiguration
equals, getConfigurationId, hashCode, setConfigurationId
-
-
-
-
Method Detail
-
getTransponderId
public String getTransponderId()
Get the transponder configuration ID.- Returns:
- the transponder configuration ID
-
setTransponderId
public void setTransponderId(String transponderId)
Set the transponder configuration ID.- Parameters:
transponderId
- the transponder configuration ID to set
-
getStationUTCOffset
public double getStationUTCOffset()
Get the estimated station UTC offset.- Returns:
- the estimated station UTC offset in seconds
-
setStationUTCOffset
public void setStationUTCOffset(double stationUTCOffset)
Set the estimated station UTC offset.- Parameters:
stationUTCOffset
- the estimated station UTC offset to set in seconds
-
getStationOscDrift
public double getStationOscDrift()
Get the estimated station oscillator drift in parts in 10¹⁵.- Returns:
- the station oscillator drift
-
setStationOscDrift
public void setStationOscDrift(double stationOscDrift)
Set the estimated station oscillator drift in parts in 10¹⁵.- Parameters:
stationOscDrift
- the station oscillator drift to set
-
getTranspUTCOffset
public double getTranspUTCOffset()
Get the estimated transponder UTC offset.- Returns:
- the estimated transponder UTC offset in seconds
-
setTranspUTCOffset
public void setTranspUTCOffset(double transpUTCOffset)
Set the estimated transponder UTC offset.- Parameters:
transpUTCOffset
- the estimated transponder UTC offset to set in seconds
-
getTranspOscDrift
public double getTranspOscDrift()
Get the estimated transponder oscillator drift in parts in 10¹⁵.- Returns:
- the estimated transponder oscillator drift
-
setTranspOscDrift
public void setTranspOscDrift(double transpOscDrift)
Set the estimated transponder oscillator drift in parts in 10¹⁵.- Parameters:
transpOscDrift
- the estimated transponder oscillator drift to set
-
getTranspClkRefTime
public double getTranspClkRefTime()
Get the transponder clock reference time.- Returns:
- the transponder clock reference time
-
setTranspClkRefTime
public void setTranspClkRefTime(double transpClkRefTime)
Set the transponder clock reference time.- Parameters:
transpClkRefTime
- the transponder clock reference time to set
-
getStationClockAndDriftApplied
public int getStationClockAndDriftApplied()
Get the station clock offset and drift applied indicator.- Returns:
- the station clock offset and drift applied indicator
-
setStationClockAndDriftApplied
public void setStationClockAndDriftApplied(int stationClockAndDriftApplied)
Set the station clock offset and drift applied indicator.- Parameters:
stationClockAndDriftApplied
- the indicator to set
-
getSpacecraftClockAndDriftApplied
public int getSpacecraftClockAndDriftApplied()
Get the spacecraft clock offset and drift applied indicator.- Returns:
- the spacecraft clock offset and drift applied indicator
-
setSpacecraftClockAndDriftApplied
public void setSpacecraftClockAndDriftApplied(int spacecraftClockAndDriftApplied)
Set the spacecraft clock offset and drift applied indicator.- Parameters:
spacecraftClockAndDriftApplied
- the indicator to set
-
isSpacecraftTimeSimplified
public boolean isSpacecraftTimeSimplified()
Get the spacecraft time simplified flag.- Returns:
- true if spacecraft time is simplified
-
setIsSpacecraftTimeSimplified
public void setIsSpacecraftTimeSimplified(boolean isSpacecraftTimeSimplified)
Set the spacecraft time simplified flag.- Parameters:
isSpacecraftTimeSimplified
- true if spacecraft time is simplified
-
toCrdString
public String toCrdString()
Get a string representation of the instance in the CRD format.- Specified by:
toCrdString
in classCRDConfiguration.BaseConfiguration
- Returns:
- a string representation of the instance, in the CRD format.
-
-