Class Position
java.lang.Object
org.orekit.estimation.measurements.AbstractMeasurement<Position>
org.orekit.estimation.measurements.PseudoMeasurement<Position>
org.orekit.estimation.measurements.Position
- All Implemented Interfaces:
Comparable<ComparableMeasurement>,ComparableMeasurement,ObservedMeasurement<Position>,TimeStamped,ParameterDriversProvider
Class modeling a position only measurement.
For position-velocity measurement see PV.
- Since:
- 9.3
- Author:
- Luc Maisonobe
- See Also:
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionPosition(AbsoluteDate date, Vector3D position, double[][] covarianceMatrix, double baseWeight, ObservableSatellite satellite) Constructor with full covariance matrix and all inputs.Position(AbsoluteDate date, Vector3D position, double[] sigmaPosition, double baseWeight, ObservableSatellite satellite) Constructor with one vector for the standard deviation.Position(AbsoluteDate date, Vector3D position, double sigmaPosition, double baseWeight, ObservableSatellite satellite) Constructor with one double for the standard deviation.Position(AbsoluteDate date, Vector3D position, MeasurementQuality measurementQuality, ObservableSatellite satellite) Constructor with full covariance matrix and all inputs. -
Method Summary
Modifier and TypeMethodDescriptionGet the position.protected EstimatedMeasurement<Position> theoreticalEvaluation(int iteration, int evaluation, SpacecraftState[] states) Estimate the theoretical value.protected EstimatedMeasurementBase<Position> theoreticalEvaluationWithoutDerivatives(int iteration, int evaluation, SpacecraftState[] states) Estimate the theoretical value without derivatives.Methods inherited from class org.orekit.estimation.measurements.PseudoMeasurement
getCorrelationCoefficientsMatrix, getCovarianceMatrixMethods inherited from class org.orekit.estimation.measurements.AbstractMeasurement
addModifier, addParameterDriver, addParametersDrivers, estimate, estimateWithoutDerivatives, getCoordinates, getDate, getMeasurementQuality, getModifiers, getObservedValue, getParameterIndices, getParametersDrivers, getSatellites, isEnabled, setEnabled, setObservedValueMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.orekit.estimation.measurements.ComparableMeasurement
compareToMethods inherited from interface org.orekit.estimation.measurements.ObservedMeasurement
estimateWithoutDerivatives, getBaseWeight, getDimension, getMeasurementType, getTheoreticalStandardDeviationMethods inherited from interface org.orekit.utils.ParameterDriversProvider
getNbParametersDriversValue, getParameterDriver, getParameters, getParameters, getParameters, getParameters, getParametersAllValues, getParametersAllValues, isSupportedMethods inherited from interface org.orekit.time.TimeStamped
durationFrom
-
Field Details
-
MEASUREMENT_TYPE
Type of the measurement.- See Also:
-
-
Constructor Details
-
Position
public Position(AbsoluteDate date, Vector3D position, double sigmaPosition, double baseWeight, ObservableSatellite satellite) Constructor with one double for the standard deviation.The double is the position's standard deviation, common to the 3 position's components.
The measurement must be in the orbit propagation frame.
- Parameters:
date- date of the measurementposition- positionsigmaPosition- theoretical standard deviation on position componentsbaseWeight- base weightsatellite- satellite related to this measurement- Since:
- 9.3
-
Position
public Position(AbsoluteDate date, Vector3D position, double[] sigmaPosition, double baseWeight, ObservableSatellite satellite) Constructor with one vector for the standard deviation.The 3-sized vector represents the square root of the diagonal elements of the covariance matrix.
The measurement must be in the orbit propagation frame.
- Parameters:
date- date of the measurementposition- positionsigmaPosition- 3-sized vector of the standard deviations of the positionbaseWeight- base weightsatellite- satellite related to this measurement- Since:
- 9.3
-
Position
public Position(AbsoluteDate date, Vector3D position, double[][] covarianceMatrix, double baseWeight, ObservableSatellite satellite) Constructor with full covariance matrix and all inputs.The fact that the covariance matrix is symmetric and positive definite is not checked.
The measurement must be in the orbit propagation frame.
- Parameters:
date- date of the measurementposition- positioncovarianceMatrix- 3x3 covariance matrix of the position only measurementbaseWeight- base weightsatellite- satellite related to this measurement- Since:
- 9.3
-
Position
public Position(AbsoluteDate date, Vector3D position, MeasurementQuality measurementQuality, ObservableSatellite satellite) Constructor with full covariance matrix and all inputs.The fact that the covariance matrix is symmetric and positive definite is not checked.
The measurement must be in the orbit propagation frame.
- Parameters:
date- date of the measurementposition- positionmeasurementQuality- measurement quality datasatellite- satellite related to this measurement- Since:
- 14.0
-
-
Method Details
-
getPosition
Get the position.- Returns:
- position
-
theoreticalEvaluationWithoutDerivatives
protected EstimatedMeasurementBase<Position> theoreticalEvaluationWithoutDerivatives(int iteration, int evaluation, SpacecraftState[] states) Estimate the theoretical value without derivatives. The default implementation uses the computation with derivatives and ought to be overwritten for performance.The theoretical value does not have any modifiers applied.
- Overrides:
theoreticalEvaluationWithoutDerivativesin classAbstractMeasurement<Position>- Parameters:
iteration- iteration numberevaluation- evaluation numberstates- orbital states at measurement date- Returns:
- theoretical value
- See Also:
-
theoreticalEvaluation
protected EstimatedMeasurement<Position> theoreticalEvaluation(int iteration, int evaluation, SpacecraftState[] states) Estimate the theoretical value.The theoretical value does not have any modifiers applied.
- Specified by:
theoreticalEvaluationin classAbstractMeasurement<Position>- Parameters:
iteration- iteration numberevaluation- evaluation numberstates- orbital states at measurement date- Returns:
- theoretical value
- See Also:
-