Changeset 795 in ntrip for trunk/BNS/bns.cpp
- Timestamp:
- Apr 8, 2008, 4:40:39 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNS/bns.cpp
r794 r795 215 215 ColumnVector xx(4); 216 216 217 in >> prn >> xx(1) >> xx(2) >> xx(3) >> xx(4); 217 in >> prn >> xx(1) >> xx(2) >> xx(3) >> xx(4); 218 xx(4) *= 1e6; 218 219 219 220 processSatellite(mjd, sec, prn, xx); … … 226 227 const ColumnVector& xx) { 227 228 228 } 229 // No broadcast ephemeris available 230 // -------------------------------- 231 if ( !_ephList.contains(prn) ) { 232 return; 233 } 234 235 t_ephPair* pair = _ephList[prn]; 236 gpsEph* ep = pair->eph; 237 238 cout << "PRN, CLK " << prn.toAscii().data() << " " 239 << ep->clock_bias << " " << xx(4) << endl; 240 }
Note:
See TracChangeset
for help on using the changeset viewer.