Changeset 2249 in ntrip
- Timestamp:
- Jan 12, 2010, 10:57:47 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bncpppclient.cpp
r2247 r2249 39 39 * -----------------------------------------------------------------------*/ 40 40 41 #include <newmatio.h> 41 42 #include <iomanip> 42 43 … … 332 333 ee->position(tt.gpsw(), tt.gpssec(), xc.data(), vv.data()); 333 334 335 //// beg test 336 ColumnVector xcTst(4); 337 ColumnVector vvTst(3); 338 bncTime ttTst(tt.gpsw(), floor(tt.gpssec()+0.5)); 339 ee->position(ttTst.gpsw(), ttTst.gpssec(), xcTst.data(), vvTst.data()); 340 cout.setf(ios::fixed); 341 cout << "A: " << ttTst.timestr() << " " << prn.toAscii().data() << " " 342 << xcTst.t(); 343 //// end test 344 334 345 if (CORR_REQUIRED) { 335 346 if (_corr.contains(prn)) { 336 347 t_corr* cc = _corr.value(prn); 348 349 //// beg test 350 applyCorr(cc, xcTst, vvTst); 351 cout << "B: " << ttTst.timestr() << " " 352 << ee->IOD() << " " << cc->iod << " " << (tt - cc->tt) << " " 353 << prn.toAscii().data() << " " << xcTst.t(); 354 //// beg test 355 337 356 if (ee->IOD() == cc->iod && (tt - cc->tt) < MAXAGE) { 338 357 corr = true;
Note:
See TracChangeset
for help on using the changeset viewer.