Changeset 5498 in ntrip


Ignore:
Timestamp:
Sep 23, 2013, 9:53:05 AM (11 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/GnssCenter/monitor/thriftclient.cpp

    r5496 r5498  
    145145      const SatelliteEleAzi& sat = staRes.svPosList[is];
    146146      string prn = id2prn(sat.constellation, sat.ID);
    147       res->_prns.push_back(prn);
     147      const double eleMask = 10.0;
     148      if (sat.elevation > eleMask) {
     149        res->_prns.push_back(prn);
     150      }
    148151    }
    149152
Note: See TracChangeset for help on using the changeset viewer.