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

Legend:

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

    r5495 r5496  
    131131    const StationResults& staRes = epoch.stationResultList[ii];
    132132
    133     for (unsigned is = 0; is < staRes.svPosList.size(); is++) {
    134       const SatelliteEleAzi& sat = staRes.svPosList[is];
    135       string prn = id2prn(sat.constellation, sat.ID);
    136     }
     133    t_thriftResult* res = new t_thriftResult;
    137134
    138     t_thriftResult* res = new t_thriftResult;
    139135    res->_name = staRes.stationName;
    140136    res->_nGPS = staRes.nsv_gps_used;
     
    145141      res->_z = _stationCrd[staRes.stationName]._z;
    146142    }
     143
     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      res->_prns.push_back(prn);
     148    }
     149
    147150    results->push_back(res);
    148151  }
Note: See TracChangeset for help on using the changeset viewer.