Rev | Line | |
---|
[5708] | 1 | #ifndef OPTIONS_H
|
---|
| 2 | #define OPTIONS_H
|
---|
| 3 |
|
---|
| 4 | #include <string>
|
---|
| 5 | #include <vector>
|
---|
| 6 | #include <newmat.h>
|
---|
[5810] | 7 | #include "pppInclude.h"
|
---|
[5708] | 8 |
|
---|
[5814] | 9 | namespace BNC_PPP {
|
---|
[5708] | 10 |
|
---|
[5810] | 11 | class t_pppOptions {
|
---|
[5708] | 12 | public:
|
---|
[8905] | 13 | enum e_type {IF, UncombPPP, PPPRTK, DCMcodeBias, DCMphaseBias};
|
---|
[5810] | 14 | t_pppOptions();
|
---|
| 15 | ~t_pppOptions();
|
---|
[5742] | 16 |
|
---|
[6035] | 17 | std::vector<char> systems() const;
|
---|
[5912] | 18 | const std::vector<t_lc::type>& LCs(char system) const;
|
---|
[6035] | 19 | std::vector<t_lc::type> ambLCs(char system) const;
|
---|
[7048] | 20 | std::vector<t_lc::type> codeLCs(char system) const;
|
---|
[8905] | 21 | std::vector<t_lc::type> ionoLCs(char system) const;
|
---|
[6035] | 22 | bool useSystem(char system) const {return LCs(system).size() > 0;}
|
---|
[5912] | 23 | bool useOrbClkCorr() const;
|
---|
| 24 | bool estTrp() const {return _aprSigTrp > 0.0 || _noiseTrp > 0.0;}
|
---|
| 25 | bool xyzAprRoverSet() const {
|
---|
| 26 | return (_xyzAprRover[0] != 0.0 || _xyzAprRover[1] != 0.0 || _xyzAprRover[2] != 0.0);
|
---|
| 27 | }
|
---|
[5708] | 28 |
|
---|
[8905] | 29 | e_type _obsModelType;
|
---|
| 30 | QStringList _obsmodelTypeStr = QStringList()
|
---|
| 31 | << "IF PPP"
|
---|
| 32 | << "Uncombined PPP"
|
---|
| 33 | << "PPP-RTK"
|
---|
| 34 | << "DCM with Code Biases"
|
---|
| 35 | << "DCM with Phase Biases";
|
---|
[5912] | 36 | bool _realTime;
|
---|
| 37 | std::string _crdFile;
|
---|
| 38 | std::string _corrMount;
|
---|
[9481] | 39 | bool _isAPC;
|
---|
[5912] | 40 | std::string _rinexObs;
|
---|
| 41 | std::string _rinexNav;
|
---|
| 42 | std::string _corrFile;
|
---|
[5913] | 43 | double _corrWaitTime;
|
---|
[7521] | 44 | std::string _roverName;
|
---|
[5912] | 45 | ColumnVector _xyzAprRover;
|
---|
| 46 | ColumnVector _neuEccRover;
|
---|
[7521] | 47 | std::string _recNameRover;
|
---|
| 48 | std::string _antNameRover;
|
---|
| 49 | std::string _antexFileName;
|
---|
[7961] | 50 | std::string _blqFileName;
|
---|
[5912] | 51 | double _sigmaC1;
|
---|
| 52 | double _sigmaL1;
|
---|
[9302] | 53 | double _sigmaGIM;
|
---|
| 54 | double _sigmaTz0;
|
---|
[5912] | 55 | double _maxResC1;
|
---|
| 56 | double _maxResL1;
|
---|
| 57 | bool _eleWgtCode;
|
---|
| 58 | bool _eleWgtPhase;
|
---|
| 59 | double _minEle;
|
---|
| 60 | int _minObs;
|
---|
| 61 | ColumnVector _aprSigCrd;
|
---|
| 62 | ColumnVector _noiseCrd;
|
---|
[9302] | 63 | double _aprSigClk;
|
---|
[9386] | 64 | double _aprSigOGR;
|
---|
| 65 | double _aprSigOGE;
|
---|
| 66 | double _aprSigOGC;
|
---|
[5912] | 67 | double _aprSigTrp;
|
---|
| 68 | double _noiseTrp;
|
---|
[9439] | 69 | double _noiseIon;
|
---|
[8905] | 70 | double _aprSigIon;
|
---|
| 71 | double _aprSigCodeBias;
|
---|
| 72 | double _aprSigPhaseBias;
|
---|
[6965] | 73 | int _nmeaPort;
|
---|
[5912] | 74 | double _aprSigAmb;
|
---|
[5957] | 75 | double _seedingTime;
|
---|
[5912] | 76 | std::vector<t_lc::type> _LCsGPS;
|
---|
| 77 | std::vector<t_lc::type> _LCsGLONASS;
|
---|
| 78 | std::vector<t_lc::type> _LCsGalileo;
|
---|
[6965] | 79 | std::vector<t_lc::type> _LCsBDS;
|
---|
[8905] | 80 | bool _pseudoObsIono;
|
---|
[8961] | 81 | bool _pseudoObsTropo;
|
---|
[8905] | 82 | bool _refSatRequired;
|
---|
[5708] | 83 | };
|
---|
| 84 |
|
---|
| 85 | }
|
---|
| 86 |
|
---|
| 87 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.