Ignore:
Timestamp:
Mar 18, 2020, 11:08:50 AM (4 years ago)
Author:
stuerze
Message:
 
File:
1 edited

Legend:

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

    r8852 r8903  
    10731073    GETBITS(eph._L2PFlag, 1)
    10741074    GETBITS(fitIntervalFalg, 1)
    1075     if (fitIntervalFalg == 0) {
    1076       eph._fitInterval = 4.0;
    1077     }
     1075    eph._fitInterval = fitIntervalFromFlag(fitIntervalFalg, eph._IODC, eph.type());
    10781076    eph._TOT = 0.9999e9;
    10791077
     
    12381236    GETBITS(eph._IODC, 10)
    12391237    GETBITS(fitIntervalFalg, 1)
    1240     if (fitIntervalFalg == 0) {
    1241       eph._fitInterval = 2.0;
    1242     }
     1238    eph._fitInterval = fitIntervalFromFlag(fitIntervalFalg, eph._IODC, eph.type());
    12431239    eph._TOT = 0.9999e9;
    12441240
Note: See TracChangeset for help on using the changeset viewer.