source: ntrip/trunk/BNC/src/bncrinex.cpp@ 4384

Last change on this file since 4384 was 4384, checked in by mervart, 12 years ago
File size: 30.6 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: bncRinex
30 *
31 * Purpose: writes RINEX files
32 *
33 * Author: L. Mervart
34 *
35 * Created: 27-Aug-2006
36 *
37 * Changes:
38 *
39 * -----------------------------------------------------------------------*/
40
41#include <stdlib.h>
42#include <iostream>
43#include <iomanip>
44#include <math.h>
45#include <sstream>
46
47#include <QtCore>
48#include <QUrl>
49#include <QString>
50
51#include "bncrinex.h"
52#include "bncapp.h"
53#include "bncutils.h"
54#include "bncconst.h"
55#include "bnctabledlg.h"
56#include "bncgetthread.h"
57#include "bncnetqueryv1.h"
58#include "bncnetqueryv2.h"
59#include "bncsettings.h"
60#include "bncversion.h"
61#include "rtcm3torinex.h"
62
63using namespace std;
64
65// Constructor
66////////////////////////////////////////////////////////////////////////////
67bncRinex::bncRinex(const QByteArray& statID, const QUrl& mountPoint,
68 const QByteArray& latitude, const QByteArray& longitude,
69 const QByteArray& nmea, const QByteArray& ntripVersion) {
70
71 _statID = statID;
72 _mountPoint = mountPoint;
73 _latitude = latitude;
74 _longitude = longitude;
75 _nmea = nmea;
76 _ntripVersion = ntripVersion;
77 _headerWritten = false;
78 _reconnectFlag = false;
79 _reloadTable = false;
80 _reloadDone = false;
81
82 bncSettings settings;
83 _rnxScriptName = settings.value("rnxScript").toString();
84 expandEnvVar(_rnxScriptName);
85
86 _pgmName = QString(BNCPGMNAME).leftJustified(20, ' ', true);
87#ifdef WIN32
88 _userName = QString("${USERNAME}");
89#else
90 _userName = QString("${USER}");
91#endif
92 expandEnvVar(_userName);
93 _userName = _userName.leftJustified(20, ' ', true);
94
95 if ( Qt::CheckState(settings.value("rnxV3").toInt()) == Qt::Checked) {
96 _rinexVers = 3;
97 }
98 else {
99 _rinexVers = 2;
100 }
101
102 _approxPos[0] = _approxPos[1] = _approxPos[2] = 0.0;
103
104 _samplingRate = settings.value("rnxSampl").toInt();
105}
106
107// Destructor
108////////////////////////////////////////////////////////////////////////////
109bncRinex::~bncRinex() {
110 bncSettings settings;
111 if ((_rinexVers == 3) && ( Qt::CheckState(settings.value("rnxAppend").toInt()) != Qt::Checked) ) {
112 _out << "> 4 1" << endl;
113 _out << "END OF FILE" << endl;
114 }
115 _out.close();
116}
117
118// Download Skeleton Header File
119////////////////////////////////////////////////////////////////////////////
120t_irc bncRinex::downloadSkeleton() {
121
122 t_irc irc = failure;
123
124 QStringList table;
125 bncTableDlg::getFullTable(_ntripVersion, _mountPoint.host(),
126 _mountPoint.port(), table, _reloadTable);
127 QString net;
128 QStringListIterator it(table);
129 while (it.hasNext()) {
130 QString line = it.next();
131 if (line.indexOf("STR") == 0) {
132 QStringList tags = line.split(";");
133 if (tags.size() > 7) {
134 if (tags.at(1) == _mountPoint.path().mid(1).toAscii()) {
135 net = tags.at(7);
136 break;
137 }
138 }
139 }
140 }
141 QString sklDir;
142 if (!net.isEmpty()) {
143 it.toFront();
144 while (it.hasNext()) {
145 QString line = it.next();
146 if (line.indexOf("NET") == 0) {
147 QStringList tags = line.split(";");
148 if (tags.size() > 6) {
149 if (tags.at(1) == net) {
150 sklDir = tags.at(6).trimmed();
151 break;
152 }
153 }
154 }
155 }
156 }
157 if (!sklDir.isEmpty() && sklDir != "none") {
158 QUrl url(sklDir + "/" + _mountPoint.path().mid(1,4).toLower() + ".skl");
159 if (url.port() == -1) {
160 url.setPort(80);
161 }
162
163 bncNetQuery* query;
164 if (_ntripVersion == "2s") {
165 query = new bncNetQueryV2(true);
166 }
167 else if (_ntripVersion == "2") {
168 query = new bncNetQueryV2(false);
169 }
170 else {
171 query = new bncNetQueryV1;
172 }
173
174 QByteArray outData;
175 query->waitForRequestResult(url, outData);
176 if (query->status() == bncNetQuery::finished) {
177 _headerLines.clear();
178 bool firstLineRead = false;
179 QTextStream in(outData);
180 QString line = in.readLine();
181 while ( !line.isNull() ) {
182 if (line.indexOf("MARKER NAME") != -1) {
183 irc = success;
184 }
185 if (line.indexOf("RINEX VERSION") != -1) {
186 if (_rinexVers == 3) {
187 _headerLines.append(" 3.00 OBSERVATION DATA"
188 " M (MIXED)"
189 " RINEX VERSION / TYPE");
190 }
191 else {
192 _headerLines.append(" 2.11 OBSERVATION DATA"
193 " M (MIXED)"
194 " RINEX VERSION / TYPE");
195 }
196 _headerLines.append("PGM / RUN BY / DATE");
197 firstLineRead = true;
198 }
199 else if (firstLineRead) {
200 if (line.indexOf("END OF HEADER") != -1) {
201 _headerLines.append("# / TYPES OF OBSERV");
202 if (_rinexVers == 2) {
203 _headerLines.append(
204 QString(" 1 1").leftJustified(60, ' ', true) +
205 "WAVELENGTH FACT L1/2");
206 }
207 _headerLines.append("TIME OF FIRST OBS");
208 _headerLines.append( line );
209 break;
210 }
211 else {
212 _headerLines.append( line );
213 }
214 }
215 line = in.readLine();
216 }
217 }
218 else {
219 delete query;
220 return failure;
221 }
222 delete query;
223 }
224
225 return irc;
226}
227
228// Read Skeleton Header File
229////////////////////////////////////////////////////////////////////////////
230void bncRinex::readSkeleton() {
231
232 // Read the local file
233 // -------------------
234 QFile skl(_sklName);
235 if ( skl.exists() && skl.open(QIODevice::ReadOnly) ) {
236 _headerLines.clear();
237 QTextStream in(&skl);
238 while ( !in.atEnd() ) {
239 _headerLines.append( in.readLine() );
240 if (_headerLines.last().indexOf("END OF HEADER") != -1) {
241 break;
242 }
243 }
244 }
245
246 // Read downloaded file
247 // --------------------
248 else if ( _ntripVersion != "N" && _ntripVersion != "UN" &&
249 _ntripVersion != "S" ) {
250 QDate currDate = currentDateAndTimeGPS().date();
251 if ( !_skeletonDate.isValid() || _skeletonDate != currDate ) {
252 if ( downloadSkeleton() == success) {
253 _skeletonDate = currDate;
254 _reloadDone = false;
255 }
256 else {
257 if(!_reloadDone) {
258 _reloadTable = true;
259 if ( downloadSkeleton() == success) {
260 _skeletonDate = currDate;
261 }
262 _reloadTable = false;
263 _reloadDone = true;
264 }
265 }
266 }
267 }
268}
269
270// Next File Epoch (static)
271////////////////////////////////////////////////////////////////////////////
272QString bncRinex::nextEpochStr(const QDateTime& datTim,
273 const QString& intStr, QDateTime* nextEpoch) {
274
275 QString epoStr;
276
277 QTime nextTime;
278 QDate nextDate;
279
280 int indHlp = intStr.indexOf("min");
281
282 if ( indHlp != -1) {
283 int step = intStr.left(indHlp-1).toInt();
284 char ch = 'A' + datTim.time().hour();
285 epoStr = ch;
286 if (datTim.time().minute() >= 60-step) {
287 epoStr += QString("%1").arg(60-step, 2, 10, QChar('0'));
288 if (datTim.time().hour() < 23) {
289 nextTime.setHMS(datTim.time().hour() + 1 , 0, 0);
290 nextDate = datTim.date();
291 }
292 else {
293 nextTime.setHMS(0, 0, 0);
294 nextDate = datTim.date().addDays(1);
295 }
296 }
297 else {
298 for (int limit = step; limit <= 60-step; limit += step) {
299 if (datTim.time().minute() < limit) {
300 epoStr += QString("%1").arg(limit-step, 2, 10, QChar('0'));
301 nextTime.setHMS(datTim.time().hour(), limit, 0);
302 nextDate = datTim.date();
303 break;
304 }
305 }
306 }
307 }
308 else if (intStr == "1 hour") {
309 char ch = 'A' + datTim.time().hour();
310 epoStr = ch;
311 if (datTim.time().hour() < 23) {
312 nextTime.setHMS(datTim.time().hour() + 1 , 0, 0);
313 nextDate = datTim.date();
314 }
315 else {
316 nextTime.setHMS(0, 0, 0);
317 nextDate = datTim.date().addDays(1);
318 }
319 }
320 else {
321 epoStr = "0";
322 nextTime.setHMS(0, 0, 0);
323 nextDate = datTim.date().addDays(1);
324 }
325
326 if (nextEpoch) {
327 *nextEpoch = QDateTime(nextDate, nextTime);
328 }
329
330 return epoStr;
331}
332
333// File Name according to RINEX Standards
334////////////////////////////////////////////////////////////////////////////
335void bncRinex::resolveFileName(const QDateTime& datTim) {
336
337 bncSettings settings;
338 QString path = settings.value("rnxPath").toString();
339 expandEnvVar(path);
340
341 if ( path.length() > 0 && path[path.length()-1] != QDir::separator() ) {
342 path += QDir::separator();
343 }
344
345 QString hlpStr = nextEpochStr(datTim, settings.value("rnxIntr").toString(),
346 &_nextCloseEpoch);
347
348 QString ID4 = _statID.left(4);
349
350 // Check name conflict
351 // -------------------
352 QString distStr;
353 int num = 0;
354 QListIterator<QString> it(settings.value("mountPoints").toStringList());
355 while (it.hasNext()) {
356 QString mp = it.next();
357 if (mp.indexOf(ID4) != -1) {
358 ++num;
359 }
360 }
361 if (num > 1) {
362 distStr = "_" + _statID.mid(4);
363 }
364
365 QString sklExt = settings.value("rnxSkel").toString();
366 if (!sklExt.isEmpty()) {
367 _sklName = path + ID4 + distStr + "." + sklExt;
368 }
369
370 path += ID4 +
371 QString("%1").arg(datTim.date().dayOfYear(), 3, 10, QChar('0')) +
372 hlpStr + distStr + datTim.toString(".yyO");
373
374 _fName = path.toAscii();
375}
376
377// Write RINEX Header
378////////////////////////////////////////////////////////////////////////////
379void bncRinex::writeHeader(const QByteArray& format, const QDateTime& datTim,
380 const QDateTime& datTimNom) {
381
382 bncSettings settings;
383
384 // Open the Output File
385 // --------------------
386 resolveFileName(datTimNom);
387
388 // Append to existing file and return
389 // ----------------------------------
390 if ( QFile::exists(_fName) ) {
391 if (_reconnectFlag ||
392 Qt::CheckState(settings.value("rnxAppend").toInt()) == Qt::Checked) {
393 _out.open(_fName.data(), ios::app);
394 _out.setf(ios::showpoint | ios::fixed);
395 _headerWritten = true;
396 _reconnectFlag = false;
397 return;
398 }
399 }
400
401 _out.open(_fName.data());
402 _out.setf(ios::showpoint | ios::fixed);
403
404 // Copy Skeleton Header
405 // --------------------
406 readSkeleton();
407 if (_headerLines.size() > 0) {
408 bool typesOfObservationsWritten = false;
409 QStringListIterator it(_headerLines);
410 while (it.hasNext()) {
411 QString line = it.next();
412 if (line.indexOf("PGM / RUN BY / DATE") != -1) {
413 if (_rinexVers == 3) {
414 QString hlp = currentDateAndTimeGPS().toString("yyyyMMdd hhmmss UTC").leftJustified(20, ' ', true);
415 _out << _pgmName.toAscii().data() << _userName.toAscii().data()
416 << hlp.toAscii().data() << "PGM / RUN BY / DATE" << endl;
417 }
418 else {
419 QString hlp = currentDateAndTimeGPS().date().toString("dd-MMM-yyyy").leftJustified(20, ' ', true);
420 _out << _pgmName.toAscii().data() << _userName.toAscii().data()
421 << hlp.toAscii().data() << "PGM / RUN BY / DATE" << endl;
422 }
423 }
424 else if ( !typesOfObservationsWritten &&
425 (line.indexOf("# / TYPES OF OBSERV") != -1 ||
426 line.indexOf("SYS / # / OBS TYPES") != -1) ) {
427 typesOfObservationsWritten = true;
428 if (_rinexVers == 3) {
429 _out << "G 20 C1C L1C D1C S1C C1W L1W D1W S1W C2P L2P D2P S2P C2X SYS / # / OBS TYPES" << endl;
430 _out << " L2X D2X S2X C5 L5 D5 S5 SYS / # / OBS TYPES" << endl;
431 _out << "R 16 C1C L1C D1C S1C C1P L1P D1P S1P C2P L2P D2P S2P C2C SYS / # / OBS TYPES" << endl;
432 _out << " L2C D2C S2C SYS / # / OBS TYPES" << endl;
433 _out << "S 8 C1C L1C D1C S1C C1W L1W D1W S1W SYS / # / OBS TYPES" << endl;
434 _out << "E 8 C1 L1 D1 S1 C5 L5 D5 S5 SYS / # / OBS TYPES" << endl;
435 _out << "J 20 C1C L1C D1C S1C C1W L1W D1W S1W C2P L2P D2P S2P C2X SYS / # / OBS TYPES" << endl;
436 _out << " L2X D2X S2X C5 L5 D5 S5 SYS / # / OBS TYPES" << endl;
437 }
438 else {
439 _out << " 8 C1 P1 L1 S1 C2 P2 L2 S2"
440 " # / TYPES OF OBSERV" << endl;
441 }
442 }
443 else if (line.indexOf("TIME OF FIRST OBS") != -1) {
444 _out << datTim.toString(" yyyy MM dd"
445 " hh mm ss.zzz0000").toAscii().data();
446 _out << " GPS TIME OF FIRST OBS" << endl;
447 QString hlp = (format.left(6) + QString(" %1").arg(_mountPoint.host() +
448 _mountPoint.path())).leftJustified(60, ' ', true);
449 _out << hlp.toAscii().data() << "COMMENT" << endl;
450 }
451 else if (line.indexOf("MARKER NAME") != -1) {
452 if (_rinexVers == 3) {
453 _out << line.toAscii().data() << endl;
454 _out << setw(71) << "GEODETIC MARKER TYPE" << endl;
455 }
456 else {
457 _out << line.toAscii().data() << endl;
458 }
459 }
460 else {
461 _out << line.toAscii().data() << endl;
462 }
463 }
464 }
465
466 // Write Dummy Header
467 // ------------------
468 else {
469 double antennaNEU[3]; antennaNEU[0] = antennaNEU[1] = antennaNEU[2] = 0.0;
470
471 if (_rinexVers == 3) {
472 _out << " 3.00 OBSERVATION DATA M (MIXED) RINEX VERSION / TYPE" << endl;
473 QString hlp = currentDateAndTimeGPS().toString("yyyyMMdd hhmmss UTC").leftJustified(20, ' ', true);
474 _out << _pgmName.toAscii().data() << _userName.toAscii().data()
475 << hlp.toAscii().data() << "PGM / RUN BY / DATE" << endl;
476 }
477 else {
478 _out << " 2.11 OBSERVATION DATA M (MIXED) RINEX VERSION / TYPE" << endl;
479 QString hlp = currentDateAndTimeGPS().date().toString("dd-MMM-yyyy").leftJustified(20, ' ', true);
480 _out << _pgmName.toAscii().data() << _userName.toAscii().data()
481 << hlp.toAscii().data() << "PGM / RUN BY / DATE" << endl;
482 }
483 _out.setf(ios::left);
484 _out << setw(60) << _statID.data() << "MARKER NAME" << endl;
485 if (_rinexVers == 3) {
486 _out << setw(60) << "unknown" << "MARKER TYPE " << endl;
487 }
488 _out << setw(60) << "unknown unknown" << "OBSERVER / AGENCY" << endl;
489 _out << setw(20) << "unknown"
490 << setw(20) << "unknown"
491 << setw(20) << "unknown" << "REC # / TYPE / VERS" << endl;
492 _out << setw(20) << "unknown"
493 << setw(20) << "unknown"
494 << setw(20) << " " << "ANT # / TYPE" << endl;
495 _out.unsetf(ios::left);
496 _out << setw(14) << setprecision(4) << _approxPos[0]
497 << setw(14) << setprecision(4) << _approxPos[1]
498 << setw(14) << setprecision(4) << _approxPos[2]
499 << " " << "APPROX POSITION XYZ" << endl;
500 _out << setw(14) << setprecision(4) << antennaNEU[0]
501 << setw(14) << setprecision(4) << antennaNEU[1]
502 << setw(14) << setprecision(4) << antennaNEU[2]
503 << " " << "ANTENNA: DELTA H/E/N" << endl;
504 if (_rinexVers == 3) {
505 _out << "G 20 C1C L1C D1C S1C C1W L1W D1W S1W C2P L2P D2P S2P C2X SYS / # / OBS TYPES" << endl;
506 _out << " L2X D2X S2X C5 L5 D5 S5 SYS / # / OBS TYPES" << endl;
507 _out << "R 16 C1C L1C D1C S1C C1P L1P D1P S1P C2P L2P D2P S2P C2C SYS / # / OBS TYPES" << endl;
508 _out << " L2C D2C S2C SYS / # / OBS TYPES" << endl;
509 _out << "S 8 C1C L1C D1C S1C C1W L1W D1W S1W SYS / # / OBS TYPES" << endl;
510 _out << "E 8 C1 L1 D1 S1 C5 L5 D5 S5 SYS / # / OBS TYPES" << endl;
511 }
512 else {
513 _out << " 1 1 WAVELENGTH FACT L1/2" << endl;
514 _out << " 8 C1 P1 L1 S1 C2 P2 L2 S2 # / TYPES OF OBSERV" << endl;
515 }
516 _out << datTim.toString(" yyyy MM dd"
517 " hh mm ss.zzz0000").toAscii().data();
518 _out << " GPS TIME OF FIRST OBS" << endl;
519 QString hlp = (format.left(6) + QString(" %1").arg(_mountPoint.host() +
520 _mountPoint.path())).leftJustified(60, ' ', true);
521 _out << hlp.toAscii().data() << "COMMENT" << endl;
522
523 if (_nmea == "yes") {
524 hlp = ("NMEA LAT=" + _latitude + " " + "LONG=" + _longitude).leftJustified(60, ' ',true);
525 _out << hlp.toAscii().data() << "COMMENT" << endl; }
526
527 _out << " END OF HEADER" << endl;
528 }
529
530 _headerWritten = true;
531}
532
533// Stores Observation into Internal Array
534////////////////////////////////////////////////////////////////////////////
535void bncRinex::deepCopy(t_obs obs) {
536 _obs.push_back(obs);
537}
538
539// Write One Epoch into the RINEX File
540////////////////////////////////////////////////////////////////////////////
541void bncRinex::dumpEpoch(const QByteArray& format, long maxTime) {
542
543 // Select observations older than maxTime
544 // --------------------------------------
545 QList<t_obs> dumpList;
546 QMutableListIterator<t_obs> mIt(_obs);
547 while (mIt.hasNext()) {
548 t_obs obs = mIt.next();
549 if (obs.GPSWeek * 7*24*3600 + obs.GPSWeeks < maxTime - 0.05) {
550 dumpList.push_back(obs);
551 mIt.remove();
552 }
553 }
554
555 // Easy Return
556 // -----------
557 if (dumpList.isEmpty()) {
558 return;
559 }
560
561 // Time of Epoch
562 // -------------
563 const t_obs& fObs = dumpList.first();
564 QDateTime datTim = dateAndTimeFromGPSweek(fObs.GPSWeek, fObs.GPSWeeks);
565 QDateTime datTimNom = dateAndTimeFromGPSweek(fObs.GPSWeek,
566 floor(fObs.GPSWeeks+0.5));
567
568 // Close the file
569 // --------------
570 if (_nextCloseEpoch.isValid() && datTimNom >= _nextCloseEpoch) {
571 closeFile();
572 _headerWritten = false;
573 }
574
575 // Write RINEX Header
576 // ------------------
577 if (!_headerWritten) {
578 writeHeader(format, datTim, datTimNom);
579 }
580
581 double sec = double(datTim.time().second()) + fmod(fObs.GPSWeeks,1.0);
582
583 // Epoch header line: RINEX Version 3
584 // ----------------------------------
585 if (_rinexVers == 3) {
586 _out << datTim.toString("> yyyy MM dd hh mm ").toAscii().data()
587 << setw(10) << setprecision(7) << sec
588 << " " << 0 << setw(3) << dumpList.size() << endl;
589 }
590 // Epoch header line: RINEX Version 2
591 // ----------------------------------
592 else {
593 _out << datTim.toString(" yy MM dd hh mm ").toAscii().data()
594 << setw(10) << setprecision(7) << sec
595 << " " << 0 << setw(3) << dumpList.size();
596
597 QListIterator<t_obs> it(dumpList); int iSat = 0;
598 while (it.hasNext()) {
599 iSat++;
600 const t_obs& obs = it.next();
601 _out << obs.satSys << setw(2) << obs.satNum;
602 if (iSat == 12 && it.hasNext()) {
603 _out << endl << " ";
604 iSat = 0;
605 }
606 }
607 _out << endl;
608 }
609
610 QListIterator<t_obs> it(dumpList);
611 while (it.hasNext()) {
612 const t_obs& obs = it.next();
613
614 // Cycle slips detection
615 // ---------------------
616 QString prn = QString("%1%2").arg(obs.satSys)
617 .arg(obs.satNum, 2, 10, QChar('0'));
618
619 char lli1 = ' ';
620 char lli2 = ' ';
621 char lli5 = ' ';
622 if ( obs.slip_cnt_L1 >= 0 ) {
623 if ( _slip_cnt_L1.find(prn) != _slip_cnt_L1.end() &&
624 _slip_cnt_L1.find(prn).value() != obs.slip_cnt_L1 ) {
625 lli1 = '1';
626 }
627 }
628
629 if ( obs.slip_cnt_L2 >= 0 ) {
630 if ( _slip_cnt_L2.find(prn) != _slip_cnt_L2.end() &&
631 _slip_cnt_L2.find(prn).value() != obs.slip_cnt_L2 ) {
632 lli2 = '1';
633 }
634 }
635
636 if ( obs.slip_cnt_L5 >= 0 ) {
637 if ( _slip_cnt_L5.find(prn) != _slip_cnt_L5.end() &&
638 _slip_cnt_L5.find(prn).value() != obs.slip_cnt_L5 ) {
639 lli5 = '1';
640 }
641 }
642
643 _slip_cnt_L1[prn] = obs.slip_cnt_L1;
644 _slip_cnt_L2[prn] = obs.slip_cnt_L2;
645 _slip_cnt_L5[prn] = obs.slip_cnt_L5;
646
647 // RINEX Version 3
648 // ---------------
649 if (_rinexVers == 3) {
650 _out << rinexSatLine(obs, lli1, lli2, lli5);
651 _out << endl;
652 }
653
654 // RINEX Version 2
655 // ---------------
656 else {
657 _out << setw(14) << setprecision(3) << obs.C1 << ' ' << ' '
658 << setw(14) << setprecision(3) << obs.P1 << ' ' << ' '
659 << setw(14) << setprecision(3) << obs.l1() << lli1 << ' '
660 << setw(14) << setprecision(3) << obs.s1() << ' ' << ' '
661 << setw(14) << setprecision(3) << obs.C2 << ' ' << ' ' << endl
662 << setw(14) << setprecision(3) << obs.P2 << ' ' << ' '
663 << setw(14) << setprecision(3) << obs.l2() << lli2 << ' '
664 << setw(14) << setprecision(3) << obs.s2() << endl;
665 }
666 }
667
668 _out.flush();
669}
670
671// Close the Old RINEX File
672////////////////////////////////////////////////////////////////////////////
673void bncRinex::closeFile() {
674 if (_rinexVers == 3) {
675 _out << "> 4 1" << endl;
676 _out << "END OF FILE" << endl;
677 }
678 _out.close();
679 if (!_rnxScriptName.isEmpty()) {
680 qApp->thread()->wait(100);
681#ifdef WIN32
682 QProcess::startDetached(_rnxScriptName, QStringList() << _fName) ;
683#else
684 QProcess::startDetached("nohup", QStringList() << _rnxScriptName << _fName) ;
685#endif
686
687 }
688}
689
690// One Line in RINEX v3 (static)
691////////////////////////////////////////////////////////////////////////////
692string bncRinex::rinexSatLine(const t_obs& obs, char lli1, char lli2,
693 char lli5) {
694 ostringstream str;
695 str.setf(ios::showpoint | ios::fixed);
696
697 str << obs.satSys
698 << setw(2) << setfill('0') << obs.satNum << setfill(' ');
699
700 if (obs.satSys == 'G' || obs.satSys == 'J') { // GPS or QZSS
701 str << setw(14) << setprecision(3) << obs.C1 << ' ' << ' '
702 << setw(14) << setprecision(3) << obs.L1C
703 << lli1 << ' ';
704 str << setw(14) << setprecision(3) << obs.D1C << ' ' << ' '
705 << setw(14) << setprecision(3) << obs.S1C << ' ' << ' '
706 << setw(14) << setprecision(3) << obs.P1 << ' ' << ' '
707 << setw(14) << setprecision(3) << obs.L1P
708 << lli1 << ' ';
709 str << setw(14) << setprecision(3) << obs.D1P << ' ' << ' '
710 << setw(14) << setprecision(3) << obs.S1P << ' ' << ' '
711 << setw(14) << setprecision(3) << obs.P2 << ' ' << ' '
712 << setw(14) << setprecision(3) << obs.L2P
713 << lli2 << ' ';
714 str << setw(14) << setprecision(3) << obs.D2P << ' ' << ' '
715 << setw(14) << setprecision(3) << obs.S2P << ' ' << ' '
716 << setw(14) << setprecision(3) << obs.C2 << ' ' << ' '
717 << setw(14) << setprecision(3) << obs.L2C
718 << lli2 << ' ';
719 str << setw(14) << setprecision(3) << obs.D2C << ' ' << ' '
720 << setw(14) << setprecision(3) << obs.S2C << ' ' << ' '
721 << setw(14) << setprecision(3) << obs.C5 << ' ' << ' '
722 << setw(14) << setprecision(3) << obs.L5
723 << lli5 << ' ';
724 str << setw(14) << setprecision(3) << obs.D5 << ' ' << ' '
725 << setw(14) << setprecision(3) << obs.S5;
726 }
727 else if (obs.satSys == 'R') { // Glonass
728 str << setw(14) << setprecision(3) << obs.C1 << ' ' << ' '
729 << setw(14) << setprecision(3) << obs.L1C
730 << lli1 << ' ';
731 str << setw(14) << setprecision(3) << obs.D1C << ' ' << ' '
732 << setw(14) << setprecision(3) << obs.S1C << ' ' << ' '
733 << setw(14) << setprecision(3) << obs.P1 << ' ' << ' '
734 << setw(14) << setprecision(3) << obs.L1P
735 << lli1 << ' ';
736 str << setw(14) << setprecision(3) << obs.D1P << ' ' << ' '
737 << setw(14) << setprecision(3) << obs.S1P << ' ' << ' '
738 << setw(14) << setprecision(3) << obs.P2 << ' ' << ' '
739 << setw(14) << setprecision(3) << obs.L2P
740 << lli2 << ' ';
741 str << setw(14) << setprecision(3) << obs.D2P << ' ' << ' '
742 << setw(14) << setprecision(3) << obs.S2P << ' ' << ' '
743 << setw(14) << setprecision(3) << obs.C2 << ' ' << ' '
744 << setw(14) << setprecision(3) << obs.L2C
745 << lli2 << ' ';
746 str << setw(14) << setprecision(3) << obs.D2C << ' ' << ' '
747 << setw(14) << setprecision(3) << obs.S2C;
748 }
749 else if (obs.satSys == 'S') { // SBAS
750 str << setw(14) << setprecision(3) << obs.C1 << ' ' << ' '
751 << setw(14) << setprecision(3) << obs.L1C
752 << lli1 << ' ';
753 str << setw(14) << setprecision(3) << obs.D1C << ' ' << ' '
754 << setw(14) << setprecision(3) << obs.S1C << ' ' << ' '
755 << setw(14) << setprecision(3) << obs.P1 << ' ' << ' '
756 << setw(14) << setprecision(3) << obs.L1P
757 << lli1 << ' ';
758 str << setw(14) << setprecision(3) << obs.D1P << ' ' << ' '
759 << setw(14) << setprecision(3) << obs.S1P;
760 }
761 else if (obs.satSys == 'E') { // Galileo
762 str << setw(14) << setprecision(3) << obs.C1 << ' ' << ' '
763 << setw(14) << setprecision(3) << obs.L1C
764 << lli1 << ' ';
765 str << setw(14) << setprecision(3) << obs.D1C << ' ' << ' '
766 << setw(14) << setprecision(3) << obs.S1C << ' ' << ' '
767 << setw(14) << setprecision(3) << obs.C5 << ' ' << ' '
768 << setw(14) << setprecision(3) << obs.L5
769 << lli5 << ' ';
770 str << setw(14) << setprecision(3) << obs.D5 << ' ' << ' '
771 << setw(14) << setprecision(3) << obs.S5;
772 }
773 else if (obs.satSys == 'C') { // Compass
774 }
775 return str.str();
776}
777
778//
779////////////////////////////////////////////////////////////////////////////
780string bncRinex::obsToStr(double val, int width, int precision) {
781 if (val != 0.0) {
782 ostringstream str;
783 str.setf(ios::showpoint | ios::fixed);
784 str << setw(width) << setprecision(precision) << val;
785 return str.str();
786 }
787 else {
788 return "0.0";
789 }
790}
791
792// One Line in ASCII (Internal) Format
793////////////////////////////////////////////////////////////////////////////
794string bncRinex::asciiSatLine(const t_obs& obs) {
795
796 ostringstream str;
797 str.setf(ios::showpoint | ios::fixed);
798
799 str << obs.satSys << setw(2) << setfill('0') << obs.satNum << setfill(' ');
800
801 if (obs.satSys == 'R') { // Glonass
802 str << ' ' << setw(2) << obs.slotNum;
803 }
804 else {
805 str << " ";
806 }
807
808 if (obs.satSys == 'G') { // GPS
809 if (obs.has1C()) {
810 str << " 1C "
811 << obsToStr(obs.C1) << ' '
812 << obsToStr(obs.L1C) << ' '
813 << obsToStr(obs.D1C) << ' '
814 << obsToStr(obs.S1C, 8, 3) << ' '
815 << setw(2) << obs.slip_cnt_L1;
816 }
817 if (obs.has1P()) {
818 str << " 1W "
819 << obsToStr(obs.P1) << ' '
820 << obsToStr(obs.L1P) << ' '
821 << obsToStr(obs.D1P) << ' '
822 << obsToStr(obs.S1P, 8, 3) << ' '
823 << setw(2) << obs.slip_cnt_L1;
824 }
825 if (obs.has2P()) {
826 str << " 2P "
827 << obsToStr(obs.P2) << ' '
828 << obsToStr(obs.L2P) << ' '
829 << obsToStr(obs.D2P) << ' '
830 << obsToStr(obs.S2P, 8, 3) << ' '
831 << setw(2) << obs.slip_cnt_L2;
832 }
833 if (obs.has2C()) {
834 str << " 2X "
835 << obsToStr(obs.C2) << ' '
836 << obsToStr(obs.L2C) << ' '
837 << obsToStr(obs.D2C) << ' '
838 << obsToStr(obs.S2C, 8, 3) << ' '
839 << setw(2) << obs.slip_cnt_L2;
840 }
841 if (obs.has5C()) {
842 str << " 5C "
843 << obsToStr(obs.C5) << ' '
844 << obsToStr(obs.L5) << ' '
845 << obsToStr(obs.D5) << ' '
846 << obsToStr(obs.S5, 8, 3) << ' '
847 << setw(2) << obs.slip_cnt_L5;
848 }
849 }
850 else if (obs.satSys == 'R') { // Glonass
851 if (obs.has1C()) {
852 str << " 1C "
853 << obsToStr(obs.C1) << ' '
854 << obsToStr(obs.L1C) << ' '
855 << obsToStr(obs.D1C) << ' '
856 << obsToStr(obs.S1C, 8, 3) << ' '
857 << setw(2) << obs.slip_cnt_L1;
858 }
859 if (obs.has1P()) {
860 str << " 1P "
861 << obsToStr(obs.P1) << ' '
862 << obsToStr(obs.L1P) << ' '
863 << obsToStr(obs.D1P) << ' '
864 << obsToStr(obs.S1P, 8, 3) << ' '
865 << setw(2) << obs.slip_cnt_L1;
866 }
867 if (obs.has2P()) {
868 str << " 2P "
869 << obsToStr(obs.P2) << ' '
870 << obsToStr(obs.L2P) << ' '
871 << obsToStr(obs.D2P) << ' '
872 << obsToStr(obs.S2P, 8, 3) << ' '
873 << setw(2) << obs.slip_cnt_L2;
874 }
875 if (obs.has2C()) {
876 str << " 2C "
877 << obsToStr(obs.C2) << ' '
878 << obsToStr(obs.L2C) << ' '
879 << obsToStr(obs.D2C) << ' '
880 << obsToStr(obs.S2C, 8, 3) << ' '
881 << setw(2) << obs.slip_cnt_L2;
882 }
883 }
884 else if (obs.satSys == 'S') { // SBAS
885 if (obs.has1C()) {
886 str << " 1C "
887 << obsToStr(obs.C1) << ' '
888 << obsToStr(obs.L1C) << ' '
889 << obsToStr(obs.D1C) << ' '
890 << obsToStr(obs.S1C, 8, 3) << ' '
891 << setw(2) << obs.slip_cnt_L1;
892 }
893 if (obs.has1P()) {
894 str << " 1W "
895 << obsToStr(obs.P1) << ' '
896 << obsToStr(obs.L1P) << ' '
897 << obsToStr(obs.D1P) << ' '
898 << obsToStr(obs.S1P, 8, 3) << ' '
899 << setw(2) << obs.slip_cnt_L1;
900 }
901 }
902 else if (obs.satSys == 'E') { // Galileo
903 if (obs.has1C()) {
904 str << " 1C "
905 << obsToStr(obs.C1) << ' '
906 << obsToStr(obs.L1C) << ' '
907 << obsToStr(obs.D1C) << ' '
908 << obsToStr(obs.S1C, 8, 3) << ' '
909 << setw(2) << obs.slip_cnt_L1;
910 }
911 if (obs.has5C()) {
912 str << " 5C "
913 << obsToStr(obs.C5) << ' '
914 << obsToStr(obs.L5) << ' '
915 << obsToStr(obs.D5) << ' '
916 << obsToStr(obs.S5, 8, 3) << ' '
917 << setw(2) << obs.slip_cnt_L5;
918 }
919 }
920 return str.str();
921}
Note: See TracBrowser for help on using the repository browser.