Changeset 3184 in ntrip for trunk/BNC/combination
- Timestamp:
- Mar 29, 2011, 8:19:50 PM (14 years ago)
- Location:
- trunk/BNC/combination
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/BNC/combination/bnccomb.cpp ¶
r3181 r3184 180 180 } 181 181 else { 182 QString prep = "BNC"; 183 QString ext = ".sp3"; 184 QString path = settings.value("cmbSP3Path").toString(); 182 QString sklFileName = settings.value("cmbSP3Path").toString() 183 + QDir::separator() + "BNC.sp3"; 185 184 QString interval = ""; 186 185 int sampl = 0; 187 _sp3 = new bncSP3(prep, ext, path, interval, sampl); 188 } 189 190 _append = Qt::CheckState(settings.value("rnxAppend").toInt()) == Qt::Checked; 186 _sp3 = new bncSP3(sklFileName, interval, sampl); 187 } 191 188 192 189 // ANTEX File … … 449 446 } 450 447 } 451 _sp3->write(resTime.gpsw(), resTime.gpssec(), corr->prn, xc , _append);448 _sp3->write(resTime.gpsw(), resTime.gpssec(), corr->prn, xc); 452 449 } 453 450 -
TabularUnified trunk/BNC/combination/bnccomb.h ¶
r3181 r3184 90 90 std::ofstream* _out; 91 91 bncSP3* _sp3; 92 bool _append;93 92 bncAntex* _antex; 94 93 };
Note:
See TracChangeset
for help on using the changeset viewer.