Changeset 7043 in ntrip for trunk/BNC/src
- Timestamp:
- Jul 14, 2015, 10:49:02 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/RTCM/RTCM2Decoder.cpp
r6703 r7043 277 277 if (corr->PRN < 200) { 278 278 sys = 'G'; 279 prn = sys + QString("%1 ").arg(corr->PRN, 2, 10, QChar('0'));279 prn = sys + QString("%1_0").arg(corr->PRN, 2, 10, QChar('0')); 280 280 } else { 281 281 sys = 'R'; 282 prn = sys + QString("%1 ").arg(corr->PRN - 200, 2, 10, QChar('0'));282 prn = sys + QString("%1_0").arg(corr->PRN - 200, 2, 10, QChar('0')); 283 283 } 284 284
Note:
See TracChangeset
for help on using the changeset viewer.