Rev | Line | |
---|
[5743] | 1 | /* -------------------------------------------------------------------------
|
---|
| 2 | * BKG NTRIP Client
|
---|
| 3 | * -------------------------------------------------------------------------
|
---|
| 4 | *
|
---|
[5810] | 5 | * Class: t_pppStation
|
---|
[5743] | 6 | *
|
---|
| 7 | * Purpose: Processed station
|
---|
| 8 | *
|
---|
| 9 | * Author: L. Mervart
|
---|
| 10 | *
|
---|
| 11 | * Created: 29-Jul-2014
|
---|
| 12 | *
|
---|
| 13 | * Changes:
|
---|
| 14 | *
|
---|
| 15 | * -----------------------------------------------------------------------*/
|
---|
| 16 |
|
---|
[5810] | 17 | #include "pppStation.h"
|
---|
[5743] | 18 | #include "bncutils.h"
|
---|
[5806] | 19 | #include "pppModel.h"
|
---|
[5743] | 20 |
|
---|
[5814] | 21 | using namespace BNC_PPP;
|
---|
[5743] | 22 | using namespace std;
|
---|
| 23 |
|
---|
| 24 | // Constructor
|
---|
| 25 | //////////////////////////////////////////////////////////////////////////////
|
---|
[5810] | 26 | t_pppStation::t_pppStation() {
|
---|
[5743] | 27 | _windUp = new t_windUp();
|
---|
| 28 | }
|
---|
| 29 |
|
---|
| 30 | // Destructor
|
---|
| 31 | //////////////////////////////////////////////////////////////////////////////
|
---|
[5810] | 32 | t_pppStation::~t_pppStation() {
|
---|
[5743] | 33 | delete _windUp;
|
---|
| 34 | }
|
---|
| 35 |
|
---|
| 36 | //
|
---|
| 37 | //////////////////////////////////////////////////////////////////////////////
|
---|
[5810] | 38 | void t_pppStation::setXyzApr(const ColumnVector& xyzApr) {
|
---|
[5743] | 39 | _xyzApr = xyzApr;
|
---|
| 40 | _ellApr.ReSize(3);
|
---|
| 41 | xyz2ell(_xyzApr.data(), _ellApr.data());
|
---|
| 42 | }
|
---|
| 43 |
|
---|
| 44 | //
|
---|
| 45 | //////////////////////////////////////////////////////////////////////////////
|
---|
[5810] | 46 | void t_pppStation::setNeuEcc(const ColumnVector& neuEcc) {
|
---|
[5743] | 47 | _neuEcc = neuEcc;
|
---|
| 48 | _xyzEcc.ReSize(3);
|
---|
| 49 | neu2xyz(_ellApr.data(), _neuEcc.data(), _xyzEcc.data());
|
---|
| 50 | }
|
---|
| 51 |
|
---|
| 52 | //
|
---|
| 53 | //////////////////////////////////////////////////////////////////////////////
|
---|
[5810] | 54 | double t_pppStation::windUp(const bncTime& time, t_prn prn,
|
---|
[5743] | 55 | const ColumnVector& rSat) const {
|
---|
| 56 | return _windUp->value(time, _xyzApr, prn, rSat);
|
---|
| 57 | }
|
---|
| 58 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.