Package org.orekit.gnss
Interface ObservationType
-
- All Known Implementing Classes:
PredefinedObservationType
public interface ObservationTypeObservation Types for GNSS measurements.- Since:
- 13.0
- Author:
- Luc Maisonobe
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MeasurementTypegetMeasurementType()Get the measurement type.StringgetName()Get the name of the observation type.GnssSignalgetSignal(SatelliteSystem system)Get the signal for a specified satellite system.SignalCodegetSignalCode()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
-
-