Changeset 10612 in ntrip for trunk/BNC/src


Ignore:
Timestamp:
Feb 17, 2025, 4:56:35 PM (6 days ago)
Author:
stuerze
Message:

minor changes combination

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/combination/bnccomb.cpp

    r10611 r10612  
    10051005        << " Maximum Residuum " << maxRes << ' '
    10061006        << 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-2
    1010       facSys *= 2.0;
    1011     }
    10121007    if (maxRes > _MAX_RES) {
    10131008      for (int iPar = 1; iPar <= _params[sys].size(); iPar++) {
     
    14641459    }
    14651460    else {
    1466       if ( corr->_eph == ephLast || corr->_eph == ephPrev ) {
     1461      if ( corr->_eph == ephLast ||
     1462           corr->_eph == ephPrev ) {
    14671463        switchToLastEph(ephLast, corr);
    14681464      }
     
    15431539      else if (corr == maxDiff[prn]) {
    15441540        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)) {
    15511542          out << epoTime.datestr().c_str()    << " "
    15521543              << epoTime.timestr().c_str()    << " "
Note: See TracChangeset for help on using the changeset viewer.