Package org.orekit.gnss
Interface ObservationType
-
- All Known Implementing Classes:
PredefinedObservationType
public interface ObservationType
Observation Types for GNSS measurements.- Since:
- 13.0
- Author:
- Luc Maisonobe
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MeasurementType
getMeasurementType()
Get the measurement type.String
getName()
Get the name of the observation type.GnssSignal
getSignal(SatelliteSystem system)
Get the signal for a specified satellite system.SignalCode
getSignalCode()
Get the signal code.
-
-
-
Method Detail
-
getName
String getName()
Get the name of the observation type.- Returns:
- name of the observation type
-
getMeasurementType
MeasurementType getMeasurementType()
Get the measurement type.- Returns:
- measurement type
-
getSignalCode
SignalCode getSignalCode()
Get the signal code.- Returns:
- signal code
-
getSignal
GnssSignal getSignal(SatelliteSystem system)
Get the signal for a specified satellite system.- Parameters:
system
- satellite system- Returns:
- signal for the satellite system, or null if satellite system not compatible
-
-