Ignore:
Timestamp:
Sep 21, 2020, 3:11:55 PM (4 years ago)
Author:
stuerze
Message:

minor changes regarding latency check, ssr and long mountpoint names

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/upload/bncrtnetuploadcaster.cpp

    r9034 r9124  
    5757
    5858  _ssrFormat = ssrFormat;
    59  
     59
    6060  _ssrCorr = 0;
    6161  if      (_ssrFormat == "IGS-SSR") {
     
    380380
    381381  co.UpdateInterval = clkUpdInd;
    382   bias.UpdateInterval = clkUpdInd;
    383   phasebias.UpdateInterval = clkUpdInd;
     382  bias.UpdateInterval = ephUpdInd;
     383  phasebias.UpdateInterval = ephUpdInd;
    384384
    385385  for (int ii = 1; ii < lines.size(); ii++) {
     
    476476      QList<phaseBiasSignal> phaseBiasList;
    477477      phaseBiasesSat pbSat;
     478      bool phaseBiasInformationDecoded = false;
    478479
    479480      while (true) {
     
    534535        }
    535536        else if (key == "YawAngle") {
     537          phaseBiasInformationDecoded = true;
    536538          in >> numVal >> pbSat.yawAngle;
    537539          if      (pbSat.yawAngle < 0.0) {
     
    546548        }
    547549        else if (key == "PhaseBias") {
     550          phaseBiasInformationDecoded = true;
    548551          in >> numVal;
    549552          for (int ii = 0; ii < numVal; ii++) {
     
    704707      }
    705708
    706       if (phasebiasSat) {
     709      if (phasebiasSat && phaseBiasInformationDecoded) {
    707710        phasebias.DispersiveBiasConsistencyIndicator = dispersiveBiasConsistenyIndicator;
    708711        phasebias.MWConsistencyIndicator = mwConsistencyIndicator;
Note: See TracChangeset for help on using the changeset viewer.