0.3.0
Loading...
Searching...
No Matches
NAV::ObservationEstimator Class Reference

Calculates Observation estimates. More...

Classes

struct  Antenna
 Antenna information. More...
 
struct  SatelliteInfo
 Satellite Info used for estimate calculation. More...
 

Public Types

enum  ObservationDifference : uint8_t {
  NoDifference ,
  SingleDifference ,
  DoubleDifference
}
 How the observation gets used. Influenced the measurement variance. More...
 

Public Member Functions

template<typename Derived >
std::pair< double, Eigen::Vector3d > calcCarrierEstimate (Frequency freq, int8_t freqNum, size_t receiverType, const Eigen::MatrixBase< Derived > &e_recvPosMarker, double recvClockBias, const std::shared_ptr< const SatelliteInfo > &satInfo, const std::shared_ptr< const GnssObs > &gnssObs, const std::shared_ptr< const IonosphericCorrections > &ionosphericCorrections, const std::string &nameId) const
 Calculates the carrier-phase estimate.
 
template<typename DerivedPos , typename DerivedVel >
auto calcDopplerEstimate (Frequency freq, size_t receiverType, const Eigen::MatrixBase< DerivedPos > &e_recvPosMarker, const Eigen::MatrixBase< DerivedVel > &e_recvVel, auto recvClockDrift, const std::shared_ptr< const SatelliteInfo > &satInfo, const std::shared_ptr< const GnssObs > &gnssObs, const std::string &nameId) const
 Calculates the doppler estimate.
 
template<typename ReceiverType >
void calcObservationEstimate (const SatSigId &satSigId, Observations::SignalObservation &observation, const Receiver< ReceiverType > &receiver, const std::shared_ptr< const IonosphericCorrections > &ionosphericCorrections, const std::string &nameId, ObservationDifference obsDiff) const
 Calculates the observation estimate for the given signal.
 
template<typename ReceiverType >
void calcObservationEstimates (Observations &observations, const Receiver< ReceiverType > &receiver, const std::shared_ptr< const IonosphericCorrections > &ionosphericCorrections, const std::string &nameId, ObservationDifference obsDiff) const
 Calculates the observation estimates.
 
double calcObservationVariance (Frequency freq, int8_t freqNum, size_t receiverType, GnssObs::ObservationType obsType, const Eigen::Vector3d &e_recvPosMarker, const Eigen::Vector3d &e_satPos, double cn0, const std::shared_ptr< const GnssObs > &gnssObs, const std::shared_ptr< const SatNavData > &navData, const std::shared_ptr< const IonosphericCorrections > &ionosphericCorrections, const std::string &nameId, ObservationDifference obsDiff) const
 Calculates the observation variance.
 
double calcPCV (const Frequency &freq, const InsTime &insTime, double elevation, std::optional< double > azimuth, size_t receiverType, const std::shared_ptr< const GnssObs > &gnssObs, const std::string &nameId) const
 Calculates the phase center variation.
 
template<typename Derived >
auto calcPseudorangeEstimate (Frequency freq, size_t receiverType, const Eigen::MatrixBase< Derived > &e_recvPosMarker, auto recvClockBias, auto interFreqBias, auto dpsr_T_r_s, auto dpsr_I_r_s, const std::shared_ptr< const SatelliteInfo > &satInfo, const std::shared_ptr< const GnssObs > &gnssObs, const std::string &nameId) const
 Calculates the pseudorange estimate.
 
double calculateIonosphericDelay (const Frequency &freq, int8_t freqNum, const Eigen::Vector3d &lla_recvPosAPC, const std::shared_ptr< const GnssObs > &gnssObs, const std::shared_ptr< const IonosphericCorrections > &ionosphericCorrections, double elevation, double azimuth) const
 Calculate the ionospheric delay with the model selected in the GUI.
 
double calculateTroposphericDelay (const Eigen::Vector3d &lla_recvPosAPC, const std::shared_ptr< const GnssObs > &gnssObs, double elevation, double azimuth, const std::string &nameId) const
 Calculate the tropospheric delay with the model selected in the GUI.
 
template<typename Derived >
Eigen::Vector3< typename Derived::Scalar > e_calcRecvPosAPC (const Frequency &freq, size_t receiverType, const Eigen::MatrixBase< Derived > &e_recvPosMarker, const std::shared_ptr< const GnssObs > &gnssObs, const std::string &nameId) const
 Calculates the antenna phase center position for the marker.
 
const GnssMeasurementErrorModelgetGnssMeasurementErrorModel () const
 Get the GNSS measurement error model.
 
const IonosphereModelgetIonosphereModel () const
 Get the Ionosphere Model selected.
 
const TroposphereModelSelectiongetTroposphereModels () const
 Get the Troposphere Model selection.
 
 ObservationEstimator (size_t receiverCount)
 Constructor.
 
template<typename ReceiverType >
bool ShowGuiWidgets (const char *id, float itemWidth)
 Shows the GUI input to select the options.
 

Private Attributes

std::unordered_map< size_t, Antenna_antenna
 User antenna selection. Key is receiver type.
 
GnssMeasurementErrorModel _gnssMeasurementErrorModel
 GNSS measurement error model to use.
 
IonosphereModel _ionosphereModel
 Ionosphere Model used for the calculation.
 
size_t _receiverCount
 Number of receivers (used for GUI)
 
TroposphereModelSelection _troposphereModels
 Troposphere Models used for the calculation.
 

Friends

void from_json (const json &j, ObservationEstimator &obj)
 Converts the provided json object into a node object.
 
void from_json (const json &j, ObservationEstimator::Antenna &obj)
 Converts the provided json object into a node object.
 
void to_json (json &j, const ObservationEstimator &obj)
 Converts the provided object into json.
 
void to_json (json &j, const ObservationEstimator::Antenna &obj)
 Converts the provided object into json.
 

Detailed Description

Calculates Observation estimates.

Member Enumeration Documentation

◆ ObservationDifference

How the observation gets used. Influenced the measurement variance.

Enumerator
NoDifference 

Estimation is not differenced.

SingleDifference 

Single Difference.

DoubleDifference 

Double Difference.

Constructor & Destructor Documentation

◆ ObservationEstimator()

NAV::ObservationEstimator::ObservationEstimator ( size_t receiverCount)
inlineexplicit

Constructor.

Parameters
[in]receiverCountNumber of receivers

Member Function Documentation

◆ calcCarrierEstimate()

template<typename Derived >
std::pair< double, Eigen::Vector3d > NAV::ObservationEstimator::calcCarrierEstimate ( Frequency freq,
int8_t freqNum,
size_t receiverType,
const Eigen::MatrixBase< Derived > & e_recvPosMarker,
double recvClockBias,
const std::shared_ptr< const SatelliteInfo > & satInfo,
const std::shared_ptr< const GnssObs > & gnssObs,
const std::shared_ptr< const IonosphericCorrections > & ionosphericCorrections,
const std::string & nameId ) const
inline

Calculates the carrier-phase estimate.

Parameters
[in]freqSignal frequency
[in]freqNumFrequency number. Only used for GLONASS G1 and G2
[in]receiverTypeReceiver type to select the correct antenna
[in]e_recvPosMarkerReceiver marker position in ECEF coordinates [m]
[in]recvClockBiasReceiver clock bias [s]
[in]satInfoSatellite Information (pos, vel, clock)
[in]gnssObsGNSS observation
[in]ionosphericCorrectionsIonospheric correction parameters collected from the Nav data
[in]nameIdName and Id of the node used for log messages only
Returns
The estimate [m] and the position line-of-sight unit vector (used for the Jacobian)

◆ calcDopplerEstimate()

template<typename DerivedPos , typename DerivedVel >
auto NAV::ObservationEstimator::calcDopplerEstimate ( Frequency freq,
size_t receiverType,
const Eigen::MatrixBase< DerivedPos > & e_recvPosMarker,
const Eigen::MatrixBase< DerivedVel > & e_recvVel,
auto recvClockDrift,
const std::shared_ptr< const SatelliteInfo > & satInfo,
const std::shared_ptr< const GnssObs > & gnssObs,
const std::string & nameId ) const
inline

Calculates the doppler estimate.

Parameters
[in]freqSignal frequency
[in]receiverTypeReceiver type to select the correct antenna
[in]e_recvPosMarkerReceiver marker position in ECEF coordinates [m]
[in]e_recvVelReceiver velocity in ECEF frame [m/s]
[in]recvClockDriftReceiver clock drift [s/s]
[in]satInfoSatellite Information (pos, vel, clock)
[in]gnssObsGNSS observation
[in]nameIdName and Id of the node used for log messages only
Returns
The estimate [m/s] and the position line-of-sight unit vector (used for the Jacobian)

◆ calcObservationEstimate()

template<typename ReceiverType >
void NAV::ObservationEstimator::calcObservationEstimate ( const SatSigId & satSigId,
Observations::SignalObservation & observation,
const Receiver< ReceiverType > & receiver,
const std::shared_ptr< const IonosphericCorrections > & ionosphericCorrections,
const std::string & nameId,
ObservationDifference obsDiff ) const
inline

Calculates the observation estimate for the given signal.

Parameters
[in]satSigIdSatellite signal identifier
[in,out]observationGNSS observation data used for the calculation of this epoch
[in]ionosphericCorrectionsIonospheric correction parameters collected from the Nav data
[in]receiverReceiver
[in]nameIdName and Id of the node used for log messages only
[in]obsDiffObservation Difference type to estimate

◆ calcObservationEstimates()

template<typename ReceiverType >
void NAV::ObservationEstimator::calcObservationEstimates ( Observations & observations,
const Receiver< ReceiverType > & receiver,
const std::shared_ptr< const IonosphericCorrections > & ionosphericCorrections,
const std::string & nameId,
ObservationDifference obsDiff ) const
inline

Calculates the observation estimates.

Parameters
[in,out]observationsList of GNSS observation data used for the calculation of this epoch
[in]ionosphericCorrectionsIonospheric correction parameters collected from the Nav data
[in]receiverReceiver
[in]nameIdName and Id of the node used for log messages only
[in]obsDiffObservation Difference type to estimate

◆ calcObservationVariance()

double NAV::ObservationEstimator::calcObservationVariance ( Frequency freq,
int8_t freqNum,
size_t receiverType,
GnssObs::ObservationType obsType,
const Eigen::Vector3d & e_recvPosMarker,
const Eigen::Vector3d & e_satPos,
double cn0,
const std::shared_ptr< const GnssObs > & gnssObs,
const std::shared_ptr< const SatNavData > & navData,
const std::shared_ptr< const IonosphericCorrections > & ionosphericCorrections,
const std::string & nameId,
ObservationDifference obsDiff ) const
inline

Calculates the observation variance.

Parameters
[in]freqSignal Frequency
[in]freqNumFrequency number. Only used for GLONASS G1 and G2
[in]receiverTypeReceiver type to select the correct antenna
[in]obsTypeObservation type to calculate the variance for
[in]e_recvPosMarkerReceiver marker position in ECEF coordinates [m]
[in]e_satPosSatellite position in ECEF coordinates [m]
[in]cn0Carrier-to-Noise density [dBHz]
[in]gnssObsGNSS observation
[in]navDataNavigation data including this satellite
[in]ionosphericCorrectionsIonospheric correction parameters collected from the Nav data
[in]nameIdName and Id of the node used for log messages only
[in]obsDiffObservation Difference type to estimate
Returns
Observation variance in [m] (pseudorange, carrier) or [m/s] (doppler)

◆ calcPCV()

double NAV::ObservationEstimator::calcPCV ( const Frequency & freq,
const InsTime & insTime,
double elevation,
std::optional< double > azimuth,
size_t receiverType,
const std::shared_ptr< const GnssObs > & gnssObs,
const std::string & nameId ) const
inlinenodiscard

Calculates the phase center variation.

Parameters
[in]freqSignal frequency
[in]insTimeTime to lookup the PCV pattern
[in]elevationElevation angle in [rad]
[in]azimuthAzimuth in [rad] or nullopt to use the azimuth independent (NOAZI)
[in]receiverTypeReceiver type to select the correct antenna
[in]gnssObsGNSS observation
[in]nameIdName and Id of the node used for log messages only
Returns
The PCV value in [m]

◆ calcPseudorangeEstimate()

template<typename Derived >
auto NAV::ObservationEstimator::calcPseudorangeEstimate ( Frequency freq,
size_t receiverType,
const Eigen::MatrixBase< Derived > & e_recvPosMarker,
auto recvClockBias,
auto interFreqBias,
auto dpsr_T_r_s,
auto dpsr_I_r_s,
const std::shared_ptr< const SatelliteInfo > & satInfo,
const std::shared_ptr< const GnssObs > & gnssObs,
const std::string & nameId ) const
inline

Calculates the pseudorange estimate.

Parameters
[in]freqSignal frequency
[in]receiverTypeReceiver type to select the correct antenna
[in]e_recvPosMarkerReceiver marker position in ECEF coordinates [m]
[in]recvClockBiasReceiver clock bias [s]
[in]interFreqBiasReceiver inter-frequency bias [s]
[in]dpsr_T_r_sEstimated troposphere propagation error [m]
[in]dpsr_I_r_sEstimated ionosphere propagation error [m]
[in]satInfoSatellite Information (pos, vel, clock)
[in]gnssObsGNSS observation
[in]nameIdName and Id of the node used for log messages only
Returns
The estimate [m] and the position line-of-sight unit vector (used for the Jacobian)

◆ calculateIonosphericDelay()

double NAV::ObservationEstimator::calculateIonosphericDelay ( const Frequency & freq,
int8_t freqNum,
const Eigen::Vector3d & lla_recvPosAPC,
const std::shared_ptr< const GnssObs > & gnssObs,
const std::shared_ptr< const IonosphericCorrections > & ionosphericCorrections,
double elevation,
double azimuth ) const
inline

Calculate the ionospheric delay with the model selected in the GUI.

Parameters
[in]freqFrequency of the signal
[in]freqNumFrequency number. Only used for GLONASS G1 and G2
[in]lla_recvPosAPCReceiver antenna phase center position in LLA coordinates [rad, rad, m]
[in]gnssObsGNSS observation
[in]ionosphericCorrectionsIonospheric correction parameters collected from the Nav data
[in]elevationSatellite elevation [rad]
[in]azimuthSatellite azimuth [rad]
Returns
Estimated ionosphere propagation error [m]

◆ calculateTroposphericDelay()

double NAV::ObservationEstimator::calculateTroposphericDelay ( const Eigen::Vector3d & lla_recvPosAPC,
const std::shared_ptr< const GnssObs > & gnssObs,
double elevation,
double azimuth,
const std::string & nameId ) const
inline

Calculate the tropospheric delay with the model selected in the GUI.

Parameters
[in]lla_recvPosAPCReceiver antenna phase center position in LLA coordinates [rad, rad, m]
[in]gnssObsGNSS observation
[in]elevationSatellite elevation [rad]
[in]azimuthSatellite azimuth [rad]
[in]nameIdName and Id of the node used for log messages only
Returns
Estimated troposphere propagation error [m]

◆ e_calcRecvPosAPC()

template<typename Derived >
Eigen::Vector3< typename Derived::Scalar > NAV::ObservationEstimator::e_calcRecvPosAPC ( const Frequency & freq,
size_t receiverType,
const Eigen::MatrixBase< Derived > & e_recvPosMarker,
const std::shared_ptr< const GnssObs > & gnssObs,
const std::string & nameId ) const
inlinenodiscard

Calculates the antenna phase center position for the marker.

Parameters
[in]freqSignal frequency
[in]receiverTypeReceiver type to select the correct antenna
[in]e_recvPosMarkerReceiver marker position in ECEF coordinates [m]
[in]gnssObsGNSS observation
[in]nameIdName and Id of the node used for log messages only

◆ ShowGuiWidgets()

template<typename ReceiverType >
bool NAV::ObservationEstimator::ShowGuiWidgets ( const char * id,
float itemWidth )
inline

Shows the GUI input to select the options.

Parameters
[in]idUnique id for ImGui.
[in]itemWidthWidth of the widgets

Friends And Related Symbol Documentation

◆ from_json [1/2]

void from_json ( const json & j,
ObservationEstimator & obj )
friend

Converts the provided json object into a node object.

Parameters
[in]jJson object with the needed values
[out]objObject to fill from the json

◆ from_json [2/2]

void from_json ( const json & j,
ObservationEstimator::Antenna & obj )
friend

Converts the provided json object into a node object.

Parameters
[in]jJson object with the needed values
[out]objObject to fill from the json

◆ to_json [1/2]

void to_json ( json & j,
const ObservationEstimator & obj )
friend

Converts the provided object into json.

Parameters
[out]jJson object which gets filled with the info
[in]objObject to convert into json

◆ to_json [2/2]

void to_json ( json & j,
const ObservationEstimator::Antenna & obj )
friend

Converts the provided object into json.

Parameters
[out]jJson object which gets filled with the info
[in]objObject to convert into json

The documentation for this class was generated from the following file: