Changeset 6974 in ntrip for trunk/BNC/src/PPP_SSR_I/pppFilter.cpp
- Timestamp:
- Jun 25, 2015, 4:35:34 PM (11 years ago)
- File:
-
- 1 edited
-
trunk/BNC/src/PPP_SSR_I/pppFilter.cpp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP_SSR_I/pppFilter.cpp
r6968 r6974 233 233 if (OPT->useSystem('E')) { 234 234 _params.push_back(new t_pppParam(t_pppParam::GALILEO_OFFSET, ++nextPar, "")); 235 } /*235 } 236 236 if (OPT->useSystem('C')) { 237 237 _params.push_back(new t_pppParam(t_pppParam::BDS_OFFSET, ++nextPar, "")); 238 } */238 } 239 239 240 240 _QQ.ReSize(_params.size()); … … 528 528 } 529 529 530 // BDS Offset 531 // ---------- 530 532 else if (pp->type == t_pppParam::BDS_OFFSET) { 531 _QQ(iPar,iPar) += 0.1 * 0.1;//TODO533 _QQ(iPar,iPar) += 0.1 * 0.1; //TODO 532 534 } 533 535 } … … 726 728 if (iPhase == 1) { 727 729 if (maxResGlo > 2.98 * OPT->_maxResL1) { 728 LOG << "Outlier Phase " << prnGlo.toAscii().data() << ' ' << maxResGlo << endl; 730 LOG << "Outlier Phase " << prnGlo.mid(0,3).toAscii().data() << ' ' << maxResGlo << endl; 729 731 return prnGlo; 730 732 } 731 733 else if (maxResGPS > 2.98 * OPT->_maxResL1) { 732 LOG << "Outlier Phase " << prnGPS.toAscii().data() << ' ' << maxResGPS << endl; 734 LOG << "Outlier Phase " << prnGPS.mid(0,3).toAscii().data() << ' ' << maxResGPS << endl; 733 735 return prnGPS; 734 736 } 735 737 } 736 738 else if (iPhase == 0 && maxResGPS > 2.98 * OPT->_maxResC1) { 737 LOG << "Outlier Code " << prnGPS.toAscii().data() << ' ' << maxResGPS << endl; 739 LOG << "Outlier Code " << prnGPS.mid(0,3).toAscii().data() << ' ' << maxResGPS << endl; 738 740 return prnGPS; 739 741 }
Note:
See TracChangeset
for help on using the changeset viewer.
