Changeset 10333 in ntrip


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

minor changes

File:
1 edited

Legend:

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

    r10332 r10333  
    265265  }
    266266
    267   if      ((numBancroft = _usedSystems.value('G')) > _opt->_minObs) {
     267  if      ((numBancroft = _usedSystems.value('G')) >= _opt->_minObs) {
    268268    sysBancroft = 'G';
    269269  }
    270   else if ((numBancroft = _usedSystems.value('E')) > _opt->_minObs) {
     270  else if ((numBancroft = _usedSystems.value('E')) >= _opt->_minObs) {
    271271    sysBancroft = 'E';
    272272  }
    273   else if ((numBancroft = _usedSystems.value('C')) > _opt->_minObs) {
     273  else if ((numBancroft = _usedSystems.value('C')) >= _opt->_minObs) {
    274274    sysBancroft = 'C';
    275275  }
    276   else if ((numBancroft = _usedSystems.value('R')) > _opt->_minObs) {
     276  else if ((numBancroft = _usedSystems.value('R')) >= _opt->_minObs) {
    277277    sysBancroft = 'R';
    278278  }
Note: See TracChangeset for help on using the changeset viewer.