Ignore:
Timestamp:
Sep 21, 2020, 9:41:49 PM (4 years ago)
Author:
stuerze
Message:

minor changes regarding ssr, long mountpoint names and latency

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/BNC_2.12/src/upload/bncrtnetuploadcaster.cpp

    r9081 r9127  
    5656
    5757  _ssrFormat = ssrFormat;
     58 
    5859  _ssrCorr = 0;
    5960  if      (_ssrFormat == "IGS-SSR") {
     
    378379
    379380  co.UpdateInterval = clkUpdInd;
    380   bias.UpdateInterval = clkUpdInd;
    381   phasebias.UpdateInterval = clkUpdInd;
     381  bias.UpdateInterval = ephUpdInd;
     382  phasebias.UpdateInterval = ephUpdInd;
    382383
    383384  for (int ii = 1; ii < lines.size(); ii++) {
     
    473474      QList<phaseBiasSignal> phaseBiasList;
    474475      phaseBiasesSat pbSat;
     476      bool phaseBiasInformationDecoded = false;
    475477
    476478      while (true) {
     
    531533        }
    532534        else if (key == "YawAngle") {
     535          phaseBiasInformationDecoded = true;
    533536          in >> numVal >> pbSat.yawAngle;
    534537          if      (pbSat.yawAngle < 0.0) {
     
    543546        }
    544547        else if (key == "PhaseBias") {
     548          phaseBiasInformationDecoded = true;
    545549          in >> numVal;
    546550          for (int ii = 0; ii < numVal; ii++) {
     
    701705      }
    702706
    703       if (phasebiasSat) {
     707      if (phasebiasSat && phaseBiasInformationDecoded) {
    704708        phasebias.DispersiveBiasConsistencyIndicator = dispersiveBiasConsistenyIndicator;
    705709        phasebias.MWConsistencyIndicator = mwConsistencyIndicator;
Note: See TracChangeset for help on using the changeset viewer.