Changeset 10332 in ntrip


Ignore:
Timestamp:
Feb 13, 2024, 5:04:29 PM (3 months ago)
Author:
stuerze
Message:

minor changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/PPP/pppClient.cpp

    r10319 r10332  
    265265  }
    266266
    267   if      ((numBancroft = _usedSystems.value('G'))) {
     267  if      ((numBancroft = _usedSystems.value('G')) > _opt->_minObs) {
    268268    sysBancroft = 'G';
    269269  }
    270   else if ((numBancroft = _usedSystems.value('E'))) {
     270  else if ((numBancroft = _usedSystems.value('E')) > _opt->_minObs) {
    271271    sysBancroft = 'E';
    272272  }
    273   else if ((numBancroft = _usedSystems.value('C'))) {
     273  else if ((numBancroft = _usedSystems.value('C')) > _opt->_minObs) {
    274274    sysBancroft = 'C';
    275275  }
    276   else if ((numBancroft = _usedSystems.value('R'))) {
     276  else if ((numBancroft = _usedSystems.value('R')) > _opt->_minObs) {
    277277    sysBancroft = 'R';
    278278  }
    279279  else {
     280    LOG << "t_pppClient::cmpBancroft not enough observations: " << endl;
    280281    return failure;
    281282  }
Note: See TracChangeset for help on using the changeset viewer.