Changeset 9657 in ntrip


Ignore:
Timestamp:
Mar 15, 2022, 10:20:56 PM (2 years ago)
Author:
stuerze
Message:

minor changes regarding PPP

Location:
trunk/BNC/src
Files:
3 edited

Legend:

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

    r9656 r9657  
    530530////////////////////////////////////////////////////////////////////////////
    531531t_irc t_pppFilter::addNoiseToPar(t_pppParam::e_type parType, char sys) {
    532 
    533532  t_irc irc = failure;
    534533  vector<t_pppParam*> &params = _parlist.params();
     
    537536    if (par->type() == parType && par->prn().system() == sys) {
    538537      int ind = par->indexNew();
    539       LOG << string(_epoTime) << " ADD IONO_NOISE TO " << par->prn().toString()
    540           << endl;
     538      LOG << string(_epoTime) << " ADD " << par->toString() << "_NOISE TO "
     539          << par->prn().toString()  << endl;
    541540      par->setIndex(ind);
    542541      _QFlt(ind + 1, ind + 1) = par->sigma0() * par->sigma0();
  • trunk/BNC/src/PPP/pppSatObs.cpp

    r9654 r9657  
    344344
    345345  retVal = sqrt(retVal);
     346
     347  // De-Weight GLONASS
     348  // -----------------
     349  if (_prn.system() == 'R') {
     350    retVal *= 2.0;
     351  }
     352
    346353
    347354  // Elevation-Dependent Weighting
  • trunk/BNC/src/pppMain.cpp

    r9654 r9657  
    218218      opt->_obsModelType = t_pppOptions::DCMcodeBias;
    219219      opt->_refSatRequired = true;
    220       opt->_noiseCodeBias  = 1.0;
     220      opt->_noiseCodeBias  = 0.01;
    221221      opt->_noiseIon = 0.1;
    222222    }
     
    224224      opt->_obsModelType = t_pppOptions::DCMphaseBias;
    225225      opt->_refSatRequired = true;
    226       opt->_noisePhaseBias = 1.0;
     226      opt->_noisePhaseBias = 0.01;
    227227      opt->_noiseIon = 0.1;
    228228    }
Note: See TracChangeset for help on using the changeset viewer.