Changeset 5328 in ntrip


Ignore:
Timestamp:
Jul 18, 2013, 5:30:06 PM (11 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/bncrinex.cpp

    r5070 r5328  
    482482  }
    483483
     484  // Check whether observation types available
     485  // -----------------------------------------
     486  QMutableListIterator<t_obs> mItDump(dumpList);
     487  while (mItDump.hasNext()) {
     488    t_obs& obs = mItDump.next();
     489    if (!_header._obsTypesV3.contains(obs.satSys) && !_header._obsTypesV3.contains(obs.satSys)) {
     490      mItDump.remove();
     491    }
     492  }
     493  if (dumpList.isEmpty()) {
     494    return;
     495  }
     496
    484497  double sec = double(datTim.time().second()) + fmod(fObs.GPSWeeks,1.0);
    485498
Note: See TracChangeset for help on using the changeset viewer.