Changeset 7240 in ntrip


Ignore:
Timestamp:
Aug 20, 2015, 9:07:53 AM (9 years ago)
Author:
stuerze
Message:

initial import of ionosphere class

Location:
trunk/BNC/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/pppModel.cpp

    r6268 r7240  
    384384}
    385385
     386// Constructor
     387///////////////////////////////////////////////////////////////////////////
     388t_iono::t_iono() {
     389  _vTec = 0;
     390}
     391
     392t_iono::~t_iono() {
     393  delete _vTec;
     394}
     395
     396void t_iono::setTecData(const t_vTec* vTec) {
     397   delete _vTec;
     398  _vTec = new t_vTec(*vTec);
     399}
     400
     401double t_iono::vtec() {
     402
     403  return 0.0;
     404}
  • trunk/BNC/src/pppModel.h

    r6400 r7240  
    66#include "bnctime.h"
    77#include "t_prn.h"
     8#include "satObs.h"
    89
    910namespace BNC_PPP {
     
    5859};
    5960
     61class t_iono {
     62 public:
     63  t_iono();
     64  ~t_iono();
     65  void setTecData(const t_vTec* vTec);
     66  double vtec();
     67 private:
     68  t_vTec*   _vTec;
     69  int       _layer;
     70  double    _layerHeight;
     71  double    _roverHeight;
     72
     73
     74};
     75
    6076}
    6177
Note: See TracChangeset for help on using the changeset viewer.