Changeset 3857 in ntrip
- Timestamp:
- Apr 12, 2012, 7:21:03 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/rinex/rnxobsfile.cpp
r3856 r3857 648 648 .arg(sec, 11, 'f', 7); 649 649 650 *_stream << dateStr << endl; 651 } 650 int flag = 0; 651 *_stream << dateStr 652 << QString("%1%2").arg(flag, 3).arg(epo->rnxSat.size(), 3); 653 for (unsigned ii = 0; ii < epo->rnxSat.size(); ii++) { 654 if (ii > 0 && ii % 12 == 0) { 655 *_stream << endl << QString().leftJustified(32); 656 } 657 *_stream << epo->rnxSat[ii].satSys 658 << QString("%1").arg(epo->rnxSat[ii].satNum, 2); 659 } 660 *_stream << endl; 661 662 // 09 1 13 2 0 0.0000000 0 9G28G27G20G19G17G11G 8R 7R20 663 // -5564703.685 9 -4336133.864 7 21186297.708 21186297.708 21186299.597 664 // 1280.878 998.081 665 }
Note:
See TracChangeset
for help on using the changeset viewer.