Changeset 10332 in ntrip for trunk/BNC/src/PPP
- Timestamp:
- Feb 13, 2024, 5:04:29 PM (11 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP/pppClient.cpp
r10319 r10332 265 265 } 266 266 267 if ((numBancroft = _usedSystems.value('G')) ) {267 if ((numBancroft = _usedSystems.value('G')) > _opt->_minObs) { 268 268 sysBancroft = 'G'; 269 269 } 270 else if ((numBancroft = _usedSystems.value('E')) ) {270 else if ((numBancroft = _usedSystems.value('E')) > _opt->_minObs) { 271 271 sysBancroft = 'E'; 272 272 } 273 else if ((numBancroft = _usedSystems.value('C')) ) {273 else if ((numBancroft = _usedSystems.value('C')) > _opt->_minObs) { 274 274 sysBancroft = 'C'; 275 275 } 276 else if ((numBancroft = _usedSystems.value('R')) ) {276 else if ((numBancroft = _usedSystems.value('R')) > _opt->_minObs) { 277 277 sysBancroft = 'R'; 278 278 } 279 279 else { 280 LOG << "t_pppClient::cmpBancroft not enough observations: " << endl; 280 281 return failure; 281 282 }
Note:
See TracChangeset
for help on using the changeset viewer.