source: ntrip/trunk/BNC/src/rinex/reqcedit.cpp@ 6223

Last change on this file since 6223 was 6223, checked in by mervart, 10 years ago
File size: 16.1 KB
RevLine 
[3901]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 *
29 * Class: t_reqcEdit
30 *
31 * Purpose: Edit/Concatenate RINEX Files
32 *
33 * Author: L. Mervart
34 *
35 * Created: 11-Apr-2012
36 *
37 * Changes:
38 *
39 * -----------------------------------------------------------------------*/
40
41#include <iostream>
42#include "reqcedit.h"
[5070]43#include "bnccore.h"
[3901]44#include "bncsettings.h"
[4516]45#include "bncutils.h"
[5378]46#include "rnxobsfile.h"
47#include "rnxnavfile.h"
[3901]48
49using namespace std;
50
51// Constructor
52////////////////////////////////////////////////////////////////////////////
53t_reqcEdit::t_reqcEdit(QObject* parent) : QThread(parent) {
54
55 bncSettings settings;
56
[4516]57 _logFileName = settings.value("reqcOutLogFile").toString(); expandEnvVar(_logFileName);
58 _logFile = 0;
59 _log = 0;
[3901]60 _obsFileNames = settings.value("reqcObsFile").toString().split(",", QString::SkipEmptyParts);
61 _outObsFileName = settings.value("reqcOutObsFile").toString();
[3999]62 _navFileNames = settings.value("reqcNavFile").toString().split(",", QString::SkipEmptyParts);
63 _outNavFileName = settings.value("reqcOutNavFile").toString();
[4010]64 int version = settings.value("reqcRnxVersion").toInt();
65 if (version < 3) {
[5378]66 _rnxVersion = t_rnxObsHeader::defaultRnxObsVersion2;
[4010]67 }
68 else {
[5378]69 _rnxVersion = t_rnxObsHeader::defaultRnxObsVersion3;
[4010]70 }
[3981]71 _samplingRate = settings.value("reqcSampling").toInt();
[3989]72 _begTime = bncTime(settings.value("reqcStartDateTime").toString().toAscii().data());
73 _endTime = bncTime(settings.value("reqcEndDateTime").toString().toAscii().data());
[3901]74}
75
76// Destructor
77////////////////////////////////////////////////////////////////////////////
78t_reqcEdit::~t_reqcEdit() {
79 for (int ii = 0; ii < _rnxObsFiles.size(); ii++) {
80 delete _rnxObsFiles[ii];
81 }
[4001]82 for (int ii = 0; ii < _ephs.size(); ii++) {
83 delete _ephs[ii];
84 }
[4516]85 delete _log; _log = 0;
86 delete _logFile; _logFile = 0;
[3901]87}
88
89//
90////////////////////////////////////////////////////////////////////////////
91void t_reqcEdit::run() {
[3998]92
[4516]93 // Open Log File
94 // -------------
95 _logFile = new QFile(_logFileName);
[4518]96 if (_logFile->open(QIODevice::WriteOnly | QIODevice::Text)) {
97 _log = new QTextStream();
98 _log->setDevice(_logFile);
99 }
[4516]100
[4518]101 // Log File Header
102 // ---------------
103 if (_log) {
[4519]104 *_log << QByteArray(78, '-') << endl;
[4518]105 *_log << "Concatenation of RINEX Observation and/or Navigation Files\n";
[4519]106 *_log << QByteArray(78, '-') << endl;
[4520]107
[4523]108 *_log << QByteArray("Program").leftJustified(15) << ": "
[5068]109 << BNC_CORE->pgmName() << endl;
[4523]110 *_log << QByteArray("Run by").leftJustified(15) << ": "
[5068]111 << BNC_CORE->userName() << endl;
[4523]112 *_log << QByteArray("Date").leftJustified(15) << ": "
[4521]113 << QDateTime::currentDateTime().toUTC().toString("yyyy-MM-dd hh:mm:ss") << endl;
[4523]114 *_log << QByteArray("RINEX Version").leftJustified(15) << ": "
[4522]115 << _rnxVersion << endl;
[4523]116 *_log << QByteArray("Sampling").leftJustified(15) << ": "
[4522]117 << _samplingRate << endl;
[4523]118 *_log << QByteArray("Start time").leftJustified(15) << ": "
[4522]119 << _begTime.datestr().c_str() << ' '
120 << _begTime.timestr(0).c_str() << endl;
[4523]121 *_log << QByteArray("End time").leftJustified(15) << ": "
[4522]122 << _endTime.datestr().c_str() << ' '
123 << _endTime.timestr(0).c_str() << endl;
[4523]124 *_log << QByteArray("Input Obs Files").leftJustified(15) << ": "
125 << _obsFileNames.join(",") << endl;
126 *_log << QByteArray("Input Nav Files").leftJustified(15) << ": "
127 << _navFileNames.join(",") << endl;
128 *_log << QByteArray("Output Obs File").leftJustified(15) << ": "
129 << _outObsFileName << endl;
130 *_log << QByteArray("Output Nav File").leftJustified(15) << ": "
131 << _outNavFileName << endl;
[4520]132
133 *_log << QByteArray(78, '-') << endl;
[4518]134 _log->flush();
135 }
136
[4516]137 // Handle Observation Files
138 // ------------------------
[3998]139 editObservations();
[3901]140
[4516]141 // Handle Navigations Files
142 // ------------------------
[3998]143 editEphemerides();
144
[4516]145 // Exit (thread)
146 // -------------
[5072]147 if (BNC_CORE->mode() != t_bncCore::interactive) {
[5066]148 qApp->exit(0);
[3998]149 }
150 else {
151 emit finished();
152 deleteLater();
153 }
154}
155
[4254]156// Initialize input observation files, sort them according to start time
[3998]157////////////////////////////////////////////////////////////////////////////
[4254]158void t_reqcEdit::initRnxObsFiles(const QStringList& obsFileNames,
[4525]159 QVector<t_rnxObsFile*>& rnxObsFiles,
160 QTextStream* log) {
[3998]161
[4254]162 QStringListIterator it(obsFileNames);
[3901]163 while (it.hasNext()) {
164 QString fileName = it.next();
[4080]165 if (fileName.indexOf('*') != -1 || fileName.indexOf('?') != -1) {
166 QFileInfo fileInfo(fileName);
167 QDir dir = fileInfo.dir();
168 QStringList filters; filters << fileInfo.fileName();
169 QListIterator<QFileInfo> it(dir.entryInfoList(filters));
170 while (it.hasNext()) {
171 QString filePath = it.next().filePath();
[4364]172 t_rnxObsFile* rnxObsFile = 0;
[4363]173 try {
[4364]174 rnxObsFile = new t_rnxObsFile(filePath, t_rnxObsFile::input);
[4363]175 rnxObsFiles.append(rnxObsFile);
176 }
177 catch (...) {
[4364]178 delete rnxObsFile;
[4525]179 if (log) {
180 *log << "Error in rnxObsFile " << filePath.toAscii().data() << endl;
181 }
[4363]182 }
[4080]183 }
184 }
185 else {
[4364]186 t_rnxObsFile* rnxObsFile = 0;
[4363]187 try {
[4364]188 rnxObsFile = new t_rnxObsFile(fileName, t_rnxObsFile::input);
[4363]189 rnxObsFiles.append(rnxObsFile);
190 }
191 catch (...) {
[4525]192 if (log) {
193 *log << "Error in rnxObsFile " << fileName.toAscii().data() << endl;
194 }
[4363]195 }
[4080]196 }
[3901]197 }
[4254]198 qStableSort(rnxObsFiles.begin(), rnxObsFiles.end(),
[3901]199 t_rnxObsFile::earlierStartTime);
[4254]200}
[3901]201
[4254]202//
203////////////////////////////////////////////////////////////////////////////
204void t_reqcEdit::editObservations() {
205
206 // Easy Exit
207 // ---------
208 if (_obsFileNames.isEmpty() || _outObsFileName.isEmpty()) {
209 return;
210 }
211
[4525]212 t_reqcEdit::initRnxObsFiles(_obsFileNames, _rnxObsFiles, _log);
[4254]213
[3901]214 // Initialize output observation file
215 // ----------------------------------
216 t_rnxObsFile outObsFile(_outObsFileName, t_rnxObsFile::output);
217
[6118]218 // Select observation types
219 // ------------------------
220 bncSettings settings;
221 QStringList useObsTypes = settings.value("reqcUseObsTypes").toString().split(" ", QString::SkipEmptyParts);
222
[6130]223 // Put together all observation types
224 // ----------------------------------
225 if (_rnxObsFiles.size() > 1 && useObsTypes.size() == 0) {
226 for (int ii = 0; ii < _rnxObsFiles.size(); ii++) {
227 t_rnxObsFile* obsFile = _rnxObsFiles[ii];
228 for (int iSys = 0; iSys < obsFile->numSys(); iSys++) {
229 char sys = obsFile->system(iSys);
230 if (sys != ' ') {
[6131]231 for (int iType = 0; iType < obsFile->nTypes(sys); iType++) {
232 QString type = obsFile->obsType(sys, iType);
[6132]233 if (_rnxVersion < 3.0) {
234 useObsTypes << type;
235 }
236 else {
237 useObsTypes << QString(sys) + ":" + type;
238 }
[6131]239 }
[6130]240 }
241 }
242 }
[6132]243 useObsTypes.removeDuplicates();
[6130]244 }
245
[3901]246 // Loop over all input observation files
247 // -------------------------------------
248 for (int ii = 0; ii < _rnxObsFiles.size(); ii++) {
249 t_rnxObsFile* obsFile = _rnxObsFiles[ii];
[4524]250 if (_log) {
251 *_log << "Processing File: " << obsFile->fileName() << " start: "
252 << obsFile->startTime().datestr().c_str() << ' '
253 << obsFile->startTime().timestr(0).c_str() << endl;
254 }
[3901]255 if (ii == 0) {
[6223]256 outObsFile.setHeader(obsFile->header(), _rnxVersion, &useObsTypes);
[3992]257 if (_begTime.valid() && _begTime > outObsFile.startTime()) {
258 outObsFile.setStartTime(_begTime);
259 }
[4112]260 if (_samplingRate > outObsFile.interval()) {
261 outObsFile.setInterval(_samplingRate);
262 }
[3982]263 editRnxObsHeader(outObsFile);
[4117]264 bncSettings settings;
[4114]265 QMap<QString, QString> txtMap;
[4117]266 QString runBy = settings.value("reqcRunBy").toString();
267 if (!runBy.isEmpty()) {
268 txtMap["RUN BY"] = runBy;
269 }
270 QString comment = settings.value("reqcComment").toString();
271 if (!comment.isEmpty()) {
272 txtMap["COMMENT"] = comment;
273 }
[4514]274 outObsFile.header().write(outObsFile.stream(), &txtMap);
[3901]275 }
[3994]276 t_rnxObsFile::t_rnxEpo* epo = 0;
[4541]277 try {
278 while ( (epo = obsFile->nextEpoch()) != 0) {
279 if (_begTime.valid() && epo->tt < _begTime) {
280 continue;
281 }
282 if (_endTime.valid() && epo->tt > _endTime) {
283 break;
284 }
285
286 if (_samplingRate == 0 ||
287 fmod(round(epo->tt.gpssec()), _samplingRate) == 0) {
288 applyLLI(obsFile, epo);
289 outObsFile.writeEpoch(epo);
290 }
291 else {
292 rememberLLI(obsFile, epo);
293 }
[3993]294 }
[4541]295 }
296 catch (QString str) {
297 if (_log) {
298 *_log << "Exception " << str << endl;
[3993]299 }
[3994]300 else {
[4541]301 qDebug() << str;
[3994]302 }
[4541]303 return;
[3901]304 }
[6130]305 catch (...) {
306 if (_log) {
307 *_log << "Exception unknown" << endl;
308 }
309 else {
310 qDebug() << "Exception unknown";
311 }
312 return;
313 }
[3901]314 }
315}
[3982]316
317// Change RINEX Header Content
318////////////////////////////////////////////////////////////////////////////
[3985]319void t_reqcEdit::editRnxObsHeader(t_rnxObsFile& obsFile) {
[3982]320
[3983]321 bncSettings settings;
322
323 QString oldMarkerName = settings.value("reqcOldMarkerName").toString();
324 QString newMarkerName = settings.value("reqcNewMarkerName").toString();
[4090]325 if (!newMarkerName.isEmpty()) {
326 if (oldMarkerName.isEmpty() ||
327 QRegExp(oldMarkerName).exactMatch(obsFile.markerName())) {
328 obsFile.setMarkerName(newMarkerName);
329 }
[3985]330 }
331
[3983]332 QString oldAntennaName = settings.value("reqcOldAntennaName").toString();
333 QString newAntennaName = settings.value("reqcNewAntennaName").toString();
[4090]334 if (!newAntennaName.isEmpty()) {
335 if (oldAntennaName.isEmpty() ||
336 QRegExp(oldAntennaName).exactMatch(obsFile.antennaName())) {
337 obsFile.setAntennaName(newAntennaName);
338 }
[3985]339 }
[3983]340
[3985]341 QString oldReceiverType = settings.value("reqcOldReceiverName").toString();
342 QString newReceiverType = settings.value("reqcNewReceiverName").toString();
[4090]343 if (!newReceiverType.isEmpty()) {
344 if (oldReceiverType.isEmpty() ||
345 QRegExp(oldReceiverType).exactMatch(obsFile.receiverType())) {
346 obsFile.setReceiverType(newReceiverType);
347 }
[3985]348 }
[3982]349}
[3994]350
351//
352////////////////////////////////////////////////////////////////////////////
[3995]353void t_reqcEdit::rememberLLI(const t_rnxObsFile* obsFile,
354 const t_rnxObsFile::t_rnxEpo* epo) {
[3994]355
[3995]356 if (_samplingRate == 0) {
357 return;
358 }
359
360 for (unsigned iSat = 0; iSat < epo->rnxSat.size(); iSat++) {
361 const t_rnxObsFile::t_rnxSat& rnxSat = epo->rnxSat[iSat];
[6121]362 char sys = rnxSat.prn.system();
363 QString prn(rnxSat.prn.toString().c_str());
[3997]364
[3995]365 for (int iType = 0; iType < obsFile->nTypes(sys); iType++) {
[6121]366 QString type = obsFile->obsType(sys, iType);
[3997]367 if (!_lli[prn].contains(iType)) {
368 _lli[prn][iType] = 0;
[3996]369 }
[6121]370 if (rnxSat.obs.contains(type) && rnxSat.obs[type].lli & 1) {
[3997]371 _lli[prn][iType] |= 1;
[3996]372 }
[3995]373 }
374 }
[3994]375}
376
377//
378////////////////////////////////////////////////////////////////////////////
[3995]379void t_reqcEdit::applyLLI(const t_rnxObsFile* obsFile,
380 t_rnxObsFile::t_rnxEpo* epo) {
[3996]381
382 if (_samplingRate == 0) {
[3995]383 return;
384 }
[3996]385
386 for (unsigned iSat = 0; iSat < epo->rnxSat.size(); iSat++) {
387 t_rnxObsFile::t_rnxSat& rnxSat = epo->rnxSat[iSat];
[6121]388 char sys = rnxSat.prn.system();
389 QString prn(rnxSat.prn.toString().c_str());
[3997]390
[3996]391 for (int iType = 0; iType < obsFile->nTypes(sys); iType++) {
[6121]392 QString type = obsFile->obsType(sys, iType);
[3997]393 if (_lli[prn].contains(iType) && _lli[prn][iType] & 1) {
[6121]394 if (rnxSat.obs.contains(type)) {
395 rnxSat.obs[type].lli |= 1;
396 }
[3996]397 }
398 }
399 }
400
401 _lli.clear();
[3994]402}
[3998]403
[4256]404/// Read All Ephemerides
[3998]405////////////////////////////////////////////////////////////////////////////
[4256]406void t_reqcEdit::readEphemerides(const QStringList& navFileNames,
407 QVector<t_eph*>& ephs) {
[3998]408
[4256]409 QStringListIterator it(navFileNames);
[3999]410 while (it.hasNext()) {
411 QString fileName = it.next();
[4081]412 if (fileName.indexOf('*') != -1 || fileName.indexOf('?') != -1) {
413 QFileInfo fileInfo(fileName);
414 QDir dir = fileInfo.dir();
415 QStringList filters; filters << fileInfo.fileName();
416 QListIterator<QFileInfo> it(dir.entryInfoList(filters));
417 while (it.hasNext()) {
418 QString filePath = it.next().filePath();
[4256]419 appendEphemerides(filePath, ephs);
[4000]420 }
421 }
[4081]422 else {
[4256]423 appendEphemerides(fileName, ephs);
[4081]424 }
[3999]425 }
[4256]426 qStableSort(ephs.begin(), ephs.end(), t_eph::earlierTime);
427}
[3999]428
[4256]429//
430////////////////////////////////////////////////////////////////////////////
431void t_reqcEdit::editEphemerides() {
432
433 // Easy Exit
434 // ---------
435 if (_navFileNames.isEmpty() || _outNavFileName.isEmpty()) {
436 return;
437 }
438
[4257]439 // Read Ephemerides
440 // ----------------
[4256]441 t_reqcEdit::readEphemerides(_navFileNames, _ephs);
442
[4229]443 // Check Satellite Systems
444 // -----------------------
445 bool haveGPS = false;
446 bool haveGlonass = false;
447 for (int ii = 0; ii < _ephs.size(); ii++) {
448 const t_eph* eph = _ephs[ii];
449 if (eph->type() == t_eph::GPS) {
450 haveGPS = true;
451 }
452 else if (eph->type() == t_eph::GLONASS) {
453 haveGlonass = true;
454 }
455 }
456
[4007]457 // Initialize output navigation file
458 // ---------------------------------
[4004]459 t_rnxNavFile outNavFile(_outNavFileName, t_rnxNavFile::output);
[4229]460
461 outNavFile.setGlonass(haveGlonass);
462
[5378]463 if ( (haveGPS && haveGlonass) || _rnxVersion >= 3.0) {
464 outNavFile.setVersion(t_rnxNavFile::defaultRnxNavVersion3);
[4229]465 }
466 else {
[5378]467 outNavFile.setVersion(t_rnxNavFile::defaultRnxNavVersion2);
[4229]468 }
469
[4221]470 bncSettings settings;
471 QMap<QString, QString> txtMap;
472 QString runBy = settings.value("reqcRunBy").toString();
473 if (!runBy.isEmpty()) {
474 txtMap["RUN BY"] = runBy;
475 }
476 QString comment = settings.value("reqcComment").toString();
477 if (!comment.isEmpty()) {
478 txtMap["COMMENT"] = comment;
479 }
[4229]480
[4221]481 outNavFile.writeHeader(&txtMap);
[4009]482
[4004]483 // Loop over all ephemerides
484 // -------------------------
485 for (int ii = 0; ii < _ephs.size(); ii++) {
486 const t_eph* eph = _ephs[ii];
[4229]487 outNavFile.writeEph(eph);
[4004]488 }
[3998]489}
[4081]490
491//
492////////////////////////////////////////////////////////////////////////////
[4256]493void t_reqcEdit::appendEphemerides(const QString& fileName,
494 QVector<t_eph*>& ephs) {
[4081]495
496 t_rnxNavFile rnxNavFile(fileName, t_rnxNavFile::input);
497 for (unsigned ii = 0; ii < rnxNavFile.ephs().size(); ii++) {
498 t_eph* eph = rnxNavFile.ephs()[ii];
499 bool isNew = true;
[4256]500 for (int iOld = 0; iOld < ephs.size(); iOld++) {
501 const t_eph* ephOld = ephs[iOld];
[4236]502 if (ephOld->prn() == eph->prn() && ephOld->TOC() == eph->TOC()) {
[4081]503 isNew = false;
504 break;
505 }
506 }
507 if (isNew) {
508 if (eph->type() == t_eph::GPS) {
[4256]509 ephs.append(new t_ephGPS(*dynamic_cast<t_ephGPS*>(eph)));
[4081]510 }
511 else if (eph->type() == t_eph::GLONASS) {
[4256]512 ephs.append(new t_ephGlo(*dynamic_cast<t_ephGlo*>(eph)));
[4081]513 }
514 else if (eph->type() == t_eph::Galileo) {
[4256]515 ephs.append(new t_ephGal(*dynamic_cast<t_ephGal*>(eph)));
[4081]516 }
517 }
518 }
519}
Note: See TracBrowser for help on using the repository browser.