- Timestamp:
- Aug 24, 2015, 3:45:15 PM (9 years ago)
- Location:
- trunk/BNC/src/PPP
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP/pppClient.cpp
r7237 r7248 56 56 _filter = new t_pppFilter(); 57 57 _tides = new t_tides(); 58 _iono = new t_iono();59 58 60 59 if (!_opt->_antexFileName.empty()) { … … 102 101 ////////////////////////////////////////////////////////////////////////////// 103 102 void 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)); 106 104 } 107 105 … … 384 382 station->setTideDspl( _tides->displacement(time, station->xyzApr()) ); 385 383 386 387 384 // Ionosphere 388 385 // ---------- 389 station->set Vtec(_iono->vtec());386 station->setIonoEpochTime(time); 390 387 391 388 // Observation model -
trunk/BNC/src/PPP/pppClient.h
r7237 r7248 38 38 39 39 std::ostringstream& log() {return *_log;} 40 const t_pppOptions* 40 const t_pppOptions* opt() const {return _opt;} 41 41 42 42 static void bancroft(const Matrix& BBpass, ColumnVector& pos); … … 68 68 t_pppOptions* _opt; 69 69 t_tides* _tides; 70 t_iono* _iono;71 70 }; 72 71
Note:
See TracChangeset
for help on using the changeset viewer.