source: ntrip/trunk/BNC/src/PPP/pppClient.cpp@ 5740

Last change on this file since 5740 was 5740, checked in by mervart, 10 years ago
File size: 15.3 KB
Line 
1
2// Part of BNC, a utility for retrieving decoding and
3// converting GNSS data streams from NTRIP broadcasters.
4//
5// Copyright (C) 2007
6// German Federal Agency for Cartography and Geodesy (BKG)
7// http://www.bkg.bund.de
8// Czech Technical University Prague, Department of Geodesy
9// http://www.fsv.cvut.cz
10//
11// Email: euref-ip@bkg.bund.de
12//
13// This program is free software; you can redistribute it and/or
14// modify it under the terms of the GNU General Public License
15// as published by the Free Software Foundation, version 2.
16//
17// This program is distributed in the hope that it will be useful,
18// but WITHOUT ANY WARRANTY; without even the implied warranty of
19// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20// GNU General Public License for more details.
21//
22// You should have received a copy of the GNU General Public License
23// along with this program; if not, write to the Free Software
24// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25
26/* -------------------------------------------------------------------------
27 * BKG NTRIP Client
28 * -------------------------------------------------------------------------
29 *
30 * Class: t_pppClient
31 *
32 * Purpose: PPP Client processing starts here
33 *
34 * Author: L. Mervart
35 *
36 * Created: 29-Jul-2014
37 *
38 * Changes:
39 *
40 * -----------------------------------------------------------------------*/
41
42
43#include <iostream>
44#include <iomanip>
45#include <stdlib.h>
46#include <string.h>
47#include <stdexcept>
48
49#include "pppClient.h"
50#include "ephpool.h"
51#include "obspool.h"
52#include "satbias.h"
53#include "bncconst.h"
54#include "bncutils.h"
55#include "station.h"
56#include "bnctides.h"
57#include "bncantex.h"
58#include "filter.h"
59
60using namespace BNC;
61using namespace std;
62
63// Global Variable
64//////////////////////////////////////////////////////////////////////////////
65t_pppClient* pppClient = 0;
66
67// Constructor
68//////////////////////////////////////////////////////////////////////////////
69t_pppClient::t_pppClient() {
70 _opt = 0;
71 _output = 0;
72 _antex = 0;
73 _log = new ostringstream();
74 _ephPool = new t_ephPool();
75 _obsPool = new t_obsPool();
76 _staRover = new t_station();
77 _filter = new t_filter();
78}
79
80// Destructor
81//////////////////////////////////////////////////////////////////////////////
82t_pppClient::~t_pppClient() {
83 delete _log;
84 delete _opt;
85 delete _ephPool;
86 delete _obsPool;
87 delete _staRover;
88 delete _antex;
89 delete _filter;
90 clearObs();
91}
92
93//
94//////////////////////////////////////////////////////////////////////////////
95void t_pppClient::setOptions(const t_options* opt) {
96 delete _opt;
97 _opt = new t_options(*opt);
98
99 delete _antex; _antex = 0;
100 if (!_opt->_antexFile.empty()) {
101 _antex = new bncAntex(_opt->_antexFile.c_str());
102 }
103}
104
105//
106//////////////////////////////////////////////////////////////////////////////
107void t_pppClient::putGPSEphemeris(const t_ephGPS* eph) {
108 _ephPool->putEphemeris(new t_ephGPS(*eph));
109}
110
111//
112//////////////////////////////////////////////////////////////////////////////
113void t_pppClient::putGloEphemeris(const t_ephGlo* eph) {
114 _ephPool->putEphemeris(new t_ephGlo(*eph));
115}
116
117//
118//////////////////////////////////////////////////////////////////////////////
119void t_pppClient::putOrbCorrections(int numCorr, const t_orbCorr* corr) {
120 for (int ii = 0; ii < numCorr; ii++) {
121 _ephPool->putOrbCorrection(new t_orbCorr(corr[ii]));
122 }
123}
124
125//
126//////////////////////////////////////////////////////////////////////////////
127void t_pppClient::putClkCorrections(int numCorr, const t_clkCorr* corr) {
128 for (int ii = 0; ii < numCorr; ii++) {
129 _ephPool->putClkCorrection(new t_clkCorr(corr[ii]));
130 }
131}
132
133//
134//////////////////////////////////////////////////////////////////////////////
135void t_pppClient::putBiases(int numBiases, const t_satBiases* biases) {
136 for (int ii = 0; ii < numBiases; ii++) {
137 _obsPool->putBiases(new t_satBias(biases[ii]));
138 }
139}
140
141//
142//////////////////////////////////////////////////////////////////////////////
143t_irc t_pppClient::prepareObs(int numSat, const t_pppSatObs* satObs,
144 vector<t_satObs*>& obsVector, bncTime& epoTime) {
145 // Default
146 // -------
147 epoTime.reset();
148
149 // Create vector of valid observations
150 // -----------------------------------
151 int numValidGPS = 0;
152 for (int ii = 0; ii < numSat; ii++) {
153 char system = satObs[ii]._prn.system();
154 if (system == 'G' || (system == 'R' && OPT->useGlonass())) {
155 t_satObs* satObs = new t_satObs(satObs[ii]);
156 if (satObs->isValid()) {
157 obsVector.push_back(satObs);
158 if (satObs->prn().system() == 'G') {
159 ++numValidGPS;
160 }
161 }
162 else {
163 delete satObs;
164 }
165 }
166 }
167
168 // Check whether data are synchronized, compute epoTime
169 // ----------------------------------------------------
170 const double MAXSYNC = 0.05; // synchronization limit
171 double meanDt = 0.0;
172 for (unsigned ii = 0; ii < obsVector.size(); ii++) {
173 const t_satObs* satObs = obsVector.at(ii);
174 if (epoTime.undef()) {
175 epoTime = satObs->time();
176 }
177 else {
178 double dt = satObs->time() - epoTime;
179 if (fabs(dt) > MAXSYNC) {
180 LOG << "t_pppClient::prepareObs asynchronous observations" << endl;
181 return failure;
182 }
183 meanDt += dt;
184 }
185 }
186 epoTime += meanDt / obsVector.size();
187
188 return success;
189}
190
191// Compute the Bancroft position, check for blunders
192//////////////////////////////////////////////////////////////////////////////
193t_irc t_pppClient::cmpBancroft(const bncTime& epoTime,
194 vector<t_satObs*>& obsVector,
195 ColumnVector& xyzc, bool print) {
196
197 t_lc::type tLC = (OPT->dualFreqRequired() ? t_lc::cIF : t_lc::c1);
198
199 while (true) {
200 Matrix BB(obsVector.size(), 4);
201 int iObs = -1;
202 for (unsigned ii = 0; ii < obsVector.size(); ii++) {
203 const t_satObs* satObs = obsVector.at(ii);
204 if ( satObs->isValid() && satObs->prn().system() == 'G' &&
205 (!satObs->modelSet() || satObs->eleSat() >= OPT->_minEle) ) {
206 ++iObs;
207 BB[iObs][0] = satObs->xc()[0];
208 BB[iObs][1] = satObs->xc()[1];
209 BB[iObs][2] = satObs->xc()[2];
210 BB[iObs][3] = satObs->obsValue(tLC) - satObs->cmpValueForBanc(tLC);
211 }
212 }
213 if (iObs + 1 < OPT->_minObs) {
214 LOG << "t_pppClient::cmpBancroft not enough observations" << endl;
215 return failure;
216 }
217 BB = BB.Rows(1,iObs+1);
218 bancroft(BB, xyzc);
219
220 xyzc[3] /= t_CST::c;
221
222 // Check Blunders
223 // --------------
224 const double BLUNDER = 100.0;
225 double maxRes = 0.0;
226 unsigned maxResIndex = 0;
227 for (unsigned ii = 0; ii < obsVector.size(); ii++) {
228 const t_satObs* satObs = obsVector.at(ii);
229 if ( satObs->isValid() && satObs->prn().system() == 'G' &&
230 (!satObs->modelSet() || satObs->eleSat() >= OPT->_minEle) ) {
231 ColumnVector rr = satObs->xc().Rows(1,3) - xyzc.Rows(1,3);
232 double res = rr.norm_Frobenius() - satObs->obsValue(tLC)
233 - (satObs->xc()[3] - xyzc[3]) * t_CST::c;
234 if (fabs(res) > maxRes) {
235 maxRes = fabs(res);
236 maxResIndex = ii;
237 }
238 }
239 }
240 if (maxRes < BLUNDER) {
241 if (print) {
242 LOG.setf(ios::fixed);
243 LOG << string(epoTime) << " BANCROFT:" << ' '
244 << setw(14) << setprecision(3) << xyzc[0] << ' '
245 << setw(14) << setprecision(3) << xyzc[1] << ' '
246 << setw(14) << setprecision(3) << xyzc[2] << ' '
247 << setw(14) << setprecision(3) << xyzc[3] * t_CST::c << endl << endl;
248 }
249 break;
250 }
251 else {
252 t_satObs* satObs = obsVector.at(maxResIndex);
253 LOG << "t_pppClient::cmpBancroft outlier " << satObs->prn().toString()
254 << " " << maxRes << endl;
255 delete satObs;
256 obsVector.erase(obsVector.begin() + maxResIndex);
257 }
258 }
259
260 return success;
261}
262
263// Compute A Priori GPS-Glonass Offset
264//////////////////////////////////////////////////////////////////////////////
265double t_pppClient::cmpOffGG(vector<t_satObs*>& obsVector) {
266
267 t_lc::type tLC = (OPT->dualFreqRequired() ? t_lc::cIF : t_lc::c1);
268 double offGG = 0.0;
269
270 if (OPT->useGlonass()) {
271 while (true) {
272 offGG = 0.0;
273 bool outlierFound = false;
274 unsigned nObs = 0;
275 for (unsigned ii = 0; ii < obsVector.size(); ii++) {
276 t_satObs* satObs = obsVector.at(ii);
277 if ( !satObs->outlier() && satObs->isValid() && satObs->prn().system() == 'R' &&
278 (!satObs->modelSet() || satObs->eleSat() >= OPT->_minEle) ) {
279 ++nObs;
280 double ll = satObs->obsValue(tLC) - satObs->cmpValue(tLC);
281 if (fabs(ll) > 1000.0) {
282 satObs->setOutlier();
283 outlierFound = true;
284 LOG << "t_pppClient::cmpOffGG outlier " << satObs->prn().toString()
285 << " " << ll << endl;
286 }
287 offGG += ll;
288 }
289 }
290 if (nObs > 0) {
291 offGG = offGG / nObs;
292 }
293 else {
294 offGG = 0.0;
295 }
296 if (!outlierFound) {
297 break;
298 }
299 }
300 }
301
302 return offGG;
303}
304
305//
306//////////////////////////////////////////////////////////////////////////////
307void t_pppClient::initOutput(t_pppOutput* output) {
308 _output = output;
309 _output->_numSat = 0;
310 _output->_pDop = 0.0;
311 _output->_error = false;
312}
313
314//
315//////////////////////////////////////////////////////////////////////////////
316void t_pppClient::clearObs() {
317 for (unsigned ii = 0; ii < _obsRover.size(); ii++) {
318 delete _obsRover.at(ii);
319 }
320 _obsRover.clear();
321}
322
323//
324//////////////////////////////////////////////////////////////////////////////
325void t_pppClient::finish(t_irc irc) {
326
327 clearObs();
328
329 _output->_epoTime = _epoTimeRover;
330
331 if (irc == success) {
332 _output->_xyzRover[0] = _staRover->xyzApr()[0] + _filter->x()[0];
333 _output->_xyzRover[1] = _staRover->xyzApr()[1] + _filter->x()[1];
334 _output->_xyzRover[2] = _staRover->xyzApr()[2] + _filter->x()[2];
335 copy(&_filter->Q().data()[0], &_filter->Q().data()[6], _output->_covMatrix);
336 _output->_numSat = _filter->numSat();
337 _output->_pDop = _filter->PDOP();
338 _output->_error = false;
339 }
340 else {
341 _output->_error = true;
342 }
343 _output->_log = _log->str();
344 delete _log; _log = new ostringstream();
345}
346
347//
348//////////////////////////////////////////////////////////////////////////////
349t_irc t_pppClient::cmpModel(t_station* station, const ColumnVector& xyzc,
350 vector<t_satObs*>& obsVector) {
351
352 bncTime time;
353 time = _epoTimeRover;
354 station->setName(OPT->_roverName);
355 station->setAntName(OPT->_antNameRover);
356 if (OPT->xyzAprRoverSet()) {
357 station->setXyzApr(OPT->_xyzAprRover);
358 }
359 else {
360 station->setXyzApr(xyzc.Rows(1,3));
361 }
362 station->setNeuEcc(OPT->_neuEccRover);
363
364 // Receiver Clock
365 // --------------
366 station->setDClk(xyzc[3]);
367
368 // US Restriction
369 // --------------
370 station->checkRestriction(time);
371
372 // Tides
373 // -----
374 ColumnVector hlp = station->xyzApr();
375 tides(time, hlp);
376 station->setTideDspl(hlp - station->xyzApr());
377
378 // Observation model
379 // -----------------
380 vector<t_satObs*>::iterator it = obsVector.begin();
381 while (it != obsVector.end()) {
382 t_satObs* satObs = *it;
383 satObs->cmpModel(station);
384 if (satObs->isValid() && satObs->eleSat() >= OPT->_minEle) {
385 ++it;
386 }
387 else {
388 delete satObs;
389 it = obsVector.erase(it);
390 }
391 }
392
393 return success;
394}
395
396//
397//////////////////////////////////////////////////////////////////////////////
398void t_pppClient::processEpoch(int numSatRover, const t_pppSatObs* satObsRover,
399 t_pppOutput* output) {
400
401 try {
402 initOutput(output);
403
404 // Prepare Observations of the Rover
405 // ---------------------------------
406 if (prepareObs(numSatRover, satObsRover, _obsRover,
407 _epoTimeRover) != success) {
408 return finish(failure);
409 }
410
411 LOG << "\nResults of Epoch ";
412 if (!_epoTimeRover.undef()) LOG << string(_epoTimeRover);
413 LOG << "\n--------------------------------------\n";
414
415 for (int iter = 1; iter <= 2; iter++) {
416 ColumnVector xyzc(4); xyzc = 0.0;
417 bool print = (iter == 2);
418 if (cmpBancroft(_epoTimeRover, _obsRover, xyzc, print) != success) {
419 return finish(failure);
420 }
421 if (cmpModel(_staRover, xyzc, _obsRover) != success) {
422 return finish(failure);
423 }
424 }
425
426 _offGG = cmpOffGG(_obsRover);
427
428 // Store last epoch of data
429 // ------------------------
430 _obsPool->putEpoch(_epoTimeRover, _obsRover);
431
432 // Process Epoch in Filter
433 // -----------------------
434 if (_filter->processEpoch(_obsPool) != success) {
435 return finish(failure);
436 }
437 }
438 catch (Exception& exc) {
439 LOG << exc.what() << endl;
440 return finish(failure);
441 }
442 catch (string& msg) {
443 LOG << "Exception: " << msg << endl;
444 return finish(failure);
445 }
446 catch (logic_error exc) {
447 LOG << exc.what() << endl;
448 return finish(failure);
449 }
450 catch (const char* msg) {
451 LOG << msg << endl;
452 return finish(failure);
453 }
454 catch (...) {
455 LOG << "unknown exception" << endl;
456 return finish(failure);
457 }
458
459 return finish(success);
460}
461
462//
463////////////////////////////////////////////////////////////////////////////
464double lorentz(const ColumnVector& aa, const ColumnVector& bb) {
465 return aa[0]*bb[0] + aa[1]*bb[1] + aa[2]*bb[2] - aa[3]*bb[3];
466}
467
468//
469////////////////////////////////////////////////////////////////////////////
470void t_pppClient::bancroft(const Matrix& BBpass, ColumnVector& pos) {
471
472 if (pos.Nrows() != 4) {
473 pos.ReSize(4);
474 }
475 pos = 0.0;
476
477 for (int iter = 1; iter <= 2; iter++) {
478 Matrix BB = BBpass;
479 int mm = BB.Nrows();
480 for (int ii = 1; ii <= mm; ii++) {
481 double xx = BB(ii,1);
482 double yy = BB(ii,2);
483 double traveltime = 0.072;
484 if (iter > 1) {
485 double zz = BB(ii,3);
486 double rho = sqrt( (xx-pos(1)) * (xx-pos(1)) +
487 (yy-pos(2)) * (yy-pos(2)) +
488 (zz-pos(3)) * (zz-pos(3)) );
489 traveltime = rho / t_CST::c;
490 }
491 double angle = traveltime * t_CST::omega;
492 double cosa = cos(angle);
493 double sina = sin(angle);
494 BB(ii,1) = cosa * xx + sina * yy;
495 BB(ii,2) = -sina * xx + cosa * yy;
496 }
497
498 Matrix BBB;
499 if (mm > 4) {
500 SymmetricMatrix hlp; hlp << BB.t() * BB;
501 BBB = hlp.i() * BB.t();
502 }
503 else {
504 BBB = BB.i();
505 }
506 ColumnVector ee(mm); ee = 1.0;
507 ColumnVector alpha(mm); alpha = 0.0;
508 for (int ii = 1; ii <= mm; ii++) {
509 alpha(ii) = lorentz(BB.Row(ii).t(),BB.Row(ii).t())/2.0;
510 }
511 ColumnVector BBBe = BBB * ee;
512 ColumnVector BBBalpha = BBB * alpha;
513 double aa = lorentz(BBBe, BBBe);
514 double bb = lorentz(BBBe, BBBalpha)-1;
515 double cc = lorentz(BBBalpha, BBBalpha);
516 double root = sqrt(bb*bb-aa*cc);
517
518 Matrix hlpPos(4,2);
519 hlpPos.Column(1) = (-bb-root)/aa * BBBe + BBBalpha;
520 hlpPos.Column(2) = (-bb+root)/aa * BBBe + BBBalpha;
521
522 ColumnVector omc(2);
523 for (int pp = 1; pp <= 2; pp++) {
524 hlpPos(4,pp) = -hlpPos(4,pp);
525 omc(pp) = BB(1,4) -
526 sqrt( (BB(1,1)-hlpPos(1,pp)) * (BB(1,1)-hlpPos(1,pp)) +
527 (BB(1,2)-hlpPos(2,pp)) * (BB(1,2)-hlpPos(2,pp)) +
528 (BB(1,3)-hlpPos(3,pp)) * (BB(1,3)-hlpPos(3,pp)) ) -
529 hlpPos(4,pp);
530 }
531 if ( fabs(omc(1)) > fabs(omc(2)) ) {
532 pos = hlpPos.Column(2);
533 }
534 else {
535 pos = hlpPos.Column(1);
536 }
537 }
538}
539
Note: See TracBrowser for help on using the repository browser.