Ignore:
Timestamp:
Aug 8, 2014, 11:42:16 AM (10 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

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

    r5870 r5873  
    7474    connect(BNC_CORE, SIGNAL(newCorrections(QStringList)),
    7575            this, SLOT(slotNewCorrections(QStringList)));
     76
     77    connect(this, SIGNAL(newPosition(bncTime, double, double, double)),
     78            BNC_CORE, SLOT(slotNewPosition(bncTime, double, double, double)));
    7679
    7780    for (unsigned iPrn = 0; iPrn <= t_prn::MAXPRN; iPrn++) {
     
    200203    _pppClient->processEpoch(satObs, &output);
    201204
     205    if (!output._error && _opt->xyzAprRoverSet()) {
     206      ColumnVector dx(3);
     207      dx[0] = _opt->_xyzAprRover[0] - output._xyzRover[0];
     208      dx[1] = _opt->_xyzAprRover[1] - output._xyzRover[1];
     209      dx[2] = _opt->_xyzAprRover[2] - output._xyzRover[2];
     210      emit newPosition (output._epoTime, dx[0], dx[1], dx[2]);
     211    }
     212
    202213    delete _epoData.front(); _epoData.pop_front();
    203214   
Note: See TracChangeset for help on using the changeset viewer.