Changeset 367 in ntrip for trunk/BNC/RTCM3
- Timestamp:
- Jan 18, 2007, 11:14:34 AM (18 years ago)
- Location:
- trunk/BNC/RTCM3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/BNC/RTCM3/RTCM3Decoder.cpp ¶
r366 r367 90 90 if (rr == 2) { 91 91 std::cerr << "No valid RINEX! All values are modulo 299792.458!\n"; 92 //exit(1);92 exit(1); 93 93 } 94 94 … … 148 148 obs->SNR2 = _Parser.Data.snrL2[ii]; 149 149 } 150 else if (df & (GNSSDF_S1CDATA|GNSSDF_S1PDATA)) { 151 obs->S1 = _Parser.Data.measdata[ii][pos]; 152 } 153 else if (df & (GNSSDF_S2CDATA|GNSSDF_S2PDATA)) { 154 obs->S2 = _Parser.Data.measdata[ii][pos]; 155 } 150 156 } 151 157 } -
TabularUnified trunk/BNC/RTCM3/rtcm3torinex.cpp ¶
r366 r367 1 1 /* 2 2 Converter for RTCM3 data to RINEX. 3 $Id: rtcm3torinex.c ,v 1.162007/01/11 15:32:26 stoeckerExp $3 $Id: rtcm3torinex.cpp,v 1.13 2007/01/17 15:17:20 mervart Exp $ 4 4 Copyright (C) 2005-2006 by Dirk Stoecker <stoecker@euronik.eu> 5 5 … … 51 51 52 52 /* CVS revision and version */ 53 static char revisionstr[] = "$Revision: 1.1 6$";53 static char revisionstr[] = "$Revision: 1.13 $"; 54 54 55 55 static uint32_t CRC24(long size, const unsigned char *buf) … … 249 249 switch(type) 250 250 { 251 case 1001: case 1002: case 1003: case 1004: 251 // Modification of RTCM3TORINEX for BNC: ignore 1001 and 1003 252 //case 1001: case 1002: case 1003: case 1004: 253 case 1002: case 1004: 252 254 if(handle->GPSWeek) 253 255 { … … 408 410 } 409 411 break; 410 case 1009: case 1010: case 1011: case 1012: 412 // Modification of RTCM3TORINEX for BNC: ignore 1009 and 1010 413 //case 1009: case 1010: case 1011: case 1012: 414 case 1010: case 1012: 411 415 { 412 416 int lastlockl1[64]; … … 656 660 #define NUMSTARTSKIP 1 657 661 658 //////////////////////////////////////////////////////////////////// 659 // Aenderung Perlt - kein check auf vorhandene Daten 660 // Abgefragt werden : C1 C2 L1 L2 P1 P2 S1 S2 662 // Modification of RTCM3TORINEX for BNC 661 663 662 664 void HandleHeader(struct RTCM3ParserData *Parser) … … 722 724 Parser->datapos2[data[RINEXENTRY_D2DATA]-1] = GNSSENTRY_D2PDATA; 723 725 } 724 // End e Aenderung Perlt - kein check auf vorhandene Daten726 // End of RTCM3TORINEX modification for BNC 725 727 726 728 … … 852 854 853 855 #ifndef NO_RTCM3_MAIN 854 static char datestr[] = "$Date: 2007/01/1 1 15:32:26$";856 static char datestr[] = "$Date: 2007/01/17 15:17:20 $"; 855 857 856 858 /* The string, which is send as agent in HTTP request */
Note:
See TracChangeset
for help on using the changeset viewer.