Changeset 9432 in ntrip
- Timestamp:
- May 18, 2021, 11:15:08 PM (4 years ago)
- Location:
- trunk/BNC/src/PPP
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP/pppClient.cpp
r9431 r9432 606 606 if (_obsPool->refSatChanged()) { 607 607 if(_filter->datumTransformation() != success) { 608 LOG << " _filter->datumTransformation() != success" << endl;608 LOG << "pppFilter::datumTransformation() != success" << endl; 609 609 return finish(failure); 610 610 } 611 611 else { 612 LOG << " _filter->datumTransformation() == success" << endl;612 LOG << "pppFilter::datumTransformation() == success" << endl; 613 613 if (!_obsPool->refSatChangeRequired()) { 614 614 _obsPool->saveLastEpoRefSats(); … … 891 891 return failure; 892 892 } 893 QString str; LOG << prn.toString() << endl;893 QString str; 894 894 if (prn == _obsPool->getRefSatMapElementLastEpoch(sys) || 895 895 _obsPool->getRefSatMapElementLastEpoch(sys) == t_prn() ) { -
trunk/BNC/src/PPP/pppFilter.cpp
r9431 r9432 286 286 PP[iObs] = 1.0 / (obs->sigma(tLC) * obs->sigma(tLC)); 287 287 } 288 }289 }290 if (OPT->_obsModelType == OPT->DCMcodeBias ||291 OPT->_obsModelType == OPT->DCMphaseBias) {292 if (iObs < 2) { // TODO SATNUM => usableSys has to be removed293 return failure;294 288 } 295 289 } -
trunk/BNC/src/PPP/pppSatObs.cpp
r9386 r9432 317 317 // -------------------------- 318 318 if ((_prn.system() == 'R' && (t_lc::includesCode(tLC) || t_lc::includesPhase(tLC))) || 319 (_prn.system() == 'C' && (t_lc::includesCode(tLC) || t_lc::includesPhase(tLC)))) { 319 (_prn.system() == 'C' && (t_lc::includesCode(tLC) || t_lc::includesPhase(tLC)))) { 320 320 retVal *= 5.0; 321 321 } … … 359 359 360 360 retVal = sqrt(retVal); 361 362 if ((_prn.system() == 'R' && t_lc::includesCode(tLC)) || 363 (_prn.system() == 'C' && t_lc::includesCode(tLC))) { 364 retVal *= 3.0; 365 } 361 366 362 367 return retVal;
Note:
See TracChangeset
for help on using the changeset viewer.