Package org.orekit.files.ilrs
Class CRD
- java.lang.Object
-
- org.orekit.files.ilrs.CRD
-
public class CRD extends Object
This class stores all the information of the Consolidated laser ranging Data Format (CRD) parsed by CRDParser. It contains the header and a list of data records.- Since:
- 10.3
- Author:
- Bryan Cazabonne
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
CRD.AnglesMeasurement
Pointing angles record.static class
CRD.CRDDataBlock
Data block containing a set of data contain in the CRD file.static class
CRD.Meteo
Meteorological data.static class
CRD.MeteorologicalMeasurement
This data record contains a minimal set of meteorological data.static class
CRD.RangeMeasurement
Range record.
-
Constructor Summary
Constructors Constructor Description CRD()
Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addDataBlock(CRD.CRDDataBlock dataBlock)
Add a data block to the current list of data blocks.List<String>
getComments()
Get the comments contained in the file.List<CRD.CRDDataBlock>
getDataBlocks()
Get the data blocks contain in the file.
-
-
-
Method Detail
-
addDataBlock
public void addDataBlock(CRD.CRDDataBlock dataBlock)
Add a data block to the current list of data blocks.- Parameters:
dataBlock
- data block to add
-
getComments
public List<String> getComments()
Get the comments contained in the file.- Returns:
- the comments contained in the file
-
getDataBlocks
public List<CRD.CRDDataBlock> getDataBlocks()
Get the data blocks contain in the file.- Returns:
- the data blocks contain in the file
-
-