Changeset 5355 in ntrip for trunk


Ignore:
Timestamp:
Aug 26, 2013, 10:07:31 AM (11 years ago)
Author:
mervart
Message:
 
Location:
trunk/BNC/src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/RTCM/GPSDecoder.cpp

    r4774 r5355  
    4747extern "C" {
    4848#include "rtcm3torinex.h"
    49 #include "rtcm3torinexsupport.h"
    5049}
    5150
     
    127126  }
    128127
    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());
    130146}
    131147
  • trunk/BNC/src/bncgetthread.cpp

    r5070 r5355  
    696696              allFound = false;
    697697              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
    698702            }
    699703          }
  • trunk/BNC/src/src.pri

    r5331 r5355  
    5555          RTCM/RTCM2_2021.h RTCM/rtcm_utils.h                         \
    5656          RTCM3/RTCM3Decoder.h RTCM3/rtcm3torinex/rtcm3torinex.h      \
    57           RTCM3/rtcm3torinex/rtcm3torinexsupport.h                    \
    5857          RTCM3/RTCM3coDecoder.h                                      \
    5958          RTCM3/clock_and_orbit/clock_orbit_rtcm.h                    \
     
    8483          RTCM/RTCM2_2021.cpp RTCM/rtcm_utils.cpp                     \
    8584          RTCM3/RTCM3Decoder.cpp RTCM3/rtcm3torinex/rtcm3torinex.c    \
    86           RTCM3/rtcm3torinex/rtcm3torinexsupport.c                    \
    8785          RTCM3/RTCM3coDecoder.cpp                                    \
    8886          RTCM3/clock_and_orbit/clock_orbit_rtcm.c                    \
Note: See TracChangeset for help on using the changeset viewer.