Changeset 9264 in ntrip


Ignore:
Timestamp:
Nov 19, 2020, 11:17:00 AM (3 years ago)
Author:
stuerze
Message:

minor changes

File:
1 edited

Legend:

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

    r9262 r9264  
    458458    return;
    459459  }
     460  // No switch, if the last one is too recent
     461  // ----------------------------------------
     462  const int MINAGE = 100; // seconds, upload is waiting 60 seconds + combi has ~30 seconds latency
     463  if (lastEph->receptDateTime().isValid() &&
     464      lastEph->receptDateTime().secsTo(currentDateAndTimeGPS()) < MINAGE) {
     465    return;
     466  }
    460467
    461468  ColumnVector oldXC(6);
     
    471478  double       dC = newXC(4)        - oldXC(4);
    472479
    473   // small check
     480  /* small check
    474481  // -----------
    475482  const double MAXDIFF = 1000.0;
     
    480487    return;
    481488  }
    482 
     489*/
    483490  ColumnVector dRAO(3);
    484491  XYZ_to_RSW(newXC.Rows(1,3), newVV, dX, dRAO);
Note: See TracChangeset for help on using the changeset viewer.