Changeset 5712 in ntrip
- Timestamp:
- Jul 31, 2014, 11:44:57 AM (10 years ago)
- Location:
- trunk/BNC/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP/options.cpp
r5708 r5712 50 50 } 51 51 52 //53 //////////////////////////////////////////////////////////////////////////////54 bool t_options::dualFreqRequired() const {55 return true;56 }57 58 //59 //////////////////////////////////////////////////////////////////////////////60 bool t_options::corrRequired() const {61 return true;62 }63 64 //65 //////////////////////////////////////////////////////////////////////////////66 bool t_options::biasRequired() const {67 return true;68 }69 -
trunk/BNC/src/PPP/options.h
r5711 r5712 13 13 t_options(); 14 14 ~t_options() {}; 15 bool _realTime; 16 std::string _roverName; 17 double _sigCrd[3]; 18 double _noiseCrd[3]; 19 double _sigTropo; 20 double _noiseTropo; 21 std::string _corrMount; 22 std::string _rinexObs; 23 std::string _rinexNav; 24 std::string _corrFile; 25 std::string _crdFile; 26 std::string _antexFile; 15 27 16 const std::string& roverName() const {return _roverName;}17 const ColumnVector& xyzAprRover() const {return _xyzAprRover;}18 const ColumnVector& ellAprRover() const {return _ellAprRover;}19 20 bool xyzAprRoverSet() const {21 return (_xyzAprRover[0] != 0.0 || _xyzAprRover[1] != 0.0 || _xyzAprRover[2] != 0.0);22 }23 24 const ColumnVector& neuEccRover() const {return _neuEccRover;}25 const std::string& antNameRover() const {return _antNameRover;}26 const std::string& antexFileName() const {return _antexFileName;}27 bool dualFreqRequired() const;28 bool corrRequired() const;29 bool biasRequired() const;30 int minobs() const {return _minobs;}31 double minEle() const {return _minEle;}32 double maxResPhase() const {return _maxResPhase;}33 double maxResCode() const {return _maxResCode;}34 double sigmaPhase() const {return _sigmaPhase;}35 double sigmaCode() const {return _sigmaCode;}36 double sigmaCrd() const {return _sigmaCrd;}37 bool estTropo() const {return _estTropo;}38 double sigmaTropo() const {return _sigmaTropo;}39 double noiseTropo() const {return _noiseTropo;}40 bool eleWgtPhase() const {return _eleWgtPhase;}41 bool eleWgtCode() const {return _eleWgtCode;}42 const std::vector<t_lc::type>& LCs() const {return _LCs;}43 44 private:45 std::string _roverName;46 28 ColumnVector _xyzAprRover; 47 29 ColumnVector _ellAprRover; … … 59 41 double _sigmaPhase; 60 42 double _sigmaCode; 61 double _sigmaCrd;62 43 bool _estTropo; 63 double _sigmaTropo;64 double _noiseTropo;65 44 bool _estIono; 66 45 double _sigmaIono; -
trunk/BNC/src/src.pri
r5708 r5712 59 59 RTCM3/ephemeris.h RTCM3/timeutils.h \ 60 60 GPSS/gpssDecoder.h GPSS/hassDecoder.h \ 61 PPP/pppwidgets.h PPP/options.h 61 PPP/pppwidgets.h PPP/options.h PPP/pppMain.h 62 62 63 63 HEADERS += serial/qextserialbase.h serial/qextserialport.h … … 88 88 RTCM3/ephemeris.cpp RTCM3/timeutils.cpp \ 89 89 GPSS/gpssDecoder.cpp GPSS/hassDecoder.cpp \ 90 PPP/pppwidgets.cpp PPP/options.cpp 90 PPP/pppwidgets.cpp PPP/options.cpp PPP/pppMain.cpp 91 91 92 92 SOURCES += serial/qextserialbase.cpp serial/qextserialport.cpp
Note:
See TracChangeset
for help on using the changeset viewer.