Changeset 3674 in ntrip
- Timestamp:
- Feb 12, 2012, 10:26:58 AM (13 years ago)
- Location:
- trunk/BNC
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/BNC/bncpostprocess.cpp ¶
r3671 r3674 97 97 cout << "corrFile: " << _opt->corrFileName.toAscii().data() << endl; 98 98 99 // Read Ephemerides 100 // ---------------- 99 101 t_eph* eph = 0; 100 102 while (_rnxNavFile->getNextEph(eph) == success) { … … 104 106 } 105 107 108 // Read Observations 109 // ----------------- 110 while (_rnxObsFile->getEpoch() == success) { 111 112 } 113 114 ///// beg test 106 115 int MAXI = 5; 107 116 for (int ii = 1; ii < MAXI; ii++) { … … 110 119 sleep(1); 111 120 } 121 //// end test 112 122 113 123 emit finished(); -
TabularUnified trunk/BNC/rnxobsfile.cpp ¶
r3673 r3674 166 166 int numSat; 167 167 readInt(line, 29, 3, numSat); 168 169 int pos = 32; 170 for (int iSat = 0; iSat < numSat; iSat++) { 171 if (iSat > 0 && iSat % 12 == 0) { 172 line = _stream->readLine(); 173 pos = 32; 174 } 175 QString prn = line.mid(pos, 3); 176 cout << "prn = " << prn.toAscii().data() << endl; 177 pos += 3; 178 } 179 180 //// beg test 181 return failure; 182 //// end test 168 183 } 184 169 185 return success; 170 186 }
Note:
See TracChangeset
for help on using the changeset viewer.