GPSCNavEph.hpp
Go to the documentation of this file.
1 //==============================================================================
2 //
3 // This file is part of GNSSTk, the ARL:UT GNSS Toolkit.
4 //
5 // The GNSSTk is free software; you can redistribute it and/or modify
6 // it under the terms of the GNU Lesser General Public License as published
7 // by the Free Software Foundation; either version 3.0 of the License, or
8 // any later version.
9 //
10 // The GNSSTk is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU Lesser General Public License for more details.
14 //
15 // You should have received a copy of the GNU Lesser General Public
16 // License along with GNSSTk; if not, write to the Free Software Foundation,
17 // Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
18 //
19 // This software was developed by Applied Research Laboratories at the
20 // University of Texas at Austin.
21 // Copyright 2004-2022, The Board of Regents of The University of Texas System
22 //
23 //==============================================================================
24 
25 
26 //==============================================================================
27 //
28 // This software was developed by Applied Research Laboratories at the
29 // University of Texas at Austin, under contract to an agency or agencies
30 // within the U.S. Department of Defense. The U.S. Government retains all
31 // rights to use, duplicate, distribute, disclose, or release this software.
32 //
33 // Pursuant to DoD Directive 523024
34 //
35 // DISTRIBUTION STATEMENT A: This software has been approved for public
36 // release, distribution is unlimited.
37 //
38 //==============================================================================
39 #ifndef GNSSTK_GPSCNAVEPH_HPP
40 #define GNSSTK_GPSCNAVEPH_HPP
41 
42 #include "GPSCNavData.hpp"
43 
44 namespace gnsstk
45 {
47 
48 
52  class GPSCNavEph : public GPSCNavData
53  {
54  public:
56  GPSCNavEph();
58  NavDataPtr clone() const override
59  { return std::make_shared<GPSCNavEph>(*this); }
60 
66  bool validate() const override;
67 
76  CommonTime getUserTime() const override;
77 
80  void fixFit();
81 
84  void dumpSVStatus(std::ostream& s) const override;
85 
86  uint32_t pre11;
87  uint32_t preClk;
88  bool healthL1;
90  bool healthL2;
91  bool healthL5;
92  int8_t uraED;
93  int8_t uraNED0;
94  uint8_t uraNED1;
95  uint8_t uraNED2;
96  bool alert11;
97  bool alertClk;
98  bool integStat;
99  bool phasingL2C;
100  double deltaA;
101  double dOMEGAdot;
105  };
106 
108 
109 }
110 
111 #endif // GNSSTK_GPSCNAVEPH_HPP
gnsstk::NavDataPtr
std::shared_ptr< NavData > NavDataPtr
Factories instantiate these in response to find() requests.
Definition: NavData.hpp:62
gnsstk::GPSCNavEph::uraNED2
uint8_t uraNED2
non-elevation dependent URA from clock message.
Definition: GPSCNavEph.hpp:95
gnsstk::GPSCNavEph::healthL2
bool healthL2
L2 signal health from message type 10.
Definition: GPSCNavEph.hpp:90
gnsstk::GPSCNavEph::clone
NavDataPtr clone() const override
Create a deep copy of this object.
Definition: GPSCNavEph.hpp:58
gnsstk::GPSCNavEph::dumpSVStatus
void dumpSVStatus(std::ostream &s) const override
Definition: GPSCNavEph.cpp:129
gnsstk::GPSCNavEph::alert11
bool alert11
Alert flag from message type 11.
Definition: GPSCNavEph.hpp:96
gnsstk::GPSCNavEph::xmit11
CommonTime xmit11
Transmit time for message 11.
Definition: GPSCNavEph.hpp:103
gnsstk::GPSCNavEph::uraED
int8_t uraED
5-bit URA index from message type 10.
Definition: GPSCNavEph.hpp:92
gnsstk::GPSCNavEph::xmitClk
CommonTime xmitClk
Transmit time for the clock message.
Definition: GPSCNavEph.hpp:104
gnsstk::GPSCNavEph::healthL1
bool healthL1
L1 signal health from message type 10.
Definition: GPSCNavEph.hpp:89
gnsstk
For Sinex::InputHistory.
Definition: BasicFramework.cpp:50
gnsstk::GPSCNavData
Definition: GPSCNavData.hpp:52
gnsstk::GPSCNavEph::fixFit
void fixFit()
Definition: GPSCNavEph.cpp:91
gnsstk::GPSCNavEph::preClk
uint32_t preClk
Definition: GPSCNavEph.hpp:87
gnsstk::GPSCNavEph::deltaA
double deltaA
Semi-major axis relative to reference (Aref).
Definition: GPSCNavEph.hpp:100
gnsstk::GPSCNavEph::healthL5
bool healthL5
L5 signal health from message type 10.
Definition: GPSCNavEph.hpp:91
gnsstk::GPSCNavEph::phasingL2C
bool phasingL2C
L2C phasing.
Definition: GPSCNavEph.hpp:99
gnsstk::CommonTime
Definition: CommonTime.hpp:84
gnsstk::GPSCNavEph::pre11
uint32_t pre11
The preamble from the start of message type 11.
Definition: GPSCNavEph.hpp:86
gnsstk::GPSCNavEph::integStat
bool integStat
Integrity status flag.
Definition: GPSCNavEph.hpp:98
GPSCNavData.hpp
gnsstk::GPSCNavEph::getUserTime
CommonTime getUserTime() const override
Definition: GPSCNavEph.cpp:81
gnsstk::GPSCNavEph::validate
bool validate() const override
Definition: GPSCNavEph.cpp:73
gnsstk::GPSCNavEph::uraNED1
uint8_t uraNED1
non-elevation dependent URA from clock message.
Definition: GPSCNavEph.hpp:94
gnsstk::GPSCNavEph::GPSCNavEph
GPSCNavEph()
Sets the nav message type and all other data members to 0.
Definition: GPSCNavEph.cpp:48
gnsstk::GPSCNavEph::alertClk
bool alertClk
Alert flag from the clock message.
Definition: GPSCNavEph.hpp:97
gnsstk::GPSCNavEph::uraNED0
int8_t uraNED0
non-elevation dependent URA from clock message.
Definition: GPSCNavEph.hpp:93
gnsstk::GPSCNavEph::dOMEGAdot
double dOMEGAdot
Rate of right ascension relative to -2.6e-9*pi.
Definition: GPSCNavEph.hpp:101
gnsstk::GPSCNavEph
Definition: GPSCNavEph.hpp:52
gnsstk::GPSCNavEph::top
CommonTime top
Time of prediction.
Definition: GPSCNavEph.hpp:102


gnsstk
Author(s):
autogenerated on Wed Oct 25 2023 02:40:39