Class OneWayGNSSPhaseAmbiguityModifier
- java.lang.Object
-
- org.orekit.estimation.measurements.modifiers.AbstractAmbiguityModifier
-
- org.orekit.estimation.measurements.modifiers.OneWayGNSSPhaseAmbiguityModifier
-
- All Implemented Interfaces:
EstimationModifier<OneWayGNSSPhase>
public class OneWayGNSSPhaseAmbiguityModifier extends AbstractAmbiguityModifier implements EstimationModifier<OneWayGNSSPhase>
Class modifying theoretical one-way GNSS phase measurement with ambiguity.- Since:
- 10.3
- Author:
- Bryan Cazabonne
-
-
Constructor Summary
Constructors Constructor Description OneWayGNSSPhaseAmbiguityModifier(int key, double ambiguity)
Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<ParameterDriver>
getParametersDrivers()
Get the drivers for this modifier parameters.void
modify(EstimatedMeasurement<OneWayGNSSPhase> estimated)
Apply a modifier to an estimated measurement.-
Methods inherited from class org.orekit.estimation.measurements.modifiers.AbstractAmbiguityModifier
doModify, getDrivers
-
-
-
-
Constructor Detail
-
OneWayGNSSPhaseAmbiguityModifier
public OneWayGNSSPhaseAmbiguityModifier(int key, double ambiguity)
Constructor.It is expected that many different ambiguities will be used at the same time during an orbit determination, therefore they are keyed using a simple integer. All ambiguities using the same key will be enforced to be equal. It is the responsibility of the caller to use a proper counter to manage the ambiguities properly.
- Parameters:
key
- key to identify the ambiguityambiguity
- initial value of ambiguity
-
-
Method Detail
-
getParametersDrivers
public List<ParameterDriver> getParametersDrivers()
Get the drivers for this modifier parameters.- Specified by:
getParametersDrivers
in interfaceEstimationModifier<OneWayGNSSPhase>
- Returns:
- drivers for this modifier parameters
-
modify
public void modify(EstimatedMeasurement<OneWayGNSSPhase> estimated)
Apply a modifier to an estimated measurement.- Specified by:
modify
in interfaceEstimationModifier<OneWayGNSSPhase>
- Parameters:
estimated
- estimated measurement to modify
-
-