- Timestamp:
- Sep 7, 2006, 9:48:35 PM (18 years ago)
- Location:
- trunk/BNC
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/RTCM3/rtcm3.cpp
r119 r131 51 51 while(int rr = RTCM3Parser(&_Parser)) { 52 52 53 if (!_Parser.init) { 54 HandleHeader(&_Parser); 55 _Parser.init = 1; 56 } 57 53 58 if (rr == 2) { 54 59 cerr << "No valid RINEX! All values are modulo 299792.458!\n"; -
trunk/BNC/RTCM3/rtcm3torinex.cpp
r99 r131 1 1 /* 2 2 Converter for RTCM3 data to RINEX. 3 $Id: rtcm3torinex.cpp,v 1. 6 2006/09/02 12:23:05mervart Exp $3 $Id: rtcm3torinex.cpp,v 1.7 2006/09/06 16:13:16 mervart Exp $ 4 4 5 5 Program written bei … … 66 66 67 67 /* CVS revision and version */ 68 static char revisionstr[] = "$Revision: 1. 6$";69 static char datestr[] = "$Date: 2006/09/0 2 12:23:05$";68 static char revisionstr[] = "$Revision: 1.7 $"; 69 static char datestr[] = "$Date: 2006/09/06 16:13:16 $"; 70 70 static int stop = 0; 71 71 … … 740 740 741 741 742 #ifndef NO_RTCM3_MAIN 742 743 for(i = 0; i < hdata.numheaders; ++i) 743 744 printf("%s\n", hdata.data.unnamed[i]); 744 745 printf(" " 745 746 "END OF HEADER\n"); 747 #endif 746 748 } 747 749 -
trunk/BNC/RTCM3/rtcm3torinex.h
r119 r131 100 100 }; 101 101 102 void HandleHeader(struct RTCM3ParserData *Parser); 102 103 int RTCM3Parser(struct RTCM3ParserData *handle); 103 104 void HandleByte(struct RTCM3ParserData *Parser, unsigned int byte); -
trunk/BNC/bncrinex.cpp
r130 r131 89 89 QDate nextDate; 90 90 91 if (intStr == "15 min") { 91 //// //// beg test 92 //// if (1) { 93 //// hlpStr = datTim.toString("_hh_mm_ss"); 94 //// nextDate = datTim.date(); 95 //// nextTime = datTim.time().addSecs(10); 96 //// } else 97 //// //// end test 98 if (intStr == "15 min") { 92 99 char ch = 'A' + datTim.time().hour(); 93 100 hlpStr = ch; … … 253 260 } 254 261 255 _out << datTim.toString(" yy MM dd hh mm ss.zzz0000").toAscii().data(); 262 _out << datTim.toString(" yy MM dd hh mm ss.zzz0000").toAscii().data() 263 << " " << 0 << setw(3) << _obs.size(); 256 264 257 265 QListIterator<Observation*> it(_obs); int iSat = 0;
Note:
See TracChangeset
for help on using the changeset viewer.