source: ntrip/trunk/BNC/src/rinex/bncpostprocess.cpp@ 5256

Last change on this file since 5256 was 5240, checked in by mervart, 12 years ago
File size: 7.1 KB
RevLine 
[3615]1// Part of BNC, a utility for retrieving decoding and
2// converting GNSS data streams from NTRIP broadcasters.
3//
4// Copyright (C) 2007
5// German Federal Agency for Cartography and Geodesy (BKG)
6// http://www.bkg.bund.de
7// Czech Technical University Prague, Department of Geodesy
8// http://www.fsv.cvut.cz
9//
10// Email: euref-ip@bkg.bund.de
11//
12// This program is free software; you can redistribute it and/or
13// modify it under the terms of the GNU General Public License
14// as published by the Free Software Foundation, version 2.
15//
16// This program is distributed in the hope that it will be useful,
17// but WITHOUT ANY WARRANTY; without even the implied warranty of
18// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19// GNU General Public License for more details.
20//
21// You should have received a copy of the GNU General Public License
22// along with this program; if not, write to the Free Software
23// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
24
25/* -------------------------------------------------------------------------
26 * BKG NTRIP Client
27 * -------------------------------------------------------------------------
28 *
[3626]29 * Class: t_postProcessing
[3615]30 *
31 * Purpose: Precise Point Positioning in Post-Processing Mode
32 *
33 * Author: L. Mervart
34 *
35 * Created: 22-Jan-2012
36 *
37 * Changes:
38 *
39 * -----------------------------------------------------------------------*/
40
41#include <iostream>
42#include "bncpostprocess.h"
[5070]43#include "bnccore.h"
[3625]44#include "bncsettings.h"
[3642]45#include "pppopt.h"
[3643]46#include "bncpppclient.h"
[3717]47#include "rinex/rnxobsfile.h"
[3646]48#include "rnxnavfile.h"
[3688]49#include "corrfile.h"
[3695]50#include "bncsettings.h"
51#include "bncutils.h"
[3615]52
53using namespace std;
54
[3626]55// Constructor
[3615]56////////////////////////////////////////////////////////////////////////////
[3626]57t_postProcessing::t_postProcessing(QObject* parent) : QThread(parent) {
[3646]58 _opt = new t_pppOpt();
59 _rnxObsFile = 0;
60 _rnxNavFile = 0;
[3688]61 _corrFile = 0;
[3646]62 _pppClient = 0;
[5238]63 _isToBeDeleted = false;
[3695]64
65 bncSettings settings;
66
67 QString outFileName = settings.value("postOutFile").toString();
68 if (outFileName.isEmpty()) {
69 _outFile = 0;
70 _outStream = 0;
71 }
72 else {
73 expandEnvVar(outFileName);
74 _outFile = new QFile(outFileName);
75 _outFile->open(QIODevice::WriteOnly | QIODevice::Text);
76 _outStream = new QTextStream();
77 _outStream->setDevice(_outFile);
78 }
[3625]79}
80
[3626]81// Destructor
82////////////////////////////////////////////////////////////////////////////
83t_postProcessing::~t_postProcessing() {
[3646]84 delete _pppClient;
85 delete _rnxNavFile;
86 delete _rnxObsFile;
[3688]87 delete _corrFile;
[3642]88 delete _opt;
[3695]89 delete _outStream;
90 delete _outFile;
[3626]91}
92
[3644]93// Write a Program Message
94////////////////////////////////////////////////////////////////////////////
95void t_postProcessing::slotMessage(QByteArray msg, bool /* showOnScreen */) {
[3695]96 if (_outStream) {
[3696]97 *_outStream << endl << msg;
[3695]98 _outStream->flush();
99 }
100 else {
[5068]101 BNC_CORE->slotMessage(msg, false);
[3695]102 }
[3644]103}
104
[4261]105// Set Observations from RINEX File
106////////////////////////////////////////////////////////////////////////////
107void t_postProcessing::setObsFromRnx(const t_rnxObsFile* rnxObsFile,
108 const t_rnxObsFile::t_rnxEpo* epo,
109 const t_rnxObsFile::t_rnxSat& rnxSat,
110 t_obs& obs) {
111
112 strncpy(obs.StatID, rnxObsFile->markerName().toAscii().constData(),
113 sizeof(obs.StatID));
[4389]114
[4261]115 obs.satSys = rnxSat.satSys;
116 obs.satNum = rnxSat.satNum;
117 obs.GPSWeek = epo->tt.gpsw();
118 obs.GPSWeeks = epo->tt.gpssec();
[4389]119
[4261]120 for (int iType = 0; iType < rnxObsFile->nTypes(obs.satSys); iType++) {
[4391]121 QString type = rnxObsFile->obsType(obs.satSys,iType).toAscii();
[4403]122 obs.setMeasdata(type, rnxObsFile->version(), rnxSat.obs[iType]);
[4561]123 if (type.indexOf("L1") == 0) {
[4609]124 obs.snrL1 = rnxSat.snr[iType];
[4619]125 obs.slipL1 = (rnxSat.lli[iType] & 1);
[4561]126 }
127 else if (type.indexOf("L2") == 0) {
[4609]128 obs.snrL2 = rnxSat.snr[iType];
[4619]129 obs.slipL2 = (rnxSat.lli[iType] & 1);
[4561]130 }
131 else if (type.indexOf("L5") == 0) {
[4609]132 obs.snrL5 = rnxSat.snr[iType];
[4619]133 obs.slipL5 = (rnxSat.lli[iType] & 1);
[4561]134 }
[4261]135 }
136}
137
[5238]138//
139////////////////////////////////////////////////////////////////////////////
140void t_postProcessing::terminate() {
141 _isToBeDeleted = true;
142 if (!isRunning()) {
143 delete this;
144 }
145}
146
[3626]147//
148////////////////////////////////////////////////////////////////////////////
149void t_postProcessing::run() {
[3615]150
[3644]151 if (_pppClient) {
152 return;
153 }
154 else {
[4363]155 try {
156 _rnxObsFile = new t_rnxObsFile(_opt->obsFileName, t_rnxObsFile::input);
157 }
158 catch (...) {
[4364]159 delete _rnxObsFile; _rnxObsFile = 0;
[4363]160 emit finished();
161 return;
162 }
[3999]163 _rnxNavFile = new t_rnxNavFile(_opt->navFileName, t_rnxNavFile::input);
[3646]164 _pppClient = new bncPPPclient("POST", _opt, false);
[3644]165
[3688]166 if (!_opt->corrFileName.isEmpty()) {
167 _corrFile = new t_corrFile(_opt->corrFileName);
168 connect(_corrFile, SIGNAL(newCorrections(QList<QString>)),
[3752]169 _pppClient, SLOT(slotNewCorrections(QList<QString>)),
170 Qt::DirectConnection);
[3688]171 }
[3644]172
173 connect(_pppClient, SIGNAL(newMessage(QByteArray,bool)),
174 this, SLOT(slotMessage(const QByteArray,bool)));
[5215]175 qRegisterMetaType<bncTime>("bncTime");
[5214]176 connect(_pppClient, SIGNAL(newPosition(bncTime, double, double, double)),
177 this, SIGNAL(newPosition(bncTime, double, double, double)));
[3643]178 }
179
[3685]180 // Read/Process Observations
181 // -------------------------
182 int nEpo = 0;
[3717]183 const t_rnxObsFile::t_rnxEpo* epo = 0;
[3683]184 while ( (epo = _rnxObsFile->nextEpoch()) != 0 ) {
[3685]185 ++nEpo;
[3689]186
[3748]187 // Get Corrections
188 // ---------------
[3689]189 if (_corrFile) {
190 _corrFile->syncRead(epo->tt);
191 }
192
[3748]193 // Get Ephemerides
194 // ----------------
195 t_eph* eph = 0;
[3757]196 const QMap<QString, int>* corrIODs = _corrFile ? &_corrFile->corrIODs() : 0;
197 while ( (eph = _rnxNavFile->getNextEph(epo->tt, corrIODs)) != 0 ) {
[3748]198 if (_pppClient->putNewEph(eph) != success) {
199 delete eph; eph = 0;
200 }
201 }
202
[3717]203 for (unsigned iObs = 0; iObs < epo->rnxSat.size(); iObs++) {
[5238]204 if (_isToBeDeleted) {
205 QThread::exit(0);
206 return;
207 }
[4261]208
[3717]209 const t_rnxObsFile::t_rnxSat& rnxSat = epo->rnxSat[iObs];
[4261]210
[3680]211 t_obs obs;
[4261]212 t_postProcessing::setObsFromRnx(_rnxObsFile, epo, rnxSat, obs);
[3762]213
214 // Get Glonass Channel Number
215 // -------------------------
[4261]216 bool obsOK = true;
[3762]217 if (obs.satSys == 'R') {
218 QString prn = QString("%1%2").arg(obs.satSys)
219 .arg(obs.satNum, 2, 10, QChar('0'));
220 const bncEphUser::t_ephPair* ephPair = _pppClient->ephPair(prn);
221 if (ephPair && ephPair->last) {
222 obs.slotNum = ((t_ephGlo*) ephPair->last)->slotNum();
223 }
[3763]224 else {
225 obsOK = false;
226 }
[3762]227 }
228
229 // Put the new Observation to the Client
230 // -------------------------------------
[3763]231 if (obsOK) {
232 _pppClient->putNewObs(obs);
233 }
[3680]234 }
[3685]235 if (nEpo % 10 == 0) {
236 emit progress(nEpo);
237 }
[3674]238 }
239
[5072]240 if (BNC_CORE->mode() != t_bncCore::interactive) {
[5066]241 qApp->exit(0);
[3973]242 }
243 else {
244 emit finished();
245 deleteLater();
246 }
[3615]247}
Note: See TracBrowser for help on using the repository browser.