Changeset 7248 in ntrip


Ignore:
Timestamp:
Aug 24, 2015, 3:45:15 PM (9 years ago)
Author:
stuerze
Message:

minor changes

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

Legend:

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

    r7237 r7248  
    5656  _filter   = new t_pppFilter();
    5757  _tides    = new t_tides();
    58   _iono     = new t_iono();
    5958
    6059  if (!_opt->_antexFileName.empty()) {
     
    102101//////////////////////////////////////////////////////////////////////////////
    103102void t_pppClient::putTec(const t_vTec* vTec) {
    104   _iono->setTecData(new t_vTec(*vTec));
    105   //_staRover->putTec(new t_vTec(*vTec));
     103  _obsPool->putTec(new t_vTec(*vTec));
    106104}
    107105
     
    384382  station->setTideDspl( _tides->displacement(time, station->xyzApr()) );
    385383 
    386 
    387384  // Ionosphere
    388385  // ----------
    389   station->setVtec(_iono->vtec());
     386  station->setIonoEpochTime(time);
    390387
    391388  // Observation model
  • trunk/BNC/src/PPP/pppClient.h

    r7237 r7248  
    3838
    3939  std::ostringstream& log() {return *_log;}
    40   const t_pppOptions*    opt() const {return _opt;}
     40  const t_pppOptions* opt() const {return _opt;}
    4141
    4242  static void bancroft(const Matrix& BBpass, ColumnVector& pos);
     
    6868  t_pppOptions*             _opt;
    6969  t_tides*                  _tides;
    70   t_iono*                   _iono;
    7170};
    7271
Note: See TracChangeset for help on using the changeset viewer.