Changeset 5873 in ntrip for trunk/BNC/src/PPP
- Timestamp:
- Aug 8, 2014, 11:42:16 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP/pppRunRealTime.cpp
r5870 r5873 74 74 connect(BNC_CORE, SIGNAL(newCorrections(QStringList)), 75 75 this, SLOT(slotNewCorrections(QStringList))); 76 77 connect(this, SIGNAL(newPosition(bncTime, double, double, double)), 78 BNC_CORE, SLOT(slotNewPosition(bncTime, double, double, double))); 76 79 77 80 for (unsigned iPrn = 0; iPrn <= t_prn::MAXPRN; iPrn++) { … … 200 203 _pppClient->processEpoch(satObs, &output); 201 204 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 202 213 delete _epoData.front(); _epoData.pop_front(); 203 214
Note:
See TracChangeset
for help on using the changeset viewer.