Changeset 6428 in ntrip for trunk/BNC/src/orbComp/sp3Comp.cpp


Ignore:
Timestamp:
Dec 24, 2014, 5:15:40 PM (9 years ago)
Author:
mervart
Message:
 
File:
1 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
Note: See TracChangeset for help on using the changeset viewer.