source: ntrip/trunk/BNC/rinex/reqcedit.cpp@ 4081

Last change on this file since 4081 was 4081, checked in by mervart, 12 years ago
File size: 10.0 KB
Line 
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"
43#include "bncapp.h"
44#include "bncsettings.h"
45
46using namespace std;
47
48// Constructor
49////////////////////////////////////////////////////////////////////////////
50t_reqcEdit::t_reqcEdit(QObject* parent) : QThread(parent) {
51
52 bncSettings settings;
53
54 _obsFileNames = settings.value("reqcObsFile").toString().split(",", QString::SkipEmptyParts);
55 _outObsFileName = settings.value("reqcOutObsFile").toString();
56 _navFileNames = settings.value("reqcNavFile").toString().split(",", QString::SkipEmptyParts);
57 _outNavFileName = settings.value("reqcOutNavFile").toString();
58 int version = settings.value("reqcRnxVersion").toInt();
59 if (version < 3) {
60 _rnxVersion = 2.11;
61 }
62 else {
63 _rnxVersion = 3.01;
64 }
65 _samplingRate = settings.value("reqcSampling").toInt();
66 _begTime = bncTime(settings.value("reqcStartDateTime").toString().toAscii().data());
67 _endTime = bncTime(settings.value("reqcEndDateTime").toString().toAscii().data());
68}
69
70// Destructor
71////////////////////////////////////////////////////////////////////////////
72t_reqcEdit::~t_reqcEdit() {
73 for (int ii = 0; ii < _rnxObsFiles.size(); ii++) {
74 delete _rnxObsFiles[ii];
75 }
76 for (int ii = 0; ii < _ephs.size(); ii++) {
77 delete _ephs[ii];
78 }
79}
80
81//
82////////////////////////////////////////////////////////////////////////////
83void t_reqcEdit::run() {
84
85 editObservations();
86
87 editEphemerides();
88
89 bncApp* app = (bncApp*) qApp;
90 if ( app->mode() != bncApp::interactive) {
91 app->exit(0);
92 }
93 else {
94 emit finished();
95 deleteLater();
96 }
97}
98
99//
100////////////////////////////////////////////////////////////////////////////
101void t_reqcEdit::editObservations() {
102
103 // Easy Exit
104 // ---------
105 if (_obsFileNames.isEmpty() || _outObsFileName.isEmpty()) {
106 return;
107 }
108
109 // Initialize input observation files, sort them according to start time
110 // ---------------------------------------------------------------------
111 QStringListIterator it(_obsFileNames);
112 while (it.hasNext()) {
113 QString fileName = it.next();
114 if (fileName.indexOf('*') != -1 || fileName.indexOf('?') != -1) {
115 QFileInfo fileInfo(fileName);
116 QDir dir = fileInfo.dir();
117 QStringList filters; filters << fileInfo.fileName();
118 QListIterator<QFileInfo> it(dir.entryInfoList(filters));
119 while (it.hasNext()) {
120 QString filePath = it.next().filePath();
121 t_rnxObsFile* rnxObsFile = new t_rnxObsFile(filePath, t_rnxObsFile::input);
122 _rnxObsFiles.append(rnxObsFile);
123 }
124 }
125 else {
126 t_rnxObsFile* rnxObsFile = new t_rnxObsFile(fileName, t_rnxObsFile::input);
127 _rnxObsFiles.append(rnxObsFile);
128 }
129 }
130 qStableSort(_rnxObsFiles.begin(), _rnxObsFiles.end(),
131 t_rnxObsFile::earlierStartTime);
132
133 // Initialize output observation file
134 // ----------------------------------
135 t_rnxObsFile outObsFile(_outObsFileName, t_rnxObsFile::output);
136
137 // Loop over all input observation files
138 // -------------------------------------
139 for (int ii = 0; ii < _rnxObsFiles.size(); ii++) {
140 t_rnxObsFile* obsFile = _rnxObsFiles[ii];
141 if (ii == 0) {
142 outObsFile.setHeader(obsFile->header(), _rnxVersion);
143 if (_begTime.valid() && _begTime > outObsFile.startTime()) {
144 outObsFile.setStartTime(_begTime);
145 }
146 editRnxObsHeader(outObsFile);
147 outObsFile.writeHeader();
148 }
149 else {
150 outObsFile.checkNewHeader(obsFile->header());
151 }
152 t_rnxObsFile::t_rnxEpo* epo = 0;
153 while ( (epo = obsFile->nextEpoch()) != 0) {
154 if (_begTime.valid() && epo->tt < _begTime) {
155 continue;
156 }
157 if (_endTime.valid() && epo->tt > _endTime) {
158 break;
159 }
160
161 if (_samplingRate == 0 ||
162 fmod(round(epo->tt.gpssec()), _samplingRate) == 0) {
163 applyLLI(obsFile, epo);
164 outObsFile.writeEpoch(epo);
165 }
166 else {
167 rememberLLI(obsFile, epo);
168 }
169 }
170 }
171}
172
173// Change RINEX Header Content
174////////////////////////////////////////////////////////////////////////////
175void t_reqcEdit::editRnxObsHeader(t_rnxObsFile& obsFile) {
176
177 bncSettings settings;
178
179 QString oldMarkerName = settings.value("reqcOldMarkerName").toString();
180 QString newMarkerName = settings.value("reqcNewMarkerName").toString();
181 if (oldMarkerName.isEmpty() ||
182 QRegExp(oldMarkerName).exactMatch(obsFile.markerName())) {
183 obsFile.setMarkerName(newMarkerName);
184 }
185
186 QString oldAntennaName = settings.value("reqcOldAntennaName").toString();
187 QString newAntennaName = settings.value("reqcNewAntennaName").toString();
188 if (oldAntennaName.isEmpty() ||
189 QRegExp(oldAntennaName).exactMatch(obsFile.antennaName())) {
190 obsFile.setAntennaName(newAntennaName);
191 }
192
193 QString oldReceiverType = settings.value("reqcOldReceiverName").toString();
194 QString newReceiverType = settings.value("reqcNewReceiverName").toString();
195 if (oldReceiverType.isEmpty() ||
196 QRegExp(oldReceiverType).exactMatch(obsFile.receiverType())) {
197 obsFile.setReceiverType(newReceiverType);
198 }
199}
200
201//
202////////////////////////////////////////////////////////////////////////////
203void t_reqcEdit::rememberLLI(const t_rnxObsFile* obsFile,
204 const t_rnxObsFile::t_rnxEpo* epo) {
205
206 if (_samplingRate == 0) {
207 return;
208 }
209
210 for (unsigned iSat = 0; iSat < epo->rnxSat.size(); iSat++) {
211 const t_rnxObsFile::t_rnxSat& rnxSat = epo->rnxSat[iSat];
212 char sys = rnxSat.satSys;
213 QString prn = QString("%1%2").arg(sys).arg(rnxSat.satNum,2,10,QChar('0'));
214
215 for (int iType = 0; iType < obsFile->nTypes(sys); iType++) {
216 if (!_lli[prn].contains(iType)) {
217 _lli[prn][iType] = 0;
218 }
219 if (rnxSat.lli[iType] & 1) {
220 _lli[prn][iType] |= 1;
221 }
222 }
223 }
224}
225
226//
227////////////////////////////////////////////////////////////////////////////
228void t_reqcEdit::applyLLI(const t_rnxObsFile* obsFile,
229 t_rnxObsFile::t_rnxEpo* epo) {
230
231 if (_samplingRate == 0) {
232 return;
233 }
234
235 for (unsigned iSat = 0; iSat < epo->rnxSat.size(); iSat++) {
236 t_rnxObsFile::t_rnxSat& rnxSat = epo->rnxSat[iSat];
237 char sys = rnxSat.satSys;
238 QString prn = QString("%1%2").arg(sys).arg(rnxSat.satNum,2,10,QChar('0'));
239
240 for (int iType = 0; iType < obsFile->nTypes(sys); iType++) {
241 if (_lli[prn].contains(iType) && _lli[prn][iType] & 1) {
242 rnxSat.lli[iType] |= 1;
243 }
244 }
245 }
246
247 _lli.clear();
248}
249
250//
251////////////////////////////////////////////////////////////////////////////
252void t_reqcEdit::editEphemerides() {
253
254 // Easy Exit
255 // ---------
256 if (_navFileNames.isEmpty() || _outNavFileName.isEmpty()) {
257 return;
258 }
259
260 // Read All Ephemerides
261 // --------------------
262 QStringListIterator it(_navFileNames);
263 while (it.hasNext()) {
264 QString fileName = it.next();
265 if (fileName.indexOf('*') != -1 || fileName.indexOf('?') != -1) {
266 QFileInfo fileInfo(fileName);
267 QDir dir = fileInfo.dir();
268 QStringList filters; filters << fileInfo.fileName();
269 QListIterator<QFileInfo> it(dir.entryInfoList(filters));
270 while (it.hasNext()) {
271 QString filePath = it.next().filePath();
272 appendEphemerides(filePath);
273 }
274 }
275 else {
276 appendEphemerides(fileName);
277 }
278 }
279 qStableSort(_ephs.begin(), _ephs.end(), t_eph::earlierTime);
280
281 // Initialize output navigation file
282 // ---------------------------------
283 t_rnxNavFile outNavFile(_outNavFileName, t_rnxNavFile::output);
284 outNavFile.setVersion(_rnxVersion);
285 outNavFile.writeHeader();
286
287 // Loop over all ephemerides
288 // -------------------------
289 for (int ii = 0; ii < _ephs.size(); ii++) {
290 const t_eph* eph = _ephs[ii];
291 if (eph->type() == t_eph::GPS || _rnxVersion >= 3.0) {
292 outNavFile.writeEph(eph);
293 }
294 }
295}
296
297//
298////////////////////////////////////////////////////////////////////////////
299void t_reqcEdit::appendEphemerides(const QString& fileName) {
300
301 t_rnxNavFile rnxNavFile(fileName, t_rnxNavFile::input);
302 for (unsigned ii = 0; ii < rnxNavFile.ephs().size(); ii++) {
303 t_eph* eph = rnxNavFile.ephs()[ii];
304 bool isNew = true;
305 for (int iOld = 0; iOld < _ephs.size(); iOld++) {
306 const t_eph* ephOld = _ephs[iOld];
307 if (ephOld->prn() == eph->prn() && ephOld->IOD() == eph->IOD()) {
308 isNew = false;
309 break;
310 }
311 }
312 if (isNew) {
313 if (eph->type() == t_eph::GPS) {
314 _ephs.append(new t_ephGPS(*dynamic_cast<t_ephGPS*>(eph)));
315 }
316 else if (eph->type() == t_eph::GLONASS) {
317 _ephs.append(new t_ephGlo(*dynamic_cast<t_ephGlo*>(eph)));
318 }
319 else if (eph->type() == t_eph::Galileo) {
320 _ephs.append(new t_ephGal(*dynamic_cast<t_ephGal*>(eph)));
321 }
322 }
323 }
324}
Note: See TracBrowser for help on using the repository browser.