Ignore:
Timestamp:
Jun 25, 2015, 4:35:34 PM (11 years ago)
Author:
stuerze
Message:

BDS observations added in SSR I PPP mode

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/PPP_SSR_I/pppFilter.cpp

    r6968 r6974  
    233233  if (OPT->useSystem('E')) {
    234234    _params.push_back(new t_pppParam(t_pppParam::GALILEO_OFFSET, ++nextPar, ""));
    235   }/*
     235  }
    236236  if (OPT->useSystem('C')) {
    237237    _params.push_back(new t_pppParam(t_pppParam::BDS_OFFSET, ++nextPar, ""));
    238   }*/
     238  }
    239239
    240240  _QQ.ReSize(_params.size());
     
    528528      }
    529529
     530      // BDS Offset
     531      // ----------
    530532      else if (pp->type == t_pppParam::BDS_OFFSET) {
    531         _QQ(iPar,iPar) += 0.1 * 0.1;//TODO
     533       _QQ(iPar,iPar) += 0.1 * 0.1; //TODO
    532534      }
    533535    }
     
    726728  if      (iPhase == 1) {
    727729    if      (maxResGlo > 2.98 * OPT->_maxResL1) {
    728       LOG << "Outlier Phase " << prnGlo.toAscii().data() << ' ' << maxResGlo << endl;
     730      LOG << "Outlier Phase " << prnGlo.mid(0,3).toAscii().data() << ' ' << maxResGlo << endl;
    729731      return prnGlo;
    730732    }
    731733    else if (maxResGPS > 2.98 * OPT->_maxResL1) {
    732       LOG << "Outlier Phase " << prnGPS.toAscii().data() << ' ' << maxResGPS << endl;
     734      LOG << "Outlier Phase " << prnGPS.mid(0,3).toAscii().data() << ' ' << maxResGPS << endl;
    733735      return prnGPS;
    734736    }
    735737  }
    736738  else if (iPhase == 0 && maxResGPS > 2.98 * OPT->_maxResC1) {
    737     LOG << "Outlier Code  " << prnGPS.toAscii().data() << ' ' << maxResGPS << endl;
     739    LOG << "Outlier Code  " << prnGPS.mid(0,3).toAscii().data() << ' ' << maxResGPS << endl;
    738740    return prnGPS;
    739741  }
Note: See TracChangeset for help on using the changeset viewer.