|
Last change
on this file since 7525 was 7521, checked in by stuerze, 10 years ago |
|
minor changes to allow sinex troposphere file writing in version 2.0
|
|
File size:
1.9 KB
|
| 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:
|
|---|
| [5810] | 13 | t_pppOptions();
|
|---|
| 14 | ~t_pppOptions();
|
|---|
| [5742] | 15 |
|
|---|
| [6035] | 16 | std::vector<char> systems() const;
|
|---|
| [5912] | 17 | const std::vector<t_lc::type>& LCs(char system) const;
|
|---|
| [6035] | 18 | std::vector<t_lc::type> ambLCs(char system) const;
|
|---|
| [7048] | 19 | std::vector<t_lc::type> codeLCs(char system) const;
|
|---|
| [6035] | 20 | bool useSystem(char system) const {return LCs(system).size() > 0;}
|
|---|
| [5912] | 21 | bool useOrbClkCorr() const;
|
|---|
| 22 | bool estTrp() const {return _aprSigTrp > 0.0 || _noiseTrp > 0.0;}
|
|---|
| 23 | bool xyzAprRoverSet() const {
|
|---|
| 24 | return (_xyzAprRover[0] != 0.0 || _xyzAprRover[1] != 0.0 || _xyzAprRover[2] != 0.0);
|
|---|
| 25 | }
|
|---|
| [5708] | 26 |
|
|---|
| [5912] | 27 | bool _realTime;
|
|---|
| 28 | std::string _crdFile;
|
|---|
| 29 | std::string _corrMount;
|
|---|
| 30 | std::string _rinexObs;
|
|---|
| 31 | std::string _rinexNav;
|
|---|
| 32 | std::string _corrFile;
|
|---|
| [5913] | 33 | double _corrWaitTime;
|
|---|
| [7521] | 34 | std::string _roverName;
|
|---|
| [5912] | 35 | ColumnVector _xyzAprRover;
|
|---|
| 36 | ColumnVector _neuEccRover;
|
|---|
| [7521] | 37 | std::string _recNameRover;
|
|---|
| 38 | std::string _antNameRover;
|
|---|
| 39 | std::string _antexFileName;
|
|---|
| [5912] | 40 | double _sigmaC1;
|
|---|
| 41 | double _sigmaL1;
|
|---|
| 42 | double _maxResC1;
|
|---|
| 43 | double _maxResL1;
|
|---|
| 44 | bool _eleWgtCode;
|
|---|
| 45 | bool _eleWgtPhase;
|
|---|
| 46 | double _minEle;
|
|---|
| 47 | int _minObs;
|
|---|
| 48 | ColumnVector _aprSigCrd;
|
|---|
| 49 | ColumnVector _noiseCrd;
|
|---|
| 50 | double _noiseClk;
|
|---|
| 51 | double _aprSigTrp;
|
|---|
| 52 | double _noiseTrp;
|
|---|
| [6965] | 53 | int _nmeaPort;
|
|---|
| [5912] | 54 | double _aprSigAmb;
|
|---|
| [5957] | 55 | double _seedingTime;
|
|---|
| [5912] | 56 | std::vector<t_lc::type> _LCsGPS;
|
|---|
| 57 | std::vector<t_lc::type> _LCsGLONASS;
|
|---|
| 58 | std::vector<t_lc::type> _LCsGalileo;
|
|---|
| [6965] | 59 | std::vector<t_lc::type> _LCsBDS;
|
|---|
| [5708] | 60 | };
|
|---|
| 61 |
|
|---|
| 62 | }
|
|---|
| 63 |
|
|---|
| 64 | #endif
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.