Changeset 10805 in ntrip for trunk/BNC/src/PPP


Ignore:
Timestamp:
Feb 2, 2026, 11:13:04 AM (3 weeks ago)
Author:
stuerze
Message:

minor changes regarding ppp output

Location:
trunk/BNC/src/PPP
Files:
4 edited

Legend:

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

    r10791 r10805  
    307307        LOG << "\nPPP of Epoch ";
    308308        if (!_epoTimeRover.undef()) LOG << string(_epoTimeRover);
     309        LOG << " using " << _opt->_corrMount;
    309310        LOG << "\n---------------------------------------------------------------\n";
    310311        LOG << string(epoTime) << " BANCROFT: "
     
    369370    _output->_trp      = _filter->trp();
    370371    _output->_trpStdev = _filter->trpStdev();
     372
     373    _output->_fixRatio = _filter->fixRatio();
    371374
    372375    _output->_numSat   = _filter->numSat();
  • trunk/BNC/src/PPP/pppClient.h

    r10791 r10805  
    1818class t_pppStation;
    1919class t_pppFilter;
     20class t_tides;
    2021
    2122class t_pppClient : public interface_pppClient {
  • trunk/BNC/src/PPP/pppFilter.cpp

    r10791 r10805  
    112112  // ----------------------
    113113  cmpDOP(allObs);
    114  
     114
    115115  // Ambiguity Resolution
    116116  // --------------------
     
    120120    ColumnVector    xFix     = _xFlt;
    121121    SymmetricMatrix QFix     = _QFlt;
    122     double          fixRatio = 0.0;
    123     ambRes.run(_epoTime, _parlist->params(), QFix, xFix, fixRatio, msg);
     122    _fixRatio = 0.0;
     123    ambRes.run(_epoTime, _parlist->params(), QFix, xFix, _fixRatio, msg);
    124124    LOG << msg.str();
    125     _parlist->printResult(_epoTime, QFix, xFix, fixRatio);
     125    _parlist->printResult(_epoTime, QFix, xFix, _fixRatio);
    126126  }
    127127
  • trunk/BNC/src/PPP/pppFilter.h

    r10791 r10805  
    3030  double PDOP() const {return _dop.P;}
    3131  double GDOP() const {return _dop.G;}
     32  double fixRatio() const {return _fixRatio;}
    3233  double trp() const {
    3334    const std::vector<t_pppParam*>& par = _parlist->params();
     
    101102  bncTime         _firstEpoTime;
    102103  bncTime         _lastEpoTimeOK;
     104  double          _fixRatio;
    103105};
    104106
Note: See TracChangeset for help on using the changeset viewer.