Uses of Class
com.irurueta.navigation.gnss.GNSSEstimation
Packages that use GNSSEstimation
-
Uses of GNSSEstimation in com.irurueta.navigation.gnss
Fields in com.irurueta.navigation.gnss declared as GNSSEstimationModifier and TypeFieldDescriptionprivate GNSSEstimationGNSSKalmanFilteredEstimator.estimationCurrent estimation containing user ECEF position, user ECEF velocity, clock offset and clock drift.private GNSSEstimationGNSSKalmanState.estimationContains estimation of ECEF position and velocity, and estimated clock offset and drift.Methods in com.irurueta.navigation.gnss that return GNSSEstimationModifier and TypeMethodDescriptionGNSSLeastSquaresPositionAndVelocityEstimator.estimate()Estimates new ECEF user position and velocity as well as clock offset and drift.GNSSKalmanFilteredEstimator.getEstimation()Gets current estimation containing user ECEF position, user ECEF velocity, clock offset and clock drift.GNSSKalmanState.getEstimation()Gets estimation of ECEF position and velocity, and estimated clock offset and drift.Methods in com.irurueta.navigation.gnss with parameters of type GNSSEstimationModifier and TypeMethodDescriptionvoidGNSSEstimation.copyFrom(GNSSEstimation input) Copies data of provided instance into this instance.voidGNSSEstimation.copyTo(GNSSEstimation output) Copies this instance data into provided instance.booleanGNSSEstimation.equals(GNSSEstimation other) Checks if provided instance has exactly the same contents as this instance.booleanGNSSEstimation.equals(GNSSEstimation other, double threshold) Checks if provided instance has contents similar to this instance up to provided threshold value.static voidGNSSKalmanEpochEstimator.estimate(Collection<GNSSMeasurement> measurements, double propagationInterval, GNSSEstimation previousEstimation, com.irurueta.algebra.Matrix previousCovariance, GNSSKalmanConfig config, GNSSEstimation updatedEstimation, com.irurueta.algebra.Matrix updatedCovariance) Estimates the update of Kalman filter state and covariance matrix for a single epoch.static voidGNSSKalmanEpochEstimator.estimate(Collection<GNSSMeasurement> measurements, com.irurueta.units.Time propagationInterval, GNSSEstimation previousEstimation, com.irurueta.algebra.Matrix previousCovariance, GNSSKalmanConfig config, GNSSEstimation updatedEstimation, com.irurueta.algebra.Matrix updatedCovariance) Estimates the update of Kalman filter state and covariance matrix for a single epoch.voidGNSSLeastSquaresPositionAndVelocityEstimator.estimate(GNSSEstimation result) Estimates new ECEF user position and velocity as well as clock offset and drift.booleanGNSSKalmanFilteredEstimator.getEstimation(GNSSEstimation result) Gets current estimation containing user ECEF position, user ECEF velocity, clock offset and clock drift.booleanGNSSKalmanState.getEstimation(GNSSEstimation result) Gets estimation of ECEF position and velocity, and estimated clock offset and drift.static GNSSKalmanStateGNSSKalmanInitializer.initialize(GNSSEstimation estimation, GNSSKalmanConfig config) Initializes GNSS Kalman filter state.static voidGNSSKalmanInitializer.initialize(GNSSEstimation estimation, GNSSKalmanConfig config, GNSSKalmanState result) Initializes GNSS Kalman filter state.voidGNSSKalmanState.setEstimation(GNSSEstimation estimation) Sets estimation of ECEF position and velocity, and estimated clock offset and drift.voidGNSSLeastSquaresPositionAndVelocityEstimator.setPriorPositionAndVelocityFromEstimation(GNSSEstimation priorEstimation) Sets previously predicted ECEF user position and velocity from a previous predicted result.Constructors in com.irurueta.navigation.gnss with parameters of type GNSSEstimationModifierConstructorDescriptionGNSSEstimation(GNSSEstimation input) Copy constructor.GNSSKalmanState(GNSSEstimation estimation, com.irurueta.algebra.Matrix covariance) Constructor.GNSSLeastSquaresPositionAndVelocityEstimator(Collection<GNSSMeasurement> measurements, GNSSEstimation priorEstimation) Constructor.GNSSLeastSquaresPositionAndVelocityEstimator(Collection<GNSSMeasurement> measurements, GNSSEstimation priorEstimation, GNSSLeastSquaresPositionAndVelocityEstimatorListener listener) Constructor.