Changeset 9695 in ntrip for trunk/BNC/src
- Timestamp:
- Apr 13, 2022, 9:24:53 AM (3 years ago)
- Location:
- trunk/BNC/src/combination
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/combination/bnccomb.cpp
r9691 r9695 281 281 _antex = new bncAntex(); 282 282 if (_antex->readFile(antexFileName) != success) { 283 emit newMessage(" wrong ANTEX file", true);283 emit newMessage("bncCmb: wrong ANTEX file", true); 284 284 delete _antex; 285 285 _antex = 0; … … 295 295 _bsx = new bncBiasSnx(); 296 296 if (_bsx->readFile(bsxFileName) != success) { 297 emit newMessage(" wrong Bias SINEX file", true);297 emit newMessage("bncComb: wrong Bias SINEX file", true); 298 298 delete _bsx; 299 299 _bsx = 0; … … 301 301 } 302 302 if (_bsx) { 303 intms = 6.0 * 3600 * 1000.0;304 QTimer::singleShot( ms, this, SLOT(slotReadBiasSnxFile()));303 _ms = 6.0 * 3600 * 1000.0; 304 QTimer::singleShot(_ms, this, SLOT(slotReadBiasSnxFile())); 305 305 } 306 306 … … 346 346 bncSettings settings; 347 347 QString bsxFileName = settings.value("cmbBsxFile").toString(); 348 if (!bsxFileName.isEmpty()) { 348 349 if (bsxFileName.isEmpty()) { 350 emit newMessage("bncComb: no Bias SINEX file specified", true); 351 return; 352 } 353 if (!_bsx) { 349 354 _bsx = new bncBiasSnx(); 350 355 } 351 352 356 if (_bsx->readFile(bsxFileName) != success) { 353 emit newMessage(" wrong Bias SINEX file", true);357 emit newMessage("bncComb: wrong Bias SINEX file", true); 354 358 delete _bsx; 355 359 _bsx = 0; 356 360 } 357 //#ifdef BNC_DEBUG_CMB358 361 else { 359 emit newMessage("Successfully read Bias SINEX file", true); 360 } 361 //#endif 362 emit newMessage("bncComb: successfully read Bias SINEX file", true); 363 } 364 365 QTimer::singleShot(_ms, this, SLOT(slotReadBiasSnxFile())); 362 366 } 363 367 -
trunk/BNC/src/combination/bnccomb.h
r9690 r9695 224 224 e_method _method; 225 225 int _cmbSampl; 226 int _ms; 226 227 QString _cmbRefAttributes; 227 228 QMap<QString, QMap<t_prn, t_orbCorr> > _orbCorrections;
Note:
See TracChangeset
for help on using the changeset viewer.