source: ntrip/trunk/BNC/src/pppOptions.h@ 6965

Last change on this file since 6965 was 6965, checked in by stuerze, 9 years ago

some additions regarding BDS

File size: 1.9 KB
Line 
1#ifndef OPTIONS_H
2#define OPTIONS_H
3
4#include <string>
5#include <vector>
6#include <newmat.h>
7#include "pppInclude.h"
8
9namespace BNC_PPP {
10
11class t_pppOptions {
12 public:
13 t_pppOptions();
14 ~t_pppOptions();
15
16 std::vector<char> systems() const;
17 const std::vector<t_lc::type>& LCs(char system) const;
18 std::vector<t_lc::type> ambLCs(char system) const;
19 bool useSystem(char system) const {return LCs(system).size() > 0;}
20 bool useOrbClkCorr() const;
21 bool estTrp() const {return _aprSigTrp > 0.0 || _noiseTrp > 0.0;}
22 bool xyzAprRoverSet() const {
23 return (_xyzAprRover[0] != 0.0 || _xyzAprRover[1] != 0.0 || _xyzAprRover[2] != 0.0);
24 }
25
26 bool _realTime;
27 std::string _crdFile;
28 std::string _corrMount;
29 std::string _rinexObs;
30 std::string _rinexNav;
31 std::string _corrFile;
32 double _corrWaitTime;
33 std::string _roverName;
34 ColumnVector _xyzAprRover;
35 ColumnVector _neuEccRover;
36 std::string _antNameRover;
37 std::string _antexFileName;
38 double _sigmaC1;
39 double _sigmaL1;
40 double _maxResC1;
41 double _maxResL1;
42 bool _eleWgtCode;
43 bool _eleWgtPhase;
44 double _minEle;
45 int _minObs;
46 ColumnVector _aprSigCrd;
47 ColumnVector _noiseCrd;
48 double _noiseClk;
49 double _aprSigTrp;
50 double _noiseTrp;
51 int _nmeaPort;
52 double _aprSigAmb;
53 double _seedingTime;
54 std::vector<t_lc::type> _LCsGPS;
55 std::vector<t_lc::type> _LCsGLONASS;
56 std::vector<t_lc::type> _LCsGalileo;
57 std::vector<t_lc::type> _LCsBDS;
58};
59
60}
61
62#endif
Note: See TracBrowser for help on using the repository browser.