Changeset 6179 in ntrip for trunk


Ignore:
Timestamp:
Sep 14, 2014, 2:29:39 PM (10 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

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

    r6178 r6179  
    2929  str.setf(ios::showpoint | ios::fixed);
    3030  str << "C " << _time.gpsw() << ' ' << setprecision(2) << _time.gpssec() << ' '
    31       << _prn.toString() << ' '
     31      << _prn.toString() << ' ' << setw(2) << _iod << ' '
    3232      << setw(10) << setprecision(4) << _dClk       * t_CST::c << ' '
    3333      << setw(10) << setprecision(4) << _dotDClk    * t_CST::c << ' '
     
    5656  ostringstream str;
    5757  str.setf(ios::showpoint | ios::fixed);
    58   str << "O " << endl;
     58  str << "O " << _time.gpsw() << ' ' << setprecision(2) << _time.gpssec() << ' '
     59      << _prn.toString() << ' ' << setw(2) << _iod << ' '
     60      << setw(10) << setprecision(4) << _xr[0]     << ' '
     61      << setw(10) << setprecision(4) << _xr[1]     << ' '
     62      << setw(10) << setprecision(4) << _xr[2]     << "    "
     63      << setw(10) << setprecision(4) << _dotXr[0]  << ' '
     64      << setw(10) << setprecision(4) << _dotXr[1]  << ' '
     65      << setw(10) << setprecision(4) << _dotXr[2]  << endl;
     66
    5967  return str.str();
    6068}
Note: See TracChangeset for help on using the changeset viewer.