Changeset 332 in ntrip for trunk/BNC/RTCM
- Timestamp:
- Nov 26, 2006, 9:41:49 AM (18 years ago)
- Location:
- trunk/BNC/RTCM
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/BNC/RTCM/RTCM2.cpp ¶
r265 r332 37 37 // 2006/10/17 OMO Removed obsolete check of multiple message indicator 38 38 // 2006/10/17 OMO Fixed parity handling 39 // 2006/10/18 OMO Improved screening of bad data in RTCM2_Obs::extract 40 // 2006/11/25 OMO Revised check for presence of GLONASS data 39 41 // 40 42 // (c) DLR/GSOC … … 279 281 #if (DEBUG>0) 280 282 if (!validParity()) { 281 c out<< "Parity error "283 cerr << "Parity error " 282 284 << bitset<32>(all()) << endl; 283 285 }; … … 301 303 #if (DEBUG>0) 302 304 if (!validParity()) { 303 c out<< "Parity error "305 cerr << "Parity error " 304 306 << bitset<32>(all()) << endl; 305 307 }; … … 334 336 #if (DEBUG>0) 335 337 if (!validParity()) { 336 c out<< "Parity error "338 cerr << "Parity error " 337 339 << bitset<32>(all()) << endl; 338 340 }; … … 358 360 #if (DEBUG>0) 359 361 if (!validParity()) { 360 c out<< "Parity error "362 cerr << "Parity error " 361 363 << bitset<32>(all()) << endl; 362 364 }; … … 779 781 780 782 clear(); 783 GPSonly = true; 781 784 782 785 }; … … 841 844 bool RTCM2_Obs::valid() const { 842 845 843 return ( allGPS() && (allGLONASS() || !anyGLONASS()));846 return ( allGPS() && ( GPSonly || allGLONASS() ) ); 844 847 845 848 }; … … 859 862 // Check validity and packet type 860 863 861 if (!P.valid()) return; 864 if ( ! ( P.valid() && 865 (P.ID()==18 || P.ID()==19) && 866 P.nDataWords()>1 ) ) return; 862 867 863 868 // Clear previous data if block was already complete … … 883 888 // Constellation (for first satellite in message) 884 889 isGPS = ( P.getUnsignedBits(26,1)==0 ); 885 890 GPSonly = GPSonly && isGPS; 891 886 892 // Multiple Message Indicator (only checked for first satellite) 887 893 // pendingMsg = ( P.getUnsignedBits(24,1)==1 ); … … 899 905 }; 900 906 901 // Discard GLONASS obser avtions if no prior GPS observations907 // Discard GLONASS observations if no prior GPS observations 902 908 // are available 903 909 if (!isGPS && !anyGPS() ) return; … … 971 977 // Constellation (for first satellite in message) 972 978 isGPS = ( P.getUnsignedBits(26,1)==0 ); 979 GPSonly = GPSonly && isGPS; 973 980 974 981 // Multiple Message Indicator (only checked for first satellite) … … 987 994 }; 988 995 989 // Discard GLONASS obser avtions if norprior GPS observations996 // Discard GLONASS observations if no prior GPS observations 990 997 // are available 991 998 if (!isGPS && !anyGPS() ) return; … … 1101 1108 1102 1109 epochWeek = refWeek; 1103 1104 epochSecs = secs; 1105 while (epochSecs < refSecs - 1800) { 1106 epochSecs += 3600; 1107 } 1108 while (epochSecs > refSecs + 1800) { 1109 epochSecs -= 3600; 1110 } 1111 1112 //// epochSecs = secs + 3600.0*(floor((refSecs-secs)/3600.0+0.5)); 1110 epochSecs = secs + 3600.0*(floor((refSecs-secs)/3600.0+0.5)); 1113 1111 1114 1112 if (epochSecs<0 ) { epochWeek--; epochSecs+=secsPerWeek; }; -
TabularUnified trunk/BNC/RTCM/RTCM2.h ¶
r254 r332 27 27 // 2006/10/05 OMO Specified const'ness of various member functions 28 28 // 2006/10/17 OMO Removed obsolete check of multiple message indicator 29 // 2006/11/25 OMO Revised check for presence of GLONASS data 29 30 // 30 31 // (c) DLR/GSOC … … 320 321 321 322 msgflags availability; // Msg availability flags 322 323 bool GPSonly; // Flag for GPS-only station 324 323 325 }; 324 326
Note:
See TracChangeset
for help on using the changeset viewer.