Changeset 2693 in ntrip
- Timestamp:
- Nov 14, 2010, 12:15:10 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bncrinex.cpp
r2690 r2693 413 413 else if (line.indexOf("# / TYPES OF OBSERV") != -1) { 414 414 if (_rinexVers == 3) { 415 _out << "G 8 C1C C1P L1C S1C C2W C2P L2W S2WSYS / # / OBS TYPES" << endl;415 _out << "G 11 C1C C1P L1C S1C C2W C2P L2W S2W C5X L5X S5X SYS / # / OBS TYPES" << endl; 416 416 _out << "R 8 C1C C1P L1C S1C C2C C2P L2C S2C SYS / # / OBS TYPES" << endl; 417 417 _out << "E 6 C1X L1X S1X C5X L5X S5X SYS / # / OBS TYPES" << endl; … … 485 485 << " " << "ANTENNA: DELTA H/E/N" << endl; 486 486 if (_rinexVers == 3) { 487 _out << "G 8 C1C C1P L1C S1C C2W C2P L2W S2WSYS / # / OBS TYPES" << endl;487 _out << "G 11 C1C C1P L1C S1C C2W C2P L2W S2W C5X L5X S5X SYS / # / OBS TYPES" << endl; 488 488 _out << "R 8 C1C C1P L1C S1C C2C C2P L2C S2C SYS / # / OBS TYPES" << endl; 489 489 _out << "E 6 C1X L1X S1X C5X L5X S5X SYS / # / OBS TYPES" << endl; … … 630 630 // --------------- 631 631 if (_rinexVers == 3) { 632 if (obs->_o.satSys == 'G' || obs->_o.satSys == 'R') { // GPS and Glonass 632 if (obs->_o.satSys == 'G') { // GPS 633 _out << obs->_o.satSys 634 << setw(2) << setfill('0') << obs->_o.satNum << setfill(' ') 635 << setw(14) << setprecision(3) << obs->_o.C1 << ' ' << ' ' 636 << setw(14) << setprecision(3) << obs->_o.P1 << ' ' << ' ' 637 << setw(14) << setprecision(3) << obs->_o.L1 << lli1 << ' ' 638 << setw(14) << setprecision(3) << obs->_o.S1 << ' ' << ' ' 639 << setw(14) << setprecision(3) << obs->_o.C2 << ' ' << ' ' 640 << setw(14) << setprecision(3) << obs->_o.P2 << ' ' << ' ' 641 << setw(14) << setprecision(3) << obs->_o.L2 << lli2 << ' ' 642 << setw(14) << setprecision(3) << obs->_o.S2 << ' ' << ' ' 643 << setw(14) << setprecision(3) << obs->_o.C5 << ' ' << ' ' 644 << setw(14) << setprecision(3) << obs->_o.L5 << lli5 << ' ' 645 << setw(14) << setprecision(3) << obs->_o.S5 << endl; 646 } 647 else if (obs->_o.satSys == 'R') { // Glonass 633 648 _out << obs->_o.satSys 634 649 << setw(2) << setfill('0') << obs->_o.satNum << setfill(' ')
Note:
See TracChangeset
for help on using the changeset viewer.