Changeset 9866 in ntrip for trunk/BNC/src/PPP
- Timestamp:
- Oct 31, 2022, 9:49:58 PM (2 years ago)
- Location:
- trunk/BNC/src/PPP
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/BNC/src/PPP/pppSatObs.cpp ¶
r9821 r9866 46 46 _stecRefSat = 0.0; 47 47 _stecSat = 0.0; 48 _signalPriorities = QString::fromStdString(OPT->_signalPriorities); 49 if (!_signalPriorities.size()) { 50 if (OPT->_obsModelType == OPT->DCMcodeBias || 51 OPT->_obsModelType == OPT->DCMphaseBias) { 52 // at the moment only one code or phase bias per system (G,R,E,C)/modulation considered 53 _signalPriorities = "G:12&CW R:12&CP E:1&CX E:5&QX C:26&I"; 54 } 55 else { 56 _signalPriorities = "G:12&CWPSLX R:12&CP E:1&CBX E:5&QIX C:26&IQX"; 57 } 58 } 59 48 60 for (unsigned ii = 0; ii < t_frequency::max; ii++) { 49 61 _obs[ii] = 0; … … 68 80 // Select pseudo-ranges and phase observations 69 81 // ------------------------------------------- 70 71 QString preferredAttribList = "G:12&CWPSLX R:12&CP E:1&CBX E:5&QIX C:26&IQX"; 72 if (OPT->_obsModelType == OPT->DCMcodeBias || 73 OPT->_obsModelType == OPT->DCMphaseBias) { 74 // at the moment only one code or phase bias per system (G,R,E,C)/modulation considered 75 preferredAttribList = "G:12&CW R:12&CP E:1&CX E:5&QX C:26&I"; 76 } 77 QStringList priorList = preferredAttribList.split(" ", QString::SkipEmptyParts); 82 QStringList priorList = _signalPriorities.split(" ", QString::SkipEmptyParts); 78 83 string preferredAttrib; 79 84 char obsSys = pppSatObs._prn.system(); //cout << "SATELLITE: " << pppSatObs._prn.toString() << endl; -
TabularUnified trunk/BNC/src/PPP/pppSatObs.h ¶
r9568 r9866 152 152 double _stecSat; 153 153 double _tropo0; 154 }; 154 QString _signalPriorities; 155 }; 155 156 156 157 }
Note:
See TracChangeset
for help on using the changeset viewer.