- Timestamp:
- Oct 2, 2024, 12:31:18 PM (3 months ago)
- Location:
- trunk/BNC/src/RTCM3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/RTCM3/RTCM3Decoder.cpp
r10554 r10555 1188 1188 GETBITS(eph._almanac_health_availablility_indicator, 1) /* almanac health ok */ 1189 1189 GETBITS(eph._P1, 2) /* P1 */ 1190 /* tk */ 1190 1191 GETBITS(i, 5) 1191 1192 if (i < 0 || i > 23) { -
trunk/BNC/src/RTCM3/ephEncoder.cpp
r10215 r10555 162 162 int tki = static_cast<int>(eph._tki)+3*60*60; 163 163 if (tki > 86400) {tki -= 86400;} 164 GLONASSADDBITS(5, static_cast<int>(tki)/(60*60))164 GLONASSADDBITS(5, (tki)/(60*60)) 165 165 GLONASSADDBITS(6, (static_cast<int>(tki)/60)%60) 166 166 GLONASSADDBITS(1, (static_cast<int>(tki)/30)%30)
Note:
See TracChangeset
for help on using the changeset viewer.