| 1 | #ifndef PPP_H
|
|---|
| 2 | #define PPP_H
|
|---|
| 3 |
|
|---|
| 4 | #include <string>
|
|---|
| 5 | #include <vector>
|
|---|
| 6 | #include <newmat.h>
|
|---|
| 7 |
|
|---|
| 8 | #include "bncconst.h"
|
|---|
| 9 | #include "bnctime.h"
|
|---|
| 10 | #include "ephemeris.h"
|
|---|
| 11 | #include "t_prn.h"
|
|---|
| 12 | #include "satObs.h"
|
|---|
| 13 |
|
|---|
| 14 | namespace BNC_PPP {
|
|---|
| 15 |
|
|---|
| 16 | class t_except {
|
|---|
| 17 | public:
|
|---|
| 18 | t_except(const char* msg) {
|
|---|
| 19 | _msg = msg;
|
|---|
| 20 | }
|
|---|
| 21 | ~t_except() {}
|
|---|
| 22 | std::string what() {return _msg;}
|
|---|
| 23 | private:
|
|---|
| 24 | std::string _msg;
|
|---|
| 25 | };
|
|---|
| 26 |
|
|---|
| 27 | class t_output {
|
|---|
| 28 | public:
|
|---|
| 29 | bncTime _epoTime;
|
|---|
| 30 | double _xyzRover[3];
|
|---|
| 31 | double _covMatrix[6];
|
|---|
| 32 | double _neu[3];
|
|---|
| 33 | double _trp0;
|
|---|
| 34 | double _trp;
|
|---|
| 35 | double _trpStdev;
|
|---|
| 36 | int _numSat;
|
|---|
| 37 | double _hDop;
|
|---|
| 38 | std::string _log;
|
|---|
| 39 | bool _error;
|
|---|
| 40 | };
|
|---|
| 41 |
|
|---|
| 42 | class t_lc {
|
|---|
| 43 | public:
|
|---|
| 44 | enum type {dummy = 0, l1, l2, c1, c2, lIF, cIF, MW, CL, GIM, Tz0, maxLc};
|
|---|
| 45 |
|
|---|
| 46 | static bool includesPhase(type tt) {
|
|---|
| 47 | switch (tt) {
|
|---|
| 48 | case l1:
|
|---|
| 49 | case l2:
|
|---|
| 50 | case lIF:
|
|---|
| 51 | case MW:
|
|---|
| 52 | case CL:
|
|---|
| 53 | return true;
|
|---|
| 54 | case c1:
|
|---|
| 55 | case c2:
|
|---|
| 56 | case cIF:
|
|---|
| 57 | return false;
|
|---|
| 58 | case dummy:
|
|---|
| 59 | case maxLc:
|
|---|
| 60 | case GIM:
|
|---|
| 61 | case Tz0:
|
|---|
| 62 | return false;
|
|---|
| 63 | }
|
|---|
| 64 | return false;
|
|---|
| 65 | }
|
|---|
| 66 |
|
|---|
| 67 | static bool includesCode(type tt) {
|
|---|
| 68 | switch (tt) {
|
|---|
| 69 | case c1:
|
|---|
| 70 | case c2:
|
|---|
| 71 | case cIF:
|
|---|
| 72 | case MW:
|
|---|
| 73 | case CL:
|
|---|
| 74 | return true;
|
|---|
| 75 | case l1:
|
|---|
| 76 | case l2:
|
|---|
| 77 | case lIF:
|
|---|
| 78 | return false;
|
|---|
| 79 | case dummy:
|
|---|
| 80 | case maxLc:
|
|---|
| 81 | case GIM:
|
|---|
| 82 | case Tz0:
|
|---|
| 83 | return false;
|
|---|
| 84 | }
|
|---|
| 85 | return false;
|
|---|
| 86 | }
|
|---|
| 87 |
|
|---|
| 88 | static t_frequency::type toFreq(char sys, type tt) {
|
|---|
| 89 | switch (tt) {
|
|---|
| 90 | case l1: case c1:
|
|---|
| 91 | if (sys == 'G') return t_frequency::G1;
|
|---|
| 92 | else if (sys == 'R') return t_frequency::R1;
|
|---|
| 93 | else if (sys == 'E') return t_frequency::E1;
|
|---|
| 94 | else if (sys == 'C') return t_frequency::C2;
|
|---|
| 95 | else return t_frequency::dummy;
|
|---|
| 96 | case l2: case c2:
|
|---|
| 97 | if (sys == 'G') return t_frequency::G2;
|
|---|
| 98 | else if (sys == 'R') return t_frequency::R2;
|
|---|
| 99 | else if (sys == 'E') return t_frequency::E5;
|
|---|
| 100 | else if (sys == 'C') return t_frequency::C6;
|
|---|
| 101 | else return t_frequency::dummy;
|
|---|
| 102 | case lIF: case cIF: case MW: case CL:
|
|---|
| 103 | return t_frequency::dummy;
|
|---|
| 104 | case dummy:
|
|---|
| 105 | case maxLc:
|
|---|
| 106 | case GIM:
|
|---|
| 107 | case Tz0:
|
|---|
| 108 | return t_frequency::dummy;
|
|---|
| 109 | }
|
|---|
| 110 | return t_frequency::dummy;
|
|---|
| 111 | }
|
|---|
| 112 |
|
|---|
| 113 | static std::string toString(type tt) {
|
|---|
| 114 | switch (tt) {
|
|---|
| 115 | case l1: return "l1";
|
|---|
| 116 | case l2: return "l2";
|
|---|
| 117 | case lIF: return "lIF";
|
|---|
| 118 | case MW: return "MW";
|
|---|
| 119 | case CL: return "CL";
|
|---|
| 120 | case c1: return "c1";
|
|---|
| 121 | case c2: return "c2";
|
|---|
| 122 | case cIF: return "cIF";
|
|---|
| 123 | case GIM: return "GIM";
|
|---|
| 124 | case Tz0: return "Tz0";
|
|---|
| 125 | case dummy:
|
|---|
| 126 | case maxLc:
|
|---|
| 127 | return "";
|
|---|
| 128 | }
|
|---|
| 129 | return "";
|
|---|
| 130 | }
|
|---|
| 131 | };
|
|---|
| 132 |
|
|---|
| 133 | class interface_pppClient {
|
|---|
| 134 | public:
|
|---|
| 135 | virtual ~interface_pppClient() {};
|
|---|
| 136 | virtual void processEpoch(const std::vector<t_satObs*>& satObs, t_output* output) = 0;
|
|---|
| 137 | virtual void putEphemeris(const t_eph* eph) = 0;
|
|---|
| 138 | virtual void putOrbCorrections(const std::vector<t_orbCorr*>& corr) = 0;
|
|---|
| 139 | virtual void putClkCorrections(const std::vector<t_clkCorr*>& corr) = 0;
|
|---|
| 140 | virtual void putCodeBiases(const std::vector<t_satCodeBias*>& satCodeBias) = 0;
|
|---|
| 141 | };
|
|---|
| 142 |
|
|---|
| 143 | } // namespace BNC_PPP
|
|---|
| 144 |
|
|---|
| 145 | #endif
|
|---|