Package org.orekit.files.ilrs
Class CRD.CRDDataBlock
- java.lang.Object
-
- org.orekit.files.ilrs.CRD.CRDDataBlock
-
-
Constructor Summary
Constructors Constructor Description CRDDataBlock()
Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addAnglesData(CRD.AnglesMeasurement angles)
Add an entry to the list of angles data.void
addMeteoData(CRD.MeteorologicalMeasurement meteorologicalMeasurement)
Add an entry to the list of meteorological data.void
addRangeData(CRD.RangeMeasurement range)
Add an entry to the list of range data.List<CRD.AnglesMeasurement>
getAnglesData()
Get the angles data for the data block.CRDConfiguration
getConfigurationRecords()
Get the system configuration records.CRDHeader
getHeader()
Get the header of the current data block.CRD.Meteo
getMeteoData()
Get the meteorological data for the data block.List<CRD.RangeMeasurement>
getRangeData()
Get the range data for the data block.void
setConfigurationRecords(CRDConfiguration configurationRecords)
Set the configuration records for the current data block.void
setHeader(CRDHeader header)
Set the header for the current data block.
-
-
-
Method Detail
-
getHeader
public CRDHeader getHeader()
Get the header of the current data block.- Returns:
- the header of the current data block
-
setHeader
public void setHeader(CRDHeader header)
Set the header for the current data block.- Parameters:
header
- the header to set
-
getConfigurationRecords
public CRDConfiguration getConfigurationRecords()
Get the system configuration records.- Returns:
- the system configuration records
-
setConfigurationRecords
public void setConfigurationRecords(CRDConfiguration configurationRecords)
Set the configuration records for the current data block.- Parameters:
configurationRecords
- the configuration records to set
-
addRangeData
public void addRangeData(CRD.RangeMeasurement range)
Add an entry to the list of range data.- Parameters:
range
- entry to add
-
addMeteoData
public void addMeteoData(CRD.MeteorologicalMeasurement meteorologicalMeasurement)
Add an entry to the list of meteorological data.- Parameters:
meteorologicalMeasurement
- entry to add
-
addAnglesData
public void addAnglesData(CRD.AnglesMeasurement angles)
Add an entry to the list of angles data.- Parameters:
angles
- entry to add
-
getRangeData
public List<CRD.RangeMeasurement> getRangeData()
Get the range data for the data block.- Returns:
- an unmodifiable list of range data
-
getAnglesData
public List<CRD.AnglesMeasurement> getAnglesData()
Get the angles data for the data block.- Returns:
- an unmodifiable list of angles data
-
getMeteoData
public CRD.Meteo getMeteoData()
Get the meteorological data for the data block.- Returns:
- an unmodifiable list of meteorological data
-
-