Changeset 9559 in ntrip for trunk/BNC/src/pppMain.cpp


Ignore:
Timestamp:
Dec 1, 2021, 5:47:15 PM (2 years ago)
Author:
stuerze
Message:

update regarding PPP

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/pppMain.cpp

    r9556 r9559  
    143143    QStringList hlp = iSta.next().split(",");
    144144
    145     if (hlp.size() < 11) {
     145    if (hlp.size() < 10) {
    146146      throw t_except("pppMain: wrong option staTable");
    147147    }
     
    159159    opt->_aprSigTrp    = hlp[7].toDouble();
    160160    opt->_noiseTrp     = hlp[8].toDouble();
    161     opt->_noiseIon     = hlp[9].toDouble();
    162     opt->_nmeaPort     = hlp[10].toInt();
     161    opt->_nmeaPort     = hlp[9].toInt();
    163162
    164163    if (_realTime) {
     
    205204      opt->_obsModelType = t_pppOptions::PPPRTK;
    206205      opt->_pseudoObsIono  = false;
     206      opt->_noiseIon = 0.1;
    207207    }
    208208    else if (settings.value("PPP/modelObs").toString() == "Uncombined PPP") {
    209209      opt->_obsModelType = t_pppOptions::UncombPPP;
     210      opt->_noiseIon = 0.1;
    210211      if (opt->_pseudoObsIono) {
    211212        opt->_refSatRequired = true;
     
    216217      opt->_refSatRequired = true;
    217218      opt->_noiseCodeBias  = 1000.0;
     219      opt->_noiseIon = 0.1;
    218220    }
    219221    else if (settings.value("PPP/modelObs").toString() == "DCM with Phase Biases") {
     
    221223      opt->_refSatRequired = true;
    222224      opt->_noisePhaseBias = 1000.0;
     225      opt->_noiseIon = 0.1;
    223226    }
    224227#endif
Note: See TracChangeset for help on using the changeset viewer.