Changeset 5498 in ntrip for trunk/GnssCenter
- Timestamp:
- Sep 23, 2013, 9:53:05 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GnssCenter/monitor/thriftclient.cpp
r5496 r5498 145 145 const SatelliteEleAzi& sat = staRes.svPosList[is]; 146 146 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 } 148 151 } 149 152
Note:
See TracChangeset
for help on using the changeset viewer.