Changeset 7250 in ntrip for trunk/BNC/src/PPP/pppStation.cpp


Ignore:
Timestamp:
Aug 24, 2015, 4:04:38 PM (9 years ago)
Author:
stuerze
Message:

ionosopheric delay can be computed now

File:
1 edited

Legend:

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

    r7237 r7250  
    2525//////////////////////////////////////////////////////////////////////////////
    2626t_pppStation::t_pppStation() {
    27   _windUp    = new t_windUp();
     27  _windUp   = new t_windUp();
     28  _iono     = new t_iono();
     29  _dClk = 0.0;
    2830}
    2931
     
    3234t_pppStation::~t_pppStation() {
    3335  delete _windUp;
     36  delete _iono;
    3437}
    3538
     
    5760}
    5861
     62//
     63//////////////////////////////////////////////////////////////////////////////
     64double t_pppStation::stec(const t_vTec* vTec, const double signalPropagationTime,
     65    const ColumnVector& rSat) const {
     66  return _iono->stec(vTec, signalPropagationTime, rSat, _epochTime, _xyzApr);
     67}
Note: See TracChangeset for help on using the changeset viewer.