Changeset 5916 in ntrip
- Timestamp:
- Aug 12, 2014, 5:08:34 PM (11 years ago)
- Location:
- trunk/BNC/src/PPP
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/BNC/src/PPP/pppFilter.cpp ¶
r5877 r5916 84 84 return failure; 85 85 } 86 vector<t_pppSatObs*>& obsVector= epoch->obsVector();86 vector<t_pppSatObs*>& allObs = epoch->obsVector(); 87 87 88 88 // Time of the Epoch 89 89 // ----------------- 90 90 _epoTime = epoch->epoTime(); 91 92 // Auxiliary vectors of processed linear combinations93 // --------------------------------------------------94 vector<t_lc::type> LCsCode;95 vector<t_lc::type> LCsPhase;96 vector<t_lc::type> LCsAll = OPT->LCs();97 for (unsigned ii = 0; ii < LCsAll.size(); ii++) {98 const t_lc::type& tLC = LCsAll[ii];99 if (t_lc::includesCode(tLC) && !t_lc::includesPhase(tLC)) {100 LCsCode.push_back(tLC);101 }102 else {103 LCsPhase.push_back(tLC);104 }105 }106 vector<t_lc::type> ambLCs;107 if (LCsPhase.size() == 1) {108 ambLCs.push_back(LCsPhase[0]);109 }110 else if (LCsPhase.size() > 1) {111 ambLCs.push_back(t_lc::l1);112 ambLCs.push_back(t_lc::l2);113 }114 91 115 92 // Set Parameters 116 93 // -------------- 117 _parlist->set(_epoTime, a mbLCs, obsVector);94 _parlist->set(_epoTime, allObs); 118 95 const vector<t_pppParam*>& params = _parlist->params(); 119 96 … … 149 126 } 150 127 151 // Process LCs containing code separately 152 // -------------------------------------- 153 for (unsigned ipc = 0; ipc <= 1; ipc++) { 154 const vector<t_lc::type>& LCsHlp = (ipc == 0 ? LCsCode : LCsPhase); 155 if (LCsHlp.size() > 0) { 156 if ( processLC(LCsHlp, obsVector) != success ) { 157 return failure; 158 } 159 } 160 } 128 // Process Satellite Systems separately 129 // ------------------------------------ 130 for (unsigned iSys = 0; iSys < OPT->systems().size(); iSys++) { 131 char system = OPT->systems()[iSys]; 132 vector<t_pppSatObs*> obsVector; 133 for (unsigned jj = 0; jj < allObs.size(); jj++) { 134 if (allObs[jj]->prn().system() == system) { 135 obsVector.push_back(allObs[jj]); 136 } 137 } 138 if ( processSystem(OPT->LCs(system), obsVector) != success ) { 139 return failure; 140 } 141 } 142 143 cmpDOP(allObs); 161 144 162 145 _parlist->printResult(_epoTime, _QFlt, _xFlt); … … 167 150 // Process Selected LCs 168 151 //////////////////////////////////////////////////////////////////////////// 169 t_irc t_pppFilter::process LC(const vector<t_lc::type>& LCs,170 vector<t_pppSatObs*>& obsVector) { 152 t_irc t_pppFilter::processSystem(const vector<t_lc::type>& LCs, 153 const vector<t_pppSatObs*>& obsVector) { 171 154 172 155 LOG.setf(ios::fixed); … … 257 240 double maxOutlier = 0.0; 258 241 int maxOutlierIndex = -1; 259 t_lc::type maxOutlierLC = t_lc::dummy; 260 for (unsigned sysGPS = 0; sysGPS <= 1; sysGPS++) { // first GLONASS then GPS 261 for (unsigned ii = 0; ii < usedObs.size(); ii++) { 262 if (usedObs[ii]->prn().system() != 'G' || sysGPS == 1) { 263 const t_lc::type tLC = usedTypes[ii]; 264 double res = fabs(vv[ii]); 265 if (res > OPT->maxRes(tLC)) { 266 if (res > fabs(maxOutlier)) { 267 maxOutlier = vv[ii]; 268 maxOutlierIndex = ii; 269 maxOutlierLC = tLC; 270 } 271 } 272 } 273 } 274 if (maxOutlierIndex != -1) { 275 break; 242 t_lc::type maxOutlierLC = t_lc::dummy; 243 for (unsigned ii = 0; ii < usedObs.size(); ii++) { 244 const t_lc::type tLC = usedTypes[ii]; 245 double res = fabs(vv[ii]); 246 if (res > usedObs[ii]->maxRes(tLC)) { 247 if (res > fabs(maxOutlier)) { 248 maxOutlier = vv[ii]; 249 maxOutlierIndex = ii; 250 maxOutlierLC = tLC; 251 } 276 252 } 277 253 } … … 322 298 } 323 299 } 324 cmpDOP(LCs, AA);325 300 break; 326 301 } … … 333 308 //////////////////////////////////////////////////////////////////////////// 334 309 t_irc t_pppFilter::detectCycleSlips(const vector<t_lc::type>& LCs, 335 310 const vector<t_pppSatObs*>& obsVector) { 336 311 337 312 const double SLIP = 20.0; // slip threshold … … 402 377 //////////////////////////////////////////////////////////////////////////// 403 378 t_irc t_pppFilter::resetAmb(t_prn prn, const vector<t_pppSatObs*>& obsVector, 404 SymmetricMatrix* QSav, ColumnVector* xSav) { 379 SymmetricMatrix* QSav, ColumnVector* xSav) { 405 380 t_irc irc = failure; 406 381 vector<t_pppParam*>& params = _parlist->params(); … … 438 413 // Compute various DOP Values 439 414 //////////////////////////////////////////////////////////////////////////// 440 void t_pppFilter::cmpDOP(const std::vector<t_lc::type>& LCs, const Matrix& AA) {415 void t_pppFilter::cmpDOP(const vector<t_pppSatObs*>& obsVector) { 441 416 442 417 _dop.reset(); 443 _numSat = 0; 418 444 419 try { 445 _numSat = AA.Nrows() / LCs.size(); 446 420 const unsigned numPar = 4; 421 Matrix AA(obsVector.size(), numPar); 422 _numSat = 0; 423 for (unsigned ii = 0; ii < obsVector.size(); ii++) { 424 t_pppSatObs* obs = obsVector[ii]; 425 if (obs->isValid() && !obs->outlier()) { 426 ++_numSat; 427 for (unsigned iPar = 0; iPar < numPar; iPar++) { 428 const t_pppParam* par = _parlist->params()[iPar]; 429 AA[_numSat-1][iPar] = par->partial(_epoTime, obs, t_lc::c1); 430 } 431 } 432 } 447 433 if (_numSat < 4) { 448 434 return; 449 435 } 450 451 Matrix BB(_numSat, 4); 452 453 for (int ii = 1; ii <= _numSat; ii++) { 454 BB.Row(ii) = AA.Row(ii*LCs.size()).columns(1,4); 455 } 456 457 SymmetricMatrix NN; NN << BB.t() * BB; 436 AA = AA.Rows(1, _numSat); 437 SymmetricMatrix NN; NN << AA.t() * AA; 458 438 SymmetricMatrix QQ = NN.i(); 459 439 -
TabularUnified trunk/BNC/src/PPP/pppFilter.h ¶
r5826 r5916 50 50 double G; 51 51 }; 52 t_irc processLC(const std::vector<t_lc::type>& LCs, std::vector<t_pppSatObs*>& obsVector); 52 t_irc processSystem(const std::vector<t_lc::type>& LCs, 53 const std::vector<t_pppSatObs*>& obsVector); 53 54 54 55 t_irc detectCycleSlips(const std::vector<t_lc::type>& LCs, … … 58 59 SymmetricMatrix* QSav = 0, ColumnVector* xSav = 0); 59 60 60 void cmpDOP(const std::vector<t_ lc::type>& LCs, const Matrix& AA);61 void cmpDOP(const std::vector<t_pppSatObs*>& obsVector); 61 62 62 63 bncTime _epoTime; -
TabularUnified trunk/BNC/src/PPP/pppParlist.h ¶
r5914 r5916 97 97 ~t_pppParlist(); 98 98 99 t_irc set(const bncTime& epoTime, const std::vector<t_lc::type>& ambLCs, 100 const std::vector<t_pppSatObs*>& obsVector); 101 99 t_irc set(const bncTime& epoTime, const std::vector<t_pppSatObs*>& obsVector); 102 100 unsigned nPar() const {return _params.size();} 103 101 const std::vector<t_pppParam*>& params() const {return _params;} -
TabularUnified trunk/BNC/src/PPP/pppSatObs.h ¶
r5844 r5916 34 34 double lambda(t_lc::type tLC) const; 35 35 double sigma(t_lc::type tLC) const; 36 double maxRes(t_lc::type tLC) const; 36 37 bool outlier() const {return _outlier;} 37 38 void setOutlier() {_outlier = true;}
Note:
See TracChangeset
for help on using the changeset viewer.