- Timestamp:
- Aug 26, 2013, 10:07:31 AM (11 years ago)
- Location:
- trunk/BNC/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/RTCM/GPSDecoder.cpp
r4774 r5355 47 47 extern "C" { 48 48 #include "rtcm3torinex.h" 49 #include "rtcm3torinexsupport.h"50 49 } 51 50 … … 127 126 } 128 127 129 return rrinex3codetoentry(rnxStr.toAscii().data()); 128 for (int ie = 0; ie < GNSSENTRY_NUMBER; ie++) { 129 if (rnxStr.mid(1) == QString(_codetype[ie])) { 130 if (rnxStr[0] == 'C') { 131 return ie + GNSSENTRY_CODE; 132 } 133 else if (rnxStr[0] == 'L') { 134 return ie + GNSSENTRY_PHASE; 135 } 136 else if (rnxStr[0] == 'D') { 137 return ie + GNSSENTRY_DOPPLER; 138 } 139 else if (rnxStr[0] == 'S') { 140 return ie + GNSSENTRY_SNR; 141 } 142 } 143 } 144 return -1; 145 //// return rrinex3codetoentry(rnxStr.toAscii().data()); 130 146 } 131 147 -
trunk/BNC/src/bncgetthread.cpp
r5070 r5355 696 696 allFound = false; 697 697 rnxTypes << obs.rnxStr(iEntry); 698 //// beg test 699 qDebug() << iEntry << obs.satSys << obs.rnxStr(iEntry) 700 << obs.measdata(obs.rnxStr(iEntry), 3.01); 701 //// end test 698 702 } 699 703 } -
trunk/BNC/src/src.pri
r5331 r5355 55 55 RTCM/RTCM2_2021.h RTCM/rtcm_utils.h \ 56 56 RTCM3/RTCM3Decoder.h RTCM3/rtcm3torinex/rtcm3torinex.h \ 57 RTCM3/rtcm3torinex/rtcm3torinexsupport.h \58 57 RTCM3/RTCM3coDecoder.h \ 59 58 RTCM3/clock_and_orbit/clock_orbit_rtcm.h \ … … 84 83 RTCM/RTCM2_2021.cpp RTCM/rtcm_utils.cpp \ 85 84 RTCM3/RTCM3Decoder.cpp RTCM3/rtcm3torinex/rtcm3torinex.c \ 86 RTCM3/rtcm3torinex/rtcm3torinexsupport.c \87 85 RTCM3/RTCM3coDecoder.cpp \ 88 86 RTCM3/clock_and_orbit/clock_orbit_rtcm.c \
Note:
See TracChangeset
for help on using the changeset viewer.