Package org.orekit.files.ccsds
Class TDMFile.Observation
- java.lang.Object
-
- org.orekit.files.ccsds.TDMFile.Observation
-
- Enclosing class:
- TDMFile
public static class TDMFile.Observation extends Object
The Observation class contains the data from an observation line.It is not an Orekit object yet.
It is a simple container holding:
- a keyword, the type of the observation;
- a timetag, the epoch of the observation;
- a measurement, the value of the observation.
- Author:
- mjournot
- See Also:
Keyword
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AbsoluteDate
getEpoch()
Getter for the epoch.String
getKeyword()
Getter for the keyword.double
getMeasurement()
Getter for the measurement.void
setEpoch(AbsoluteDate epoch)
Setter for the epoch.void
setKeyword(String keyword)
Setter for the keyword.void
setMeasurement(double measurement)
Setter for the measurement.
-
-
-
Method Detail
-
getKeyword
public String getKeyword()
Getter for the keyword.- Returns:
- the keyword
-
setKeyword
public void setKeyword(String keyword)
Setter for the keyword.- Parameters:
keyword
- the keyword to set
-
getEpoch
public AbsoluteDate getEpoch()
Getter for the epoch.- Returns:
- the epoch
-
setEpoch
public void setEpoch(AbsoluteDate epoch)
Setter for the epoch.- Parameters:
epoch
- the epoch to set
-
getMeasurement
public double getMeasurement()
Getter for the measurement.- Returns:
- the measurement
-
setMeasurement
public void setMeasurement(double measurement)
Setter for the measurement.- Parameters:
measurement
- the measurement to set
-
-