Class OneWayGNSSPhaseBuilder
- java.lang.Object
-
- org.orekit.estimation.measurements.generation.AbstractMeasurementBuilder<OneWayGNSSPhase>
-
- org.orekit.estimation.measurements.generation.OneWayGNSSPhaseBuilder
-
- All Implemented Interfaces:
MeasurementBuilder<OneWayGNSSPhase>
public class OneWayGNSSPhaseBuilder extends AbstractMeasurementBuilder<OneWayGNSSPhase>
Builder forOneWayGNSSPhase
measurements.- Since:
- 12.0
- Author:
- Luc Maisonobe
-
-
Constructor Summary
Constructors Constructor Description OneWayGNSSPhaseBuilder(CorrelatedRandomVectorGenerator noiseSource, ObservableSatellite local, ObservableSatellite remote, ToDoubleFunction<AbsoluteDate> remoteClockModel, double wavelength, double sigma, double baseWeight)
OneWayGNSSPhaseBuilder(CorrelatedRandomVectorGenerator noiseSource, ObservableSatellite local, ObservableSatellite remote, QuadraticClockModel remoteClockModel, double wavelength, double sigma, double baseWeight, AmbiguityCache cache)
Simple constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description OneWayGNSSPhase
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
-
OneWayGNSSPhaseBuilder
@Deprecated public OneWayGNSSPhaseBuilder(CorrelatedRandomVectorGenerator noiseSource, ObservableSatellite local, ObservableSatellite remote, ToDoubleFunction<AbsoluteDate> remoteClockModel, double wavelength, double sigma, double baseWeight)
Deprecated.Simple constructor.- Parameters:
noiseSource
- noise source, may be null for generating perfect measurementslocal
- satellite which receives the signal and performs the measurementremote
- satellite which simply emits the signalremoteClockModel
- clock model of the remote satellite that provides clock offsetwavelength
- phase observed value wavelength (m)sigma
- theoretical standard deviationbaseWeight
- base weight
-
OneWayGNSSPhaseBuilder
public OneWayGNSSPhaseBuilder(CorrelatedRandomVectorGenerator noiseSource, ObservableSatellite local, ObservableSatellite remote, QuadraticClockModel remoteClockModel, double wavelength, double sigma, double baseWeight, AmbiguityCache cache)
Simple constructor.- Parameters:
noiseSource
- noise source, may be null for generating perfect measurementslocal
- satellite which receives the signal and performs the measurementremote
- satellite which simply emits the signalremoteClockModel
- clock model of the remote satellite that provides clock offsetwavelength
- phase observed value wavelength (m)sigma
- theoretical standard deviationbaseWeight
- base weightcache
- from which ambiguity drive should come- Since:
- 12.1
-
-
Method Detail
-
build
public OneWayGNSSPhase build(AbsoluteDate date, Map<ObservableSatellite,OrekitStepInterpolator> interpolators)
Generate a single measurement.- Parameters:
date
- measurement dateinterpolators
- interpolators relevant for this builder- Returns:
- generated measurement
-
-