Class containing data elements unique to GLONASS Civil C-Nav almanacs.
Definition at line 61 of file GLOCNavAlm.hpp.
#include <GLOCNavAlm.hpp>
Classes | |
class | Corrected |
Provide methods for computing the corrected Keplerian parameters. More... | |
class | Deltas |
class | NumberCruncher |
Class to assist in doing all the math to get the XVT. More... | |
class | Perturbations |
class | Uncorrected |
Public Member Functions | |
NavDataPtr | clone () const override |
Create a deep copy of this object. More... | |
void | dump (std::ostream &s, DumpDetail dl) const override |
void | dumpTerse (std::ostream &s) const |
void | fixFit () |
CommonTime | getUserTime () const override |
bool | getXvt (const CommonTime &when, Xvt &xvt, const ObsID &=ObsID()) override |
GLOCNavAlm () | |
Sets the nav message type, and all other data members to 0. More... | |
bool | validate () const override |
![]() | |
GLOCNavData () | |
Sets the nav message type and all other data members to 0. More... | |
bool | validate () const override |
![]() | |
std::list< std::string > | compare (const NavDataPtr &right) const override |
bool | isSameData (const NavDataPtr &right) const override |
![]() | |
virtual std::string | getClassName () const |
std::string | getDumpTime (DumpDetail dl, const CommonTime &t) const |
std::string | getDumpTimeHdr (DumpDetail dl) const |
virtual CommonTime | getNearTime () const |
std::string | getSignalString () const |
bool | getSVN (const SatID &sat, const gnsstk::CommonTime &when, std::string &svn) const |
NavData () | |
Initialize internal data fields. More... | |
Public Attributes | |
unsigned | aoa |
Age of almanac (EA). More... | |
double | deltai |
Inclination offset from 64.8 degrees (semicirc). More... | |
double | deltaT |
Draconic orbital period offset. More... | |
double | deltaTdot |
Draconic orbital period rate. More... | |
double | ecc |
Eccentricity at tlambdaA. More... | |
double | lambda |
Longitude of first ascending node (semicirc). More... | |
unsigned | NA |
Almanac reference time days since leap year. More... | |
unsigned | numSVs |
Number of SVs in complete almanac (NS). More... | |
double | omega |
Almanac parameter for argument of perigee (semicirc). More... | |
GLOCOrbitType | orbitType |
Orbit type. More... | |
GLOCSatType | satType |
What satellite j is and what it transmits. More... | |
unsigned | statusReg |
Status register (SRA 5.3.2.7). More... | |
double | tau |
Time correction from L3OCd to GLONASS. More... | |
double | tLambda |
Instant in Moscow time when passing lambda. More... | |
CommonTime | Toa |
Reference time for almanac. More... | |
![]() | |
GLOCNavHeader | header |
Common data. More... | |
![]() | |
NavMessageID | signal |
Source signal identification for this navigation message data. More... | |
CommonTime | timeStamp |
std::string | weekFmt |
![]() | |
CommonTime | beginFit |
Time at beginning of fit interval. More... | |
CommonTime | endFit |
Time at end of fit interval. More... | |
Static Public Attributes | |
static const GNSSTK_EXPORT double | ae = ell.a_km() |
Equatorial radius of Earth in km. More... | |
static const GNSSTK_EXPORT PZ90Ellipsoid | ell |
Ellipsoid parameters used by GLONASS. More... | |
static const GNSSTK_EXPORT double | GM = ell.gm_km() |
Gravitational constant. More... | |
static const GNSSTK_EXPORT double | iav = 64.8 |
iap</cp> as defined in ICD-GLONASS-CDMA-L3 section 5.3.2.12 More... | |
static const GNSSTK_EXPORT double | J20 = 1082625.75e-9 |
Second degree coefficient of normal potential, table 4.1. More... | |
static constexpr GNSSTK_EXPORT double | omegaE = 0.7292115e-4 |
Earth's rotation rate (rad/s). More... | |
static const GNSSTK_EXPORT double | Tav = 40544.0 |
Tav</cp> as defined in ICD-GLONASS-CDMA-L3 section 5.3.2.15. More... | |
![]() | |
static const GNSSTK_EXPORT std::string | dumpTimeFmt |
Time format used for the dump method (Full). More... | |
static const GNSSTK_EXPORT std::string | dumpTimeFmtBrief |
Time format used for the dump method (Brief). More... | |
static GNSSTK_EXPORT gnsstk::SatMetaDataStore * | satMetaDataStore = nullptr |
Set this to a valid store to get PRN->SVN translations in dump(). More... | |
Private Attributes | |
NumberCruncher | math |
Retain as much computed data as possible. More... | |
Friends | |
class | ::GLOCNavAlm_T |
Additional Inherited Members | |
![]() | |
static gnsstk::SatMetaDataStore * | getSatMetaDataStore () |
Accessor for python. More... | |
static void | setSatMetaDataStore (gnsstk::SatMetaDataStore *smds) |
Accessor for python. More... | |
![]() | |
double | msgLenSec |
gnsstk::GLOCNavAlm::GLOCNavAlm | ( | ) |
Sets the nav message type, and all other data members to 0.
Definition at line 62 of file GLOCNavAlm.cpp.
|
inlineoverridevirtual |
Create a deep copy of this object.
Implements gnsstk::NavData.
Definition at line 82 of file GLOCNavAlm.hpp.
|
overridevirtual |
Print the contents of this NavData object in a (usually) human-readable format.
[in,out] | s | The stream to write the data to. |
[in] | dl | The level of detail the output should contain. |
Reimplemented from gnsstk::NavData.
Definition at line 125 of file GLOCNavAlm.cpp.
void gnsstk::GLOCNavAlm::dumpTerse | ( | std::ostream & | s | ) | const |
Dump contents in terse format (DumpDetail==Terse)
[in,out] | s | The stream to write the data to. |
Definition at line 216 of file GLOCNavAlm.cpp.
void gnsstk::GLOCNavAlm::fixFit | ( | ) |
Fill the beginFit and endFit values for this object.
Definition at line 110 of file GLOCNavAlm.cpp.
|
overridevirtual |
Returns the time when the navigation message would have first been available to the user equipment, i.e. the time at which the final bit of a given broadcast navigation message is received. This is used by NavDataFactoryWithStore::find() in User mode.
Reimplemented from gnsstk::NavData.
Definition at line 103 of file GLOCNavAlm.cpp.
|
overridevirtual |
Compute the satellites position and velocity at a time.
[in] | when | The time at which to compute the xvt. |
[out] | xvt | The resulting computed position/velocity. |
[in] | oid | Value is ignored - GLONASS does not have distinct transmitters. |
Implements gnsstk::OrbitData.
Definition at line 92 of file GLOCNavAlm.cpp.
|
overridevirtual |
Checks the contents of this message against known validity rules as defined in the appropriate ICD.
Implements gnsstk::NavData.
Definition at line 84 of file GLOCNavAlm.cpp.
|
friend |
Definition at line 392 of file GLOCNavAlm.hpp.
|
static |
Equatorial radius of Earth in km.
Definition at line 69 of file GLOCNavAlm.hpp.
unsigned gnsstk::GLOCNavAlm::aoa |
Age of almanac (EA).
Definition at line 132 of file GLOCNavAlm.hpp.
double gnsstk::GLOCNavAlm::deltai |
Inclination offset from 64.8 degrees (semicirc).
Definition at line 139 of file GLOCNavAlm.hpp.
double gnsstk::GLOCNavAlm::deltaT |
Draconic orbital period offset.
Definition at line 142 of file GLOCNavAlm.hpp.
double gnsstk::GLOCNavAlm::deltaTdot |
Draconic orbital period rate.
Definition at line 143 of file GLOCNavAlm.hpp.
double gnsstk::GLOCNavAlm::ecc |
Eccentricity at tlambdaA.
Definition at line 140 of file GLOCNavAlm.hpp.
|
static |
Ellipsoid parameters used by GLONASS.
Definition at line 65 of file GLOCNavAlm.hpp.
|
static |
Gravitational constant.
Definition at line 67 of file GLOCNavAlm.hpp.
|
static |
iap</cp> as defined in ICD-GLONASS-CDMA-L3 section 5.3.2.12
Definition at line 73 of file GLOCNavAlm.hpp.
|
static |
Second degree coefficient of normal potential, table 4.1.
Definition at line 77 of file GLOCNavAlm.hpp.
double gnsstk::GLOCNavAlm::lambda |
Longitude of first ascending node (semicirc).
Definition at line 137 of file GLOCNavAlm.hpp.
|
private |
Retain as much computed data as possible.
Definition at line 389 of file GLOCNavAlm.hpp.
unsigned gnsstk::GLOCNavAlm::NA |
Almanac reference time days since leap year.
Definition at line 133 of file GLOCNavAlm.hpp.
unsigned gnsstk::GLOCNavAlm::numSVs |
Number of SVs in complete almanac (NS).
Definition at line 131 of file GLOCNavAlm.hpp.
double gnsstk::GLOCNavAlm::omega |
Almanac parameter for argument of perigee (semicirc).
Definition at line 141 of file GLOCNavAlm.hpp.
|
staticconstexpr |
Earth's rotation rate (rad/s).
Definition at line 71 of file GLOCNavAlm.hpp.
GLOCOrbitType gnsstk::GLOCNavAlm::orbitType |
Orbit type.
Definition at line 130 of file GLOCNavAlm.hpp.
GLOCSatType gnsstk::GLOCNavAlm::satType |
What satellite j is and what it transmits.
Definition at line 135 of file GLOCNavAlm.hpp.
unsigned gnsstk::GLOCNavAlm::statusReg |
Status register (SRA 5.3.2.7).
Definition at line 134 of file GLOCNavAlm.hpp.
double gnsstk::GLOCNavAlm::tau |
Time correction from L3OCd to GLONASS.
Definition at line 136 of file GLOCNavAlm.hpp.
|
static |
Tav</cp> as defined in ICD-GLONASS-CDMA-L3 section 5.3.2.15.
Definition at line 75 of file GLOCNavAlm.hpp.
double gnsstk::GLOCNavAlm::tLambda |
Instant in Moscow time when passing lambda.
Definition at line 138 of file GLOCNavAlm.hpp.
CommonTime gnsstk::GLOCNavAlm::Toa |
Reference time for almanac.
Definition at line 129 of file GLOCNavAlm.hpp.