Changeset 10791 in ntrip for trunk/BNC/src/PPP/pppEphPool.cpp


Ignore:
Timestamp:
Dec 3, 2025, 5:37:16 PM (6 weeks ago)
Author:
mervart
Message:

BNC Multifrequency and PPPAR Client (initial version)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/PPP/pppEphPool.cpp

    r10330 r10791  
    1616
    1717#include <iostream>
     18#include <iomanip>
    1819#include "pppEphPool.h"
    1920#include "pppInclude.h"
     
    4142  if (corr) {
    4243    _satEphPool[corr->_prn.toInt()].putOrbCorrection(corr);
     44    if (OPT->_logMode > t_pppOptions::normal) {
     45      LOG << "orbCorr " << string(corr->_time) << ' ' << corr->_prn.toString() << endl;
     46    }
    4347  }
    4448}
     
    4953  if (corr) {
    5054    _satEphPool[corr->_prn.toInt()].putClkCorrection(corr);
     55    if (OPT->_logMode > t_pppOptions::normal) {
     56      LOG.setf(ios::fixed);
     57      LOG << "clkCorr " << string(corr->_time) << ' ' << corr->_prn.toString() << ' '
     58          << setw(7) << setprecision(3) << corr->_dClk * t_CST::c << endl;
     59    }
    5160  }
    5261}
Note: See TracChangeset for help on using the changeset viewer.