Changeset 5539 in ntrip


Ignore:
Timestamp:
Nov 9, 2013, 9:57:35 AM (10 years ago)
Author:
mervart
Message:
 
Location:
trunk/BNC/src/RTCM3
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/RTCM3/ephemeris.cpp

    r5532 r5539  
    601601  _TOT      = 0.9999e9;
    602602
     603  _flags    = ee->flags;
     604
    603605  _ok = true;
    604606}
     
    12811283
    12821284  int dataSource = 0;
     1285  if      ( (_flags & GALEPHF_INAV) == GALEPHF_INAV ) {
     1286    dataSource |= (1<<0);
     1287  }
     1288  else if ( (_flags & GALEPHF_FNAV) == GALEPHF_FNAV ) {
     1289    dataSource |= (1<<1);
     1290  }
    12831291  out << QString(fmt)
    12841292    .arg(_IDOT,              19, 'e', 12)
  • trunk/BNC/src/RTCM3/ephemeris.h

    r5133 r5539  
    229229
    230230  double _TOT;               // [s]
     231
     232  int    _flags;
    231233};
    232234
Note: See TracChangeset for help on using the changeset viewer.