Changeset 10311 in ntrip


Ignore:
Timestamp:
Jan 2, 2024, 12:39:10 PM (4 months ago)
Author:
stuerze
Message:

minor changes

Location:
trunk/BNC/src
Files:
2 edited

Legend:

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

    r10275 r10311  
    210210  }
    211211
    212   _rtnetDecoder = 0;
     212  _rtnetDecoder = new bncRtnetDecoder();
    213213
    214214  connect(this, SIGNAL(newMessage(QByteArray,bool)), BNC_CORE, SLOT(slotMessage(const QByteArray,bool)));
     
    11401140  //cout << outLines.toStdString();
    11411141
    1142   if (!_rtnetDecoder) {
    1143     _rtnetDecoder = new bncRtnetDecoder();
    1144   }
    1145 
    11461142  vector<string> errmsg;
    11471143  _rtnetDecoder->Decode(outLines.toLatin1().data(), outLines.length(), errmsg);
  • trunk/BNC/src/satObs.cpp

    r9686 r10311  
    3636    }
    3737    *out << corr._prn.toString() << ' ' << setw(11) << corr._iod << ' '
    38          << setw(10) << setprecision(4) << corr._dClk       * t_CST::c      << ' '
    39          << setw(10) << setprecision(4) << corr._dotDClk    * t_CST::c * 1.e3 << ' '    // m/s => mm/s
    40          << setw(10) << setprecision(4) << corr._dotDotDClk * t_CST::c * 1.e3 << endl;  // m/s => mm/s
     38         << setw(10) << setprecision(4) << corr._dClk       * t_CST::c      << ' '      // m
     39         << setw(10) << setprecision(4) << corr._dotDClk    * t_CST::c * 1.e3 << ' '    // m/s  => mm/s
     40         << setw(10) << setprecision(4) << corr._dotDotDClk * t_CST::c * 1.e3 << endl;  // m/s² => mm/s²
    4141  }
    4242  out->flush();
     
    6767      corr._prn.setFlags(1);// I/NAV
    6868    }
    69     corr._dClk       /= (t_CST::c);        // m
    70     corr._dotDClk    /= (t_CST::c * 1.e3); // mm/s
    71     corr._dotDotDClk /= (t_CST::c * 1.e3); // mm/s²
     69    corr._dClk       /= (t_CST::c);       
     70    corr._dotDClk    /= (t_CST::c * 1.e3);
     71    corr._dotDotDClk /= (t_CST::c * 1.e3);
    7272
    7373    corrList.push_back(corr);
Note: See TracChangeset for help on using the changeset viewer.