- Timestamp:
- Jul 10, 2015, 4:59:51 PM (9 years ago)
- Location:
- trunk/BNC/src/PPP_SSR_I
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP_SSR_I/pppClient.cpp
r7029 r7031 91 91 const t_satObs* obs = satObs[ii]; 92 92 t_prn prn = obs->_prn; 93 if (prn.system() == 'E') {prn.setFlags(1);} // force I/NAV usage 93 94 t_satData* satData = new t_satData(); 94 95 … … 114 115 if (satCB && satCB->_bias.size()) { 115 116 for (unsigned ii = 0; ii < satCB->_bias.size(); ii++) { 117 116 118 const t_frqCodeBias& bias = satCB->_bias[ii]; 117 119 if (frqObs && frqObs->_rnxType2ch == bias._rnxType2ch) { -
trunk/BNC/src/PPP_SSR_I/pppFilter.cpp
r6974 r7031 531 531 // ---------- 532 532 else if (pp->type == t_pppParam::BDS_OFFSET) { 533 _QQ(iPar,iPar) += 0.1 * 0.1; //TODO533 _QQ(iPar,iPar) += 0.1 * 0.1; //TODO: TEST 534 534 } 535 535 } … … 613 613 614 614 if (OPT->useOrbClkCorr()) { 615 LOG << "Precise Point Positioning of Epoch " << _time. timestr(1)615 LOG << "Precise Point Positioning of Epoch " << _time.datestr() << "_" << _time.timestr(1) 616 616 << "\n---------------------------------------------------------------\n"; 617 617 } 618 618 else { 619 LOG << "Single Point Positioning of Epoch " << _time. timestr(1)619 LOG << "Single Point Positioning of Epoch " << _time.datestr() << "_" << _time.timestr(1) 620 620 << "\n--------------------------------------------------------------\n"; 621 621 } … … 722 722 QString prnGPS; 723 723 QString prnGlo; 724 double maxResGPS = 0.0; 725 double maxResGlo = 0.0; 724 double maxResGPS = 0.0; // all the other systems except GLONASS 725 double maxResGlo = 0.0; // GLONASS 726 726 findMaxRes(vv, satData, prnGPS, prnGlo, maxResGPS, maxResGlo); 727 727 … … 885 885 // Phase Observations 886 886 // ------------------ 887 887 888 if (iPhase == 1) { 888 889 ll(iObs) = satData->L3 - cmpValue(satData, true); … … 1072 1073 LOG << "Neglected PRNs: "; 1073 1074 if (!_outlierGPS.isEmpty()) { 1074 LOG << _outlierGPS.last(). toAscii().data() << ' ';1075 LOG << _outlierGPS.last().mid(0,3).toAscii().data() << ' '; 1075 1076 } 1076 1077 QStringListIterator itGlo(_outlierGlo); 1077 1078 while (itGlo.hasNext()) { 1078 1079 QString prn = itGlo.next(); 1079 LOG << prn. toAscii().data() << ' ';1080 LOG << prn.mid(0,3).toAscii().data() << ' '; 1080 1081 } 1081 1082 }
Note:
See TracChangeset
for help on using the changeset viewer.