Changeset 9315 in ntrip for trunk


Ignore:
Timestamp:
Dec 17, 2020, 3:30:05 PM (3 years ago)
Author:
stuerze
Message:

message type typo corrected

File:
1 edited

Legend:

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

    r9306 r9315  
    10591059#ifdef BNC_DEBUG_BCEP
    10601060      emit(newMessage(QString("%1: Block %2 (%3) SQRT_A %4 m!")
    1061            .arg(_staID).arg(1020,4).arg(eph._prn.toString().c_str())
     1061           .arg(_staID).arg(1019,4).arg(eph._prn.toString().c_str())
    10621062           .arg(eph._sqrt_A,10,'F',3).toLatin1(), true));
    10631063#endif
     
    11191119    GETBITS(eph._almanac_health, 1) /* almanac healthy */
    11201120    GETBITS(eph._almanac_health_availablility_indicator, 1) /* almanac health ok */
     1121    /*
    11211122    if (eph._almanac_health_availablility_indicator == 0.0) {
    11221123#ifdef BNC_DEBUG_BCEP
    11231124      emit(newMessage(QString("%1: Block %2 (%3): ALM = %4: missing data!")
    1124            .arg(_staID).arg(1019,4).arg(eph._prn.toString().c_str())
     1125           .arg(_staID).arg(1020,4).arg(eph._prn.toString().c_str())
    11251126           .arg(eph._almanac_health_availablility_indicator).toLatin1(), true));
    11261127#endif
    11271128      return false;
    1128     }
     1129    }*/
    11291130    GETBITS(eph._P1, 2) /*  P1 */
    11301131    GETBITS(i, 5)
     
    11651166#ifdef BNC_DEBUG_BCEP
    11661167      emit(newMessage(QString("%1: Block %2 (%3): NT = %4: missing data!")
    1167            .arg(_staID).arg(1019,4).arg(eph._prn.toString().c_str()).arg(eph._M_NT,4).toLatin1(), true));
     1168           .arg(_staID).arg(1020,4).arg(eph._prn.toString().c_str()).arg(eph._M_NT,4).toLatin1(), true));
    11681169#endif
    11691170      return false;
     
    11741175#ifdef BNC_DEBUG_BCEP
    11751176      emit(newMessage(QString("%1: Block %2 (%3): ADD = %4: missing data!")
    1176            .arg(_staID).arg(1019,4).arg(eph._prn.toString().c_str())
     1177           .arg(_staID).arg(1020,4).arg(eph._prn.toString().c_str())
    11771178           .arg(eph._additional_data_availability).toLatin1(), true));
    11781179#endif
     
    11961197#ifdef BNC_DEBUG_BCEP
    11971198      emit(newMessage(QString("%1: Block %2 (%3): zero position!")
    1198            .arg(_staID).arg(1019,4).arg(eph._prn.toString().c_str()).toLatin1(), true));
     1199           .arg(_staID).arg(1020,4).arg(eph._prn.toString().c_str()).toLatin1(), true));
    11991200#endif
    12001201      return false;
     
    12061207#ifdef BNC_DEBUG_BCEP
    12071208      emit(newMessage(QString("%1: Block %2 (%3): zero velocity!")
    1208            .arg(_staID).arg(1019,4).arg(eph._prn.toString().c_str()).toLatin1(), true));
     1209           .arg(_staID).arg(1020,4).arg(eph._prn.toString().c_str()).toLatin1(), true));
    12091210#endif
    12101211      return false;
Note: See TracChangeset for help on using the changeset viewer.