Changeset 9785 in ntrip for trunk/BNC/src/RTCM3
- Timestamp:
- Jun 29, 2022, 12:03:05 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/RTCM3/RTCM3Decoder.cpp
r9765 r9785 1587 1587 eph._prn.set('C', i); 1588 1588 1589 SKIPBITS(13) 1590 /* week */ 1589 GETBITS(eph._BDTweek, 13) 1591 1590 GETBITS(i, 4) 1592 1591 eph._URA = accuracyFromIndex(i, eph.type()); … … 1595 1594 GETBITS(i, 17) 1596 1595 i <<= 3; 1597 eph._TOC.setBDS( i * 1000);1596 eph._TOC.setBDS(eph._BDTweek, i); 1598 1597 GETFLOATSIGN(eph._clock_driftrate, 11, 1.0 / (double )(1 << 30) / (double )(1 << 30) / (double )(1 << 6)) 1599 1598 GETFLOATSIGN(eph._clock_drift, 22, 1.0 / (double )(1 << 30) / (double )(1 << 20)) … … 1618 1617 i <<= 3; 1619 1618 eph._TOEsec = i; 1620 eph._TOE.setBDS( i * 1000);1619 eph._TOE.setBDS(eph._BDTweek, i); 1621 1620 GETFLOATSIGN(eph._Cic, 18, 1.0 / (double )(1 << 30) / (double )(1 << 1)) 1622 1621 GETFLOATSIGN(eph._OMEGA0, 32, R2R_PI/(double)(1<<30)/(double)(1<<1)) … … 1637 1636 eph._navType = t_eph::D2; 1638 1637 } 1639 1640 1638 1641 1639 emit newBDSEph(eph);
Note:
See TracChangeset
for help on using the changeset viewer.