![]() |
0.3.0
|
GNSS helper functions. More...
Go to the source code of this file.
Functions | |
template<typename DerivedA , typename DerivedB > | |
DerivedA::Scalar | NAV::calcSagnacCorrection (const Eigen::MatrixBase< DerivedA > &e_posAnt, const Eigen::MatrixBase< DerivedB > &e_satPos) |
Calculates the Earth rotation/Sagnac correction. | |
template<typename DerivedA , typename DerivedB , typename DerivedC , typename DerivedD > | |
DerivedA::Scalar | NAV::calcSagnacRateCorrection (const Eigen::MatrixBase< DerivedA > &e_recvPos, const Eigen::MatrixBase< DerivedB > &e_satPos, const Eigen::MatrixBase< DerivedC > &e_recvVel, const Eigen::MatrixBase< DerivedD > &e_satVel) |
Calculates the Range-rate Earth rotation/Sagnac correction. | |
template<typename Derived > | |
Derived::Scalar | NAV::calcSatAzimuth (const Eigen::MatrixBase< Derived > &n_lineOfSightUnitVector) |
Calculates the azimuth of the satellite from the antenna. | |
template<typename Derived > | |
Derived::Scalar | NAV::calcSatElevation (const Eigen::MatrixBase< Derived > &n_lineOfSightUnitVector) |
Calculates the elevation of the satellite from the antenna. | |
double | NAV::doppler2rangeRate (double doppler, Frequency freq, int8_t num) |
Transforms a doppler-shift into a range-rate. | |
template<typename DerivedA , typename DerivedB > | |
Eigen::Vector3< typename DerivedA::Scalar > | NAV::e_calcLineOfSightUnitVector (const Eigen::MatrixBase< DerivedA > &e_posAnt, const Eigen::MatrixBase< DerivedB > &e_posSat) |
Calculates the line-of-sight unit vector from the user antenna to the satellite. | |
double | NAV::galSisaIdx2Val (uint8_t idx) |
Converts a GALILEO SISA (Signal in space accuracy) index to it's value. | |
uint8_t | NAV::galSisaVal2Idx (double val) |
Converts a GALILEO SISA (Signal in space accuracy) value to it's index. | |
double | NAV::gpsUraIdx2Val (uint8_t idx) |
Converts a GPS URA (user range accuracy) index to it's value. | |
uint8_t | NAV::gpsUraVal2Idx (double val) |
Converts a GPS URA (user range accuracy) value to it's index. | |
double | NAV::rangeRate2doppler (double rangeRate, Frequency freq, int8_t num) |
Transforms a range-rate into a doppler-shift. | |
double | NAV::ratioFreqSquared (Frequency f1, Frequency f2, int8_t num1, int8_t num2) |
Calculates the ration of the frequencies squared γ | |
GNSS helper functions.
|
nodiscard |
Calculates the Earth rotation/Sagnac correction.
[in] | e_posAnt | Position of the user antenna in ECEF frame coordinates |
[in] | e_satPos | Position of the satellite in ECEF frame coordinates |
|
nodiscard |
Calculates the Range-rate Earth rotation/Sagnac correction.
[in] | e_recvPos | Position of the user antenna in ECEF frame coordinates |
[in] | e_satPos | Position of the satellite in ECEF frame coordinates |
[in] | e_recvVel | Velocity of the user antenna in ECEF frame coordinates |
[in] | e_satVel | Velocity of the satellite in ECEF frame coordinates |
|
nodiscard |
Calculates the azimuth of the satellite from the antenna.
[in] | n_lineOfSightUnitVector | Line-of-sight unit vector from the antenna to the satellite in NED frame coordinates |
|
nodiscard |
Calculates the elevation of the satellite from the antenna.
[in] | n_lineOfSightUnitVector | Line-of-sight unit vector from the antenna to the satellite in NED frame coordinates |
|
nodiscard |
Transforms a doppler-shift into a range-rate.
[in] | doppler | The doppler-shift to transform [Hz] |
[in] | freq | Frequency |
[in] | num | Frequency number. Only used for GLONASS G1 and G2 |
|
nodiscard |
Calculates the line-of-sight unit vector from the user antenna to the satellite.
[in] | e_posAnt | Position of the user antenna in ECEF frame coordinates |
[in] | e_posSat | Position of the satellite in ECEF frame coordinates |
|
nodiscard |
Converts a GALILEO SISA (Signal in space accuracy) index to it's value.
[in] | idx | The SISA index |
|
nodiscard |
Converts a GALILEO SISA (Signal in space accuracy) value to it's index.
[in] | val | SISA value in [m] |
|
nodiscard |
Converts a GPS URA (user range accuracy) index to it's value.
[in] | idx | The URA index |
|
nodiscard |
Converts a GPS URA (user range accuracy) value to it's index.
[in] | val | URA value in [m] |
|
nodiscard |
Transforms a range-rate into a doppler-shift.
[in] | rangeRate | The range-rate to transform [m/s] |
[in] | freq | Frequency |
[in] | num | Frequency number. Only used for GLONASS G1 and G2 |
Calculates the ration of the frequencies squared γ
\begin{equation} \label{eq:eq-GNSS-freqRatio} \gamma = (f_1 / f_2)^2 \end{equation}
[in] | f1 | First frequency (usually L1) |
[in] | f2 | Second frequency (usually L2) |
[in] | num1 | First frequency number. Only used for GLONASS G1 and G2 |
[in] | num2 | Second frequency number. Only used for GLONASS G1 and G2 |