Changeset 4991 in ntrip for trunk/BNC/src/bncsp3.cpp


Ignore:
Timestamp:
Mar 20, 2013, 11:18:10 AM (11 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

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

    r4382 r4991  
    3838////////////////////////////////////////////////////////////////////////////
    3939t_irc bncSP3::write(int GPSweek, double GPSweeks, const QString& prn,
    40                     const ColumnVector& xx) {
     40                    const ColumnVector& xCoM, double sp3Clk) {
    4141
    4242  if (reopen(GPSweek, GPSweeks) == success) {
     
    6262
    6363    _out << "P" << prn.toAscii().data()
    64          << setw(14) << setprecision(6) << xx(1) / 1000.0
    65          << setw(14) << setprecision(6) << xx(2) / 1000.0
    66          << setw(14) << setprecision(6) << xx(3) / 1000.0
    67          << setw(14) << setprecision(6) << xx(4) * 1e6 << endl;
     64         << setw(14) << setprecision(6) << xCoM(1) / 1000.0
     65         << setw(14) << setprecision(6) << xCoM(2) / 1000.0
     66         << setw(14) << setprecision(6) << xCoM(3) / 1000.0
     67         << setw(14) << setprecision(6) << sp3Clk * 1e6 << endl;
    6868   
    6969    return success;
Note: See TracChangeset for help on using the changeset viewer.