Changeset 6577 in ntrip


Ignore:
Timestamp:
Jan 26, 2015, 4:05:19 PM (9 years ago)
Author:
weber
Message:

Output extended

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/orbComp/sp3Comp.cpp

    r6547 r6577  
    379379  // Print Summary
    380380  // -------------
    381   out << "!\n! RMS:\n";
     381  out << "!\n! RMS[m]\n";
     382  out << "!\n!  MJD       PRN  radial   along   out     nOrb    clk   clkRed   nClk    Offset"
     383           "\n! -----------------------------------------------------------------------------\n";
    382384  for (map<string, t_stat>::iterator it = stat.begin(); it != stat.end(); it++) {
    383385    const string& prn  = it->first;
     
    395397      out << setw(7) << setprecision(4) << stat._rao[0] << ' '
    396398          << setw(7) << setprecision(4) << stat._rao[1] << ' '
    397           << setw(7) << setprecision(4) << stat._rao[2] << "    ";
     399          << setw(7) << setprecision(4) << stat._rao[2] << ' '
     400          << setw(6) << stat._nr << " ";
    398401      if (stat._nc > 0) {
    399402        stat._dc    = sqrt(stat._dc / stat._nc);
    400403        stat._dcRed = sqrt(stat._dcRed / stat._nc);
    401404        out << setw(7) << setprecision(4) << stat._dc << ' '
    402             << setw(7) << setprecision(4) << stat._dcRed;
     405            << setw(7) << setprecision(4) << stat._dcRed << ' '
     406            << setw(6) << stat._nc << " ";
    403407        if (prn != all) {
    404           out << "    offset " << setw(9) << setprecision(4) << stat._offset;
     408          out << setw(9) << setprecision(4) << stat._offset;
    405409        }
    406410      }
Note: See TracChangeset for help on using the changeset viewer.