Changeset 10612 in ntrip for trunk/BNC/src
- Timestamp:
- Feb 17, 2025, 4:56:35 PM (6 days ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/combination/bnccomb.cpp
r10611 r10612 1005 1005 << " Maximum Residuum " << maxRes << ' ' 1006 1006 << corrs(sys)[maxResIndex-1]->_acName << ' ' << corrs(sys)[maxResIndex-1]->_prn.mid(0,3); 1007 double facSys = 1.0;1008 if (sys == 'C' &&1009 corrs(sys)[maxResIndex-1]->_prn.mid(1,2).toInt() <= 16) {// BDS-21010 facSys *= 2.0;1011 }1012 1007 if (maxRes > _MAX_RES) { 1013 1008 for (int iPar = 1; iPar <= _params[sys].size(); iPar++) { … … 1464 1459 } 1465 1460 else { 1466 if ( corr->_eph == ephLast || corr->_eph == ephPrev ) { 1461 if ( corr->_eph == ephLast || 1462 corr->_eph == ephPrev ) { 1467 1463 switchToLastEph(ephLast, corr); 1468 1464 } … … 1543 1539 else if (corr == maxDiff[prn]) { 1544 1540 double norm = corr->_diffRao.NormFrobenius(); 1545 double facSys = 1.0; 1546 if (sys == 'C' && 1547 prn.mid(1,2).toInt() <= 16) {// BDS-2 1548 facSys *= 5.0; 1549 } 1550 if (norm > (_MAX_DISPLACEMENT * facSys)) { 1541 if (norm > (_MAX_DISPLACEMENT)) { 1551 1542 out << epoTime.datestr().c_str() << " " 1552 1543 << epoTime.timestr().c_str() << " "
Note:
See TracChangeset
for help on using the changeset viewer.