Interface MeasurementBuilder<T extends ObservedMeasurement<T>>
-
- Type Parameters:
T
- the type of the measurement
- All Known Implementing Classes:
AbstractMeasurementBuilder
,AngularAzElBuilder
,AngularRaDecBuilder
,InterSatellitesRangeBuilder
,PositionBuilder
,PVBuilder
,RangeBuilder
,RangeRateBuilder
,TurnAroundRangeBuilder
public interface MeasurementBuilder<T extends ObservedMeasurement<T>>
Interface for generating individualmeasurements
.- Since:
- 9.3
- Author:
- Luc Maisonobe
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addModifier(EstimationModifier<T> modifier)
Add a modifier.T
build(SpacecraftState[] states)
Generate a single measurement.List<EstimationModifier<T>>
getModifiers()
Get the modifiers that apply to a measurement.void
init(AbsoluteDate start, AbsoluteDate end)
Initialize builder at the start of a measurements generation.
-
-
-
Method Detail
-
init
void init(AbsoluteDate start, AbsoluteDate end)
Initialize builder at the start of a measurements generation.This method is called once at the start of the measurements generation. It may be used by the builder to initialize some internal data if needed, typically setting up parameters reference dates.
- Parameters:
start
- start of the measurements time spanend
- end of the measurements time span
-
addModifier
void addModifier(EstimationModifier<T> modifier)
Add a modifier.- Parameters:
modifier
- modifier to add
-
getModifiers
List<EstimationModifier<T>> getModifiers()
Get the modifiers that apply to a measurement.- Returns:
- modifiers that apply to a measurement
- See Also:
addModifier(EstimationModifier)
-
build
T build(SpacecraftState[] states)
Generate a single measurement.- Parameters:
states
- spacecraft states- Returns:
- generated measurement
-
-