source: ntrip/trunk/BNC/src/PPP/pppStation.cpp@ 9551

Last change on this file since 9551 was 8619, checked in by stuerze, 5 years ago

special ssr wind up computation is added

  • Property svn:keywords set to Author Date Id Rev URL;svn:eol-style=native
  • Property svn:mime-type set to text/plain
File size: 1.9 KB
Line 
1/* -------------------------------------------------------------------------
2 * BKG NTRIP Client
3 * -------------------------------------------------------------------------
4 *
5 * Class: t_pppStation
6 *
7 * Purpose: Processed station
8 *
9 * Author: L. Mervart
10 *
11 * Created: 29-Jul-2014
12 *
13 * Changes:
14 *
15 * -----------------------------------------------------------------------*/
16
17#include "pppStation.h"
18#include "bncutils.h"
19#include "pppModel.h"
20
21using namespace BNC_PPP;
22using namespace std;
23
24// Constructor
25//////////////////////////////////////////////////////////////////////////////
26t_pppStation::t_pppStation() {
27 _windUp = new t_windUp();
28 _iono = new t_iono();
29 _dClk = 0.0;
30}
31
32// Destructor
33//////////////////////////////////////////////////////////////////////////////
34t_pppStation::~t_pppStation() {
35 delete _windUp;
36 delete _iono;
37}
38
39//
40//////////////////////////////////////////////////////////////////////////////
41void t_pppStation::setXyzApr(const ColumnVector& xyzApr) {
42 _xyzApr = xyzApr;
43 _ellApr.ReSize(3);
44 xyz2ell(_xyzApr.data(), _ellApr.data());
45}
46
47//
48//////////////////////////////////////////////////////////////////////////////
49void t_pppStation::setNeuEcc(const ColumnVector& neuEcc) {
50 _neuEcc = neuEcc;
51 _xyzEcc.ReSize(3);
52 neu2xyz(_ellApr.data(), _neuEcc.data(), _xyzEcc.data());
53}
54
55//
56//////////////////////////////////////////////////////////////////////////////
57double t_pppStation::windUp(const bncTime& time, t_prn prn,
58 const ColumnVector& rSat, bool ssr, double yaw,
59 const ColumnVector& vSat) const {
60 return _windUp->value(time, _xyzApr, prn, rSat, ssr, yaw, vSat);
61}
62
63//
64//////////////////////////////////////////////////////////////////////////////
65double t_pppStation::stec(const t_vTec* vTec, const double signalPropagationTime,
66 const ColumnVector& rSat) const {
67 return _iono->stec(vTec, signalPropagationTime, rSat, _epochTime, _xyzApr);
68}
Note: See TracBrowser for help on using the repository browser.