Ignore:
Timestamp:
Sep 23, 2013, 10:11:50 AM (11 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

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

    r5498 r5499  
    142142    }
    143143
    144     for (unsigned is = 0; is < staRes.svPosList.size(); is++) {
    145       const SatelliteEleAzi& sat = staRes.svPosList[is];
    146       string prn = id2prn(sat.constellation, sat.ID);
    147       const double eleMask = 10.0;
    148       if (sat.elevation > eleMask) {
    149         res->_prns.push_back(prn);
     144    for (unsigned ic = 0; ic < staRes.residList.size(); ic++) {
     145      const ResidualInfo& info = staRes.residList[ic];
     146      for (unsigned is = 0; is < info.svResid.size(); is++) {
     147        const SvResidualInfo& sat = info.svResid[is];
     148        string prn = id2prn(sat.constellation, sat.ID);
     149        res->_prns.insert(prn);
    150150      }
    151151    }
Note: See TracChangeset for help on using the changeset viewer.