Changeset 10956 in ntrip


Ignore:
Timestamp:
Jul 3, 2026, 11:13:27 AM (7 hours ago)
Author:
stuerze
Message:

minor changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/combination/bnccomb.cpp

    r10955 r10956  
    11921192    corr->_eph->setOrbCorr(dynamic_cast<const t_orbCorr*>(&orbCorr));
    11931193
    1194     /* TEMPORARY DIAGNOSTIC: dump the exact orbit/clock correction content
    1195     // being used for this PRN right before getCrd() applies it - adjust
    1196     // the PRN below to whichever satellite is showing the anomaly.
    1197     if (corr->_prn.startsWith("R08")) {
    1198       const t_orbCorr* oc = corr->_eph->orbCorr();
    1199       const t_clkCorr* cc = corr->_eph->clkCorr();
    1200       emit newMessage(QString().asprintf(
    1201         "bncComb: DIAG %s Mjd=%.6f IOD=%u TOC=%.3f bcepAge=%.2f orbT=%.3f orbAge=%.2f xr=%.4f/%.4f/%.4f"
    1202         " dotXr=%.6f/%.6f/%.6f clkT=%.3f clkAge=%.2f dClk=%.6f dotDClk=%.6f",
    1203         corr->_prn.toLatin1().data(),
    1204         epoTime.mjd() + epoTime.daysec()/86400.0,
    1205         corr->_eph->IOD(), corr->_eph->TOC().daysec(), epoTime - corr->_eph->TOC(),
    1206         oc->_time.daysec(), epoTime - oc->_time,
    1207         oc->_xr[0], oc->_xr[1], oc->_xr[2],
    1208         oc->_dotXr[0], oc->_dotXr[1], oc->_dotXr[2],
    1209         cc->_time.daysec(), epoTime - cc->_time,
    1210         cc->_dClk, cc->_dotDClk).toLatin1(), false);
    1211     }
    1212   */
    12131194    if (corr->_eph->getCrd(epoTime, xc, vv, true) != success) {
    1214       /*
    1215       if (corr->_prn.startsWith("R08")) {
    1216         emit newMessage(("bncComb: DIAG " + corr->_prn.mid(0,3) + " getCrd FAILED").toLatin1(), false);
    1217       } */
    12181195      delete corr;
    12191196      it.remove();
    12201197      continue;
    12211198    }
    1222     /*
    1223     else if (corr->_prn.startsWith("R08")) {
    1224       emit newMessage(("bncComb: DIAG " + corr->_prn.mid(0,3) + " getCrd OK").toLatin1(), false);
    1225     }*/
     1199
    12261200    // TEMPORARY DIAGNOSTIC: how far is this epoch from the GLONASS broadcast
    12271201    // ephemeris reference time? t_ephGlo::position() numerically integrates
Note: See TracChangeset for help on using the changeset viewer.