Changeset 7231 in ntrip for trunk/BNC/src/PPP_RTK


Ignore:
Timestamp:
Aug 18, 2015, 4:13:05 PM (11 years ago)
Author:
stuerze
Message:

some interfaces are added to be able to handle ssr vtec in PPP mode

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

Legend:

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

    r7227 r7231  
    9898}
    9999
     100//
     101//////////////////////////////////////////////////////////////////////////////
     102void t_pppClient::putTec(const t_vTec* vTec) {
     103  _staRover->putTec(new t_vTec(*vTec));
     104}
     105
    100106//
    101107//////////////////////////////////////////////////////////////////////////////
     
    122128}
    123129
    124 // 
     130//
    125131//////////////////////////////////////////////////////////////////////////////
    126132t_irc t_pppClient::prepareObs(const vector<t_satObs*>& satObs,
  • trunk/BNC/src/PPP_RTK/pppClient.h

    r7227 r7231  
    2626
    2727  void putEphemeris(const t_eph* eph);                 
     28  void putTec(const t_vTec* vTec);
    2829  void putOrbCorrections(const std::vector<t_orbCorr*>& corr);
    2930  void putClkCorrections(const std::vector<t_clkCorr*>& corr);
  • trunk/BNC/src/PPP_RTK/pppStation.cpp

    r7227 r7231  
    2626t_pppStation::t_pppStation() {
    2727  _windUp    = new t_windUp();
     28  _vTec = 0;
    2829}
    2930
     
    3233t_pppStation::~t_pppStation() {
    3334  delete _windUp;
     35  delete _vTec;
    3436}
    3537
     
    5759}
    5860
     61//
     62//////////////////////////////////////////////////////////////////////////////
     63void t_pppStation::putTec(t_vTec* vTec) {
     64  delete _vTec;
     65  _vTec = vTec;
     66}
     67
  • trunk/BNC/src/PPP_RTK/pppStation.h

    r7227 r7231  
    3030  double dClk() const {return _dClk;}
    3131  double windUp(const bncTime& time, t_prn prn, const ColumnVector& rSat) const;
     32  void putTec(t_vTec* vTec);
     33  const t_vTec* vTec() const {
     34    return _vTec;
     35  }
    3236
    3337 private:
     
    4347  bncTime           _timeCheck;
    4448  ColumnVector      _xyzCheck;
     49  t_vTec*           _vTec;
    4550};
    4651
Note: See TracChangeset for help on using the changeset viewer.