Changeset 1029 in ntrip for trunk/BNC/RTCM/RTCM2.cpp


Ignore:
Timestamp:
Aug 8, 2008, 8:02:33 PM (16 years ago)
Author:
mervart
Message:

Back to status of date 20080807

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/RTCM/RTCM2.cpp

    r1024 r1029  
    945945  cph_L1.resize(0);        // Carrier phase [m]
    946946  cph_L2.resize(0);        // Carrier phase [m]
    947   slip_L1.resize(0);       // Slip counter
    948   slip_L2.resize(0);       // Slip counter
    949947 
    950948  availability.reset();    // Message status flags
     
    10071005  bool    isGPS,isCAcode,isL1,isOth;
    10081006  int     NSat,idx;
    1009   int     sid,prn,slip_cnt;
     1007  int     sid,prn;
    10101008  double  t,rng,cph;
    10111009
     
    11191117      // Carrier phase measurement (mod 2^23 [cy]; sign matched to range)
    11201118      cph = -P.getBits(iSat*48+40,32)/256.0;
    1121 
    1122       // Slip counter
    1123       slip_cnt = P.getUnsignedBits(iSat*48+35,5);
    11241119
    11251120      // Is this a new PRN?
     
    11371132        cph_L1.push_back(0.0);
    11381133        cph_L2.push_back(0.0);
    1139         slip_L1.push_back(-1);
    1140         slip_L2.push_back(-1);
    11411134      };
    11421135     
    11431136      // Store measurement
    11441137      if (isL1) {
    1145         cph_L1 [idx] = cph;
    1146         slip_L1[idx] = slip_cnt;
     1138        cph_L1[idx] = cph;
    11471139      }
    11481140      else {
    1149         cph_L2 [idx] = cph;
    1150         slip_L2[idx] = slip_cnt;
     1141        cph_L2[idx] = cph;
    11511142      };
    11521143           
     
    13481339
    13491340}; // End of namespace rtcm2
    1350 
    1351 
    1352 
Note: See TracChangeset for help on using the changeset viewer.