Changeset 9265 in ntrip for trunk/BNC/src


Ignore:
Timestamp:
Nov 21, 2020, 9:41:29 PM (3 years ago)
Author:
stuerze
Message:

minor changes

Location:
trunk/BNC/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/bncephuser.cpp

    r9260 r9265  
    314314    }
    315315
    316     if (diff < MAXDIFF || diffC < MAXDIFF) {
     316    if (diff < MAXDIFF) {
    317317      if (dt != 0.0) {
    318318        if (diff < MINDIFF && diffC < MINDIFF && ephL->checkState() == t_eph::ok) {
  • trunk/BNC/src/combination/bnccomb.cpp

    r9264 r9265  
    405405    t_eph* ephPrev = _ephUser.ephPrev(prn);
    406406    if (ephLast == 0) {
    407       //emit newMessage("bncComb: eph not found for "  + prn.mid(0,3).toLatin1(), true);
     407      emit newMessage("bncComb: eph not found for "  + prn.mid(0,3).toLatin1(), true);
    408408      delete newCorr;
    409409      continue;
     
    418418      }
    419419      else {
    420         //emit newMessage("bncComb: eph not found for "  + prn.mid(0,3).toLatin1() +
    421                         //QString(" with IOD %1").arg(newCorr->_iod).toLatin1(), true);
     420        emit newMessage("bncComb: eph not found for "  + prn.mid(0,3).toLatin1() +
     421                        QString(" with IOD %1").arg(newCorr->_iod).toLatin1(), true);
    422422        delete newCorr;
    423423        continue;
     
    458458    return;
    459459  }
    460   // No switch, if the last one is too recent
     460 
     461  /* No switch, if the last one is too recent
    461462  // ----------------------------------------
    462463  const int MINAGE = 100; // seconds, upload is waiting 60 seconds + combi has ~30 seconds latency
     
    464465      lastEph->receptDateTime().secsTo(currentDateAndTimeGPS()) < MINAGE) {
    465466    return;
    466   }
    467 
     467  }*/
     468 
    468469  ColumnVector oldXC(6);
    469470  ColumnVector oldVV(3);
     
    477478  ColumnVector dV = newVV           - oldVV;
    478479  double       dC = newXC(4)        - oldXC(4);
    479 
     480 
    480481  /* small check
    481482  // -----------
Note: See TracChangeset for help on using the changeset viewer.