Changeset 7773 in ntrip for trunk/BNC/src/bncrinex.cpp
- Timestamp:
- Feb 15, 2016, 12:07:49 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/bncrinex.cpp
r7665 r7773 583 583 const t_frqObs* frqObs = obs._obs[ii]; 584 584 if (frqObs->_codeValid) { 585 str << " C" << frqObs->_rnxType2ch << ' ' 586 << setw(14) << setprecision(3) << frqObs->_code; 585 str << ' ' 586 << left << setw(3) << "C" + frqObs->_rnxType2ch << ' ' 587 << right << setw(14) << setprecision(3) << frqObs->_code; 587 588 } 588 589 if (frqObs->_phaseValid) { 589 str << " L" << frqObs->_rnxType2ch << ' ' 590 << setw(14) << setprecision(3) << frqObs->_phase 591 << ' ' << setw(3) << frqObs->_slipCounter; 590 str << ' ' 591 << left << setw(3) << "L" + frqObs->_rnxType2ch << ' ' 592 << right << setw(14) << setprecision(3) << frqObs->_phase << ' ' 593 << right << setw(4) << frqObs->_slipCounter; 592 594 } 593 595 if (frqObs->_dopplerValid) { 594 str << " D" << frqObs->_rnxType2ch << ' ' 595 << setw(14) << setprecision(3) << frqObs->_doppler; 596 str << ' ' 597 << left << setw(3) << "D" + frqObs->_rnxType2ch << ' ' 598 << right << setw(14) << setprecision(3) << frqObs->_doppler; 596 599 } 597 600 if (frqObs->_snrValid) { 598 str << " S" << frqObs->_rnxType2ch << ' ' 599 << setw(8) << setprecision(3) << frqObs->_snr; 601 str << ' ' 602 << left << setw(3) << "S" + frqObs->_rnxType2ch << ' ' 603 << right << setw(8) << setprecision(3) << frqObs->_snr; 600 604 } 601 605 }
Note:
See TracChangeset
for help on using the changeset viewer.