public class Observation extends Object
It is not an Orekit object yet. It is a simple container holding:
WARNING. The same class handles many different measurements
types (range, Doppler, clocks, pressure, power to noise ratio…).
Since Orekit 11.0, it uses only SI units, so angular measurements
have already been converted in radians, range has been converted
in meters (according to the range units
, Doppler has been converted to meters per second.
Up to Orekit 10.x, the measurements were raw measurements as read
in the TDM.
Constructor and Description |
---|
Observation(ObservationType type,
AbsoluteDate epoch,
double measurement)
Simple constructor.
|
Modifier and Type | Method and Description |
---|---|
AbsoluteDate |
getEpoch()
Getter for the epoch.
|
double |
getMeasurement()
Getter for the measurement.
|
ObservationType |
getType()
Get the type of observation.
|
public Observation(ObservationType type, AbsoluteDate epoch, double measurement)
type
- type of the observationepoch
- the timetagmeasurement
- the measurement (in SI units, converted from TDM)public ObservationType getType()
public AbsoluteDate getEpoch()
public double getMeasurement()
Copyright © 2002-2022 CS GROUP. All rights reserved.