Changeset 5890 in ntrip


Ignore:
Timestamp:
Aug 8, 2014, 4:44:16 PM (10 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

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

    r5889 r5890  
    394394    }
    395395
     396    // Create list of observations and start epoch processing
     397    // ------------------------------------------------------
     398    QList<t_obs> obsList;
    396399    for (unsigned iObs = 0; iObs < epo->rnxSat.size(); iObs++) {
    397400      const t_rnxObsFile::t_rnxSat& rnxSat = epo->rnxSat[iObs];
     
    399402      t_obs obs;
    400403      t_rnxObsFile::setObsFromRnx(_rnxObsFile, epo, rnxSat, obs);
    401 
    402       _pppClient->putNewObs(obs);
    403     }
     404      obsList << obs;
     405    }
     406    slotNewObs(QByteArray(_opt->_roverName.c_str()), obsList);
     407
     408
    404409    if (nEpo % 10 == 0) {
    405410      emit progress(nEpo);
Note: See TracChangeset for help on using the changeset viewer.