Changeset 4608 in ntrip


Ignore:
Timestamp:
Aug 31, 2012, 10:44:58 AM (12 years ago)
Author:
mervart
Message:
 
Location:
trunk/BNC/src
Files:
2 edited

Legend:

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

    r4560 r4608  
    6060    snrL2 = 0;
    6161    snrL5 = 0;
     62    slipL1 = false;
     63    slipL2 = false;
     64    slipL5 = false;
    6265  }
    6366
     
    8184  int    snrL2;  // s = int(floor(SNR/6)); if (s > 9) s = 9; if (s < 1) s = 1;
    8285  int    snrL5;
     86
     87  bool   slipL1;
     88  bool   slipL2;
     89  bool   slipL5;
    8390 
    8491  double             _measdata[GNSSENTRY_NUMBER];  // data fields */
  • trunk/BNC/src/rinex/reqcanalyze.cpp

    r4607 r4608  
    288288  bool      okFlag = false;
    289289
    290   // Compute the Multipath
    291   // ----------------------
     290  // Availability and Slip Flags
     291  // ---------------------------
    292292  double L1 = obs.measdata("L1", 3.0);
    293293  if (L1 != 0) {
     
    298298    newObs->_hasL2 = true;
    299299  }
     300  if (obs.slipL1) {
     301    newObs->_slipL1 = true;
     302  }
     303  if (obs.slipL2) {
     304    newObs->_slipL2 = true;
     305  }
     306
     307  // Compute the Multipath
     308  // ----------------------
    300309  if (L1 != 0.0 && L2 != 0.0) {
    301310    double f1 = t_CST::f1(obs.satSys, obs.slotNum);
Note: See TracChangeset for help on using the changeset viewer.