Changeset 10311 in ntrip for trunk/BNC/src/satObs.cpp


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

minor changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • 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.