Changeset 6428 in ntrip for trunk


Ignore:
Timestamp:
Dec 24, 2014, 5:15:40 PM (9 years ago)
Author:
mervart
Message:
 
Location:
trunk/BNC/src/orbComp
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/orbComp/sp3Comp.cpp

    r6427 r6428  
    5050
    5151bool excludeSat(const t_prn& prn) {
    52   if (prn.system() == 'R') {
     52  if (prn == t_prn('R', 7)) {
    5353    return true;
    5454  }
     
    406406  }
    407407}
     408
     409//
     410////////////////////////////////////////////////////////////////////////////
     411bool t_sp3Comp::excludeSat(const t_prn& prn) const {
     412  if (prn == t_prn('R', 7)) {
     413    return true;
     414  }
     415  else {
     416    return false;
     417  }
     418}
     419
  • trunk/BNC/src/orbComp/sp3Comp.h

    r6360 r6428  
    8585                     std::map<std::string, t_stat>& stat) const;
    8686  void compare(std::ostringstream& out) const;
     87  bool excludeSat(const t_prn& prn) const;
    8788
    88   QStringList  _sp3FileNames;
    89   QString      _logFileName;
    90   QFile*       _logFile;
    91   QTextStream* _log;
     89  QStringList     _sp3FileNames;
     90  QString         _logFileName;
     91  QFile*          _logFile;
     92  QTextStream*    _log;
     93  std::set<t_prn> _excludeSats;
    9294};
    9395
Note: See TracChangeset for help on using the changeset viewer.