Changeset 10221 in ntrip for trunk/BNC/src/combination
- Timestamp:
- Oct 6, 2023, 12:31:04 PM (17 months ago)
- Location:
- trunk/BNC/src/combination
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/combination/bncbiassnx.cpp
r10216 r10221 264 264 if (cb.contains("C1X") && cb.contains("C2X")) {cb.insert("C1X-C2X", cb["C1X"] - cb["C2X"]);} 265 265 if (cb.contains("C1X") && cb.contains("C5X")) {cb.insert("C1X-C5X", cb["C1X"] - cb["C5X"]);} 266 break; 266 267 default: 267 268 break; … … 271 272 } 272 273 273 // get DSBs from OSBs274 // 274 275 //////////////////////////////////////////////////////////////////////////// 275 276 t_irc bncBiasSnx::cleanDsb() { 276 for (auto itS = _snxSatCodeBiasMap.begin(); itS != _snxSatCodeBiasMap.end();){ 277 if (!_useGnss[itS.key().at(0).toLatin1()]) { 277 278 for (auto itS = _snxSatCodeBiasMap.begin(); itS != _snxSatCodeBiasMap.end();) { 279 char sys = itS.key().at(0).toLatin1(); 280 if (!_useGnss[sys]) { 281 delete itS.value(); 278 282 itS = _snxSatCodeBiasMap.erase(itS); 279 283 } -
trunk/BNC/src/combination/bnccomb.cpp
r10216 r10221 174 174 newAC->name = hlp[1]; 175 175 newAC->weightFactor = hlp[2].toDouble(); 176 newAC->isAPC = (newAC->mountPoint.mid(0,4) =="SSRA");176 newAC->isAPC = bool(newAC->mountPoint.mid(0,4) == "SSRA"); 177 177 QMapIterator<char, unsigned> itSys(_cmbSysPrn); 178 178 // init … … 301 301 _MAXRES = 999.0; 302 302 } 303 303 304 } 304 305 … … 306 307 //////////////////////////////////////////////////////////////////////////// 307 308 bncComb::~bncComb() { 309 308 310 QListIterator<cmbAC*> icAC(_ACs); 309 311 while (icAC.hasNext()) { … … 315 317 if (_ssrCorr) { 316 318 delete _ssrCorr; 317 318 } 319 } 320 319 321 delete _antex; 320 322 delete _bsx; … … 1050 1052 clkCorrections.push_back(clkCorr); 1051 1053 1052 1053 1054 ColumnVector xc(6); 1054 1055 ColumnVector vv(3); … … 1062 1063 // Correction Phase Center --> CoM 1063 1064 // ------------------------------- 1064 1065 1065 ColumnVector dx(3); dx = 0.0; 1066 1066 ColumnVector apc(3); apc = 0.0;
Note:
See TracChangeset
for help on using the changeset viewer.