Changeset 7628 in ntrip for trunk/BNC/src/RTCM
- Timestamp:
- Dec 9, 2015, 5:26:32 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/RTCM/RTCM2_2021.h
r1269 r7628 7 7 class RTCM2_2021 { 8 8 9 public: 9 public: 10 10 11 11 RTCM2_2021(); // Constructor 12 12 13 13 void extract(const RTCM2packet& P); // Packet handler 14 14 void clear(); // Initialization 15 bool valid() const { return valid_; } // Check for complete obs block 15 bool valid() const { return valid_; } // Check for complete obs block 16 16 17 17 double resolvedPhase_L1(int i) const; // L1 & L2 carrier phase of i-th sat 18 double resolvedPhase_L2(int i) const; // with resolved 2^24 cy ambiguity 18 double resolvedPhase_L2(int i) const; // with resolved 2^24 cy ambiguity 19 19 // (based on rng_C1) 20 20 21 public: 21 public: 22 22 23 23 struct HiResCorr { 24 24 25 25 HiResCorr(); 26 26 void reset(); … … 62 62 double tt_; 63 63 bool valid_; 64 }; 64 }; 65 65 66 66 class RTCM2_22 { 67 67 public: 68 RTCM2_22() { 68 RTCM2_22() { 69 69 validMsg = false; 70 for (unsigned ii = 0; ii < 3; ii++){ 71 dL1[ii] = 0.0; 72 dL2[ii] = 0.0; 73 } 70 74 } 71 75 72 76 void extract(const RTCM2packet& P); 73 77
Note:
See TracChangeset
for help on using the changeset viewer.