Class PhaseBuilder
- java.lang.Object
-
- org.orekit.estimation.measurements.generation.AbstractMeasurementBuilder<Phase>
-
- org.orekit.estimation.measurements.gnss.PhaseBuilder
-
- All Implemented Interfaces:
MeasurementBuilder<Phase>
public class PhaseBuilder extends AbstractMeasurementBuilder<Phase>
Builder forPhase
measurements.- Since:
- 10.1
- Author:
- Luc Maisonobe
-
-
Constructor Summary
Constructors Constructor Description PhaseBuilder(CorrelatedRandomVectorGenerator noiseSource, GroundStation station, double wavelength, double sigma, double baseWeight, ObservableSatellite satellite)
Deprecated.PhaseBuilder(CorrelatedRandomVectorGenerator noiseSource, GroundStation station, double wavelength, double sigma, double baseWeight, ObservableSatellite satellite, AmbiguityCache cache)
Simple constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Phase
build(AbsoluteDate date, Map<ObservableSatellite,OrekitStepInterpolator> interpolators)
Generate a single measurement.-
Methods inherited from class org.orekit.estimation.measurements.generation.AbstractMeasurementBuilder
addModifier, getBaseWeight, getEnd, getModifiers, getNoise, getSatellites, getStart, getTheoreticalStandardDeviation, init
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.orekit.estimation.measurements.generation.MeasurementBuilder
build
-
-
-
-
Constructor Detail
-
PhaseBuilder
@Deprecated public PhaseBuilder(CorrelatedRandomVectorGenerator noiseSource, GroundStation station, double wavelength, double sigma, double baseWeight, ObservableSatellite satellite)
Deprecated.Simple constructor.- Parameters:
noiseSource
- noise source, may be null for generating perfect measurementsstation
- ground station from which measurement is performedwavelength
- phase observed value wavelength (m)sigma
- theoretical standard deviationbaseWeight
- base weightsatellite
- satellite related to this builder
-
PhaseBuilder
public PhaseBuilder(CorrelatedRandomVectorGenerator noiseSource, GroundStation station, double wavelength, double sigma, double baseWeight, ObservableSatellite satellite, AmbiguityCache cache)
Simple constructor.- Parameters:
noiseSource
- noise source, may be null for generating perfect measurementsstation
- ground station from which measurement is performedwavelength
- phase observed value wavelength (m)sigma
- theoretical standard deviationbaseWeight
- base weightsatellite
- satellite related to this buildercache
- from which ambiguity drive should come- Since:
- 12.1
-
-
Method Detail
-
build
public Phase build(AbsoluteDate date, Map<ObservableSatellite,OrekitStepInterpolator> interpolators)
Generate a single measurement.- Parameters:
date
- measurement dateinterpolators
- interpolators relevant for this builder- Returns:
- generated measurement
-
-