Changeset 6577 in ntrip
- Timestamp:
- Jan 26, 2015, 4:05:19 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/orbComp/sp3Comp.cpp
r6547 r6577 379 379 // Print Summary 380 380 // ------------- 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"; 382 384 for (map<string, t_stat>::iterator it = stat.begin(); it != stat.end(); it++) { 383 385 const string& prn = it->first; … … 395 397 out << setw(7) << setprecision(4) << stat._rao[0] << ' ' 396 398 << 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 << " "; 398 401 if (stat._nc > 0) { 399 402 stat._dc = sqrt(stat._dc / stat._nc); 400 403 stat._dcRed = sqrt(stat._dcRed / stat._nc); 401 404 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 << " "; 403 407 if (prn != all) { 404 out << " offset " <<setw(9) << setprecision(4) << stat._offset;408 out << setw(9) << setprecision(4) << stat._offset; 405 409 } 406 410 }
Note:
See TracChangeset
for help on using the changeset viewer.