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

Last change on this file since 4538 was 4538, checked in by mervart, 12 years ago
File size: 21.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: 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
80 bncSettings settings;
81 _rnxScriptName = settings.value("rnxScript").toString();
82 expandEnvVar(_rnxScriptName);
83
84 _pgmName = QString(BNCPGMNAME).leftJustified(20, ' ', true);
85#ifdef WIN32
86 _userName = QString("${USERNAME}");
87#else
88 _userName = QString("${USER}");
89#endif
90 expandEnvVar(_userName);
91 _userName = _userName.leftJustified(20, ' ', true);
92
93 _samplingRate = settings.value("rnxSampl").toInt();
94}
95
96// Destructor
97////////////////////////////////////////////////////////////////////////////
98bncRinex::~bncRinex() {
99 bncSettings settings;
100 if ((_header._version >= 3.0) && ( Qt::CheckState(settings.value("rnxAppend").toInt()) != Qt::Checked) ) {
101 _out << "> 4 1" << endl;
102 _out << "END OF FILE" << endl;
103 }
104 _out.close();
105}
106
107// Download Skeleton Header File
108////////////////////////////////////////////////////////////////////////////
109t_irc bncRinex::downloadSkeleton() {
110
111 t_irc irc = failure;
112
113 QStringList table;
114 bncTableDlg::getFullTable(_ntripVersion, _mountPoint.host(),
115 _mountPoint.port(), table, true);
116 QString net;
117 QStringListIterator it(table);
118 while (it.hasNext()) {
119 QString line = it.next();
120 if (line.indexOf("STR") == 0) {
121 QStringList tags = line.split(";");
122 if (tags.size() > 7) {
123 if (tags.at(1) == _mountPoint.path().mid(1).toAscii()) {
124 net = tags.at(7);
125 break;
126 }
127 }
128 }
129 }
130 QString sklDir;
131 if (!net.isEmpty()) {
132 it.toFront();
133 while (it.hasNext()) {
134 QString line = it.next();
135 if (line.indexOf("NET") == 0) {
136 QStringList tags = line.split(";");
137 if (tags.size() > 6) {
138 if (tags.at(1) == net) {
139 sklDir = tags.at(6).trimmed();
140 break;
141 }
142 }
143 }
144 }
145 }
146 if (!sklDir.isEmpty() && sklDir != "none") {
147 QUrl url(sklDir + "/" + _mountPoint.path().mid(1,4).toLower() + ".skl");
148 if (url.port() == -1) {
149 url.setPort(80);
150 }
151
152 bncNetQuery* query;
153 if (_ntripVersion == "2s") {
154 query = new bncNetQueryV2(true);
155 }
156 else if (_ntripVersion == "2") {
157 query = new bncNetQueryV2(false);
158 }
159 else {
160 query = new bncNetQueryV1;
161 }
162
163 QByteArray outData;
164 query->waitForRequestResult(url, outData);
165 if (query->status() == bncNetQuery::finished) {
166 irc = success;
167 _header._obsTypesV2.clear();
168 _header._obsTypesV3.clear();
169 QTextStream in(outData);
170 _header.read(&in);
171 }
172
173 delete query;
174 }
175
176 return irc;
177}
178
179// Read Skeleton Header File
180////////////////////////////////////////////////////////////////////////////
181bool bncRinex::readSkeleton() {
182
183 bool readDone = false;
184
185 // Read the local file
186 // -------------------
187 QFile skl(_sklName);
188 if ( skl.exists() && skl.open(QIODevice::ReadOnly) ) {
189 readDone = true;
190 _header._obsTypesV2.clear();
191 _header._obsTypesV3.clear();
192 QTextStream in(&skl);
193 _header.read(&in);
194 }
195
196 // Read downloaded file
197 // --------------------
198 else if ( _ntripVersion != "N" && _ntripVersion != "UN" &&
199 _ntripVersion != "S" ) {
200 QDate currDate = currentDateAndTimeGPS().date();
201 if ( !_skeletonDate.isValid() || _skeletonDate != currDate ) {
202 if (downloadSkeleton() == success) {
203 readDone = true;
204 }
205 _skeletonDate = currDate;
206 }
207 }
208
209 return readDone;
210}
211
212// Next File Epoch (static)
213////////////////////////////////////////////////////////////////////////////
214QString bncRinex::nextEpochStr(const QDateTime& datTim,
215 const QString& intStr, QDateTime* nextEpoch) {
216
217 QString epoStr;
218
219 QTime nextTime;
220 QDate nextDate;
221
222 int indHlp = intStr.indexOf("min");
223
224 if ( indHlp != -1) {
225 int step = intStr.left(indHlp-1).toInt();
226 char ch = 'A' + datTim.time().hour();
227 epoStr = ch;
228 if (datTim.time().minute() >= 60-step) {
229 epoStr += QString("%1").arg(60-step, 2, 10, QChar('0'));
230 if (datTim.time().hour() < 23) {
231 nextTime.setHMS(datTim.time().hour() + 1 , 0, 0);
232 nextDate = datTim.date();
233 }
234 else {
235 nextTime.setHMS(0, 0, 0);
236 nextDate = datTim.date().addDays(1);
237 }
238 }
239 else {
240 for (int limit = step; limit <= 60-step; limit += step) {
241 if (datTim.time().minute() < limit) {
242 epoStr += QString("%1").arg(limit-step, 2, 10, QChar('0'));
243 nextTime.setHMS(datTim.time().hour(), limit, 0);
244 nextDate = datTim.date();
245 break;
246 }
247 }
248 }
249 }
250 else if (intStr == "1 hour") {
251 char ch = 'A' + datTim.time().hour();
252 epoStr = ch;
253 if (datTim.time().hour() < 23) {
254 nextTime.setHMS(datTim.time().hour() + 1 , 0, 0);
255 nextDate = datTim.date();
256 }
257 else {
258 nextTime.setHMS(0, 0, 0);
259 nextDate = datTim.date().addDays(1);
260 }
261 }
262 else {
263 epoStr = "0";
264 nextTime.setHMS(0, 0, 0);
265 nextDate = datTim.date().addDays(1);
266 }
267
268 if (nextEpoch) {
269 *nextEpoch = QDateTime(nextDate, nextTime);
270 }
271
272 return epoStr;
273}
274
275// File Name according to RINEX Standards
276////////////////////////////////////////////////////////////////////////////
277void bncRinex::resolveFileName(const QDateTime& datTim) {
278
279 bncSettings settings;
280 QString path = settings.value("rnxPath").toString();
281 expandEnvVar(path);
282
283 if ( path.length() > 0 && path[path.length()-1] != QDir::separator() ) {
284 path += QDir::separator();
285 }
286
287 QString hlpStr = nextEpochStr(datTim, settings.value("rnxIntr").toString(),
288 &_nextCloseEpoch);
289
290 QString ID4 = _statID.left(4);
291
292 // Check name conflict
293 // -------------------
294 QString distStr;
295 int num = 0;
296 QListIterator<QString> it(settings.value("mountPoints").toStringList());
297 while (it.hasNext()) {
298 QString mp = it.next();
299 if (mp.indexOf(ID4) != -1) {
300 ++num;
301 }
302 }
303 if (num > 1) {
304 distStr = "_" + _statID.mid(4);
305 }
306
307 QString sklExt = settings.value("rnxSkel").toString();
308 if (!sklExt.isEmpty()) {
309 _sklName = path + ID4 + distStr + "." + sklExt;
310 }
311
312 path += ID4 +
313 QString("%1").arg(datTim.date().dayOfYear(), 3, 10, QChar('0')) +
314 hlpStr + distStr + datTim.toString(".yyO");
315
316 _fName = path.toAscii();
317}
318
319// Write RINEX Header
320////////////////////////////////////////////////////////////////////////////
321void bncRinex::writeHeader(const QByteArray& format,
322 const QDateTime& datTimNom) {
323
324 bncSettings settings;
325
326 // Open the Output File
327 // --------------------
328 resolveFileName(datTimNom);
329
330 // Append to existing file and return
331 // ----------------------------------
332 if ( QFile::exists(_fName) ) {
333 if (_reconnectFlag ||
334 Qt::CheckState(settings.value("rnxAppend").toInt()) == Qt::Checked) {
335 _out.open(_fName.data(), ios::app);
336 _out.setf(ios::showpoint | ios::fixed);
337 _headerWritten = true;
338 _reconnectFlag = false;
339 return;
340 }
341 }
342
343 _out.open(_fName.data());
344 _out.setf(ios::showpoint | ios::fixed);
345
346 // Read Skeleton Header
347 // --------------------
348 bool skelRead = readSkeleton();
349
350 // Set RINEX Version
351 // -----------------
352 if ( Qt::CheckState(settings.value("rnxV3").toInt()) == Qt::Checked) {
353 _header._version = 3.01;
354 }
355 else {
356 _header._version = 2.12;
357 }
358
359 // A Few Additional Comments
360 // -------------------------
361 if (skelRead || _addComments.size() == 0) {
362 _addComments.clear();
363 _addComments << format.left(6) + " "
364 + _mountPoint.host() + _mountPoint.path();
365 if (_header._obsTypesV3.size() == 0 && _header._version >= 3.0) {
366 _addComments << "Default set of observation types used";
367 }
368 if (_nmea == "yes") {
369 _addComments << "NMEA LAT=" + _latitude + " " + "LONG=" + _longitude;
370 }
371 }
372
373 // Set Marker Name
374 // ---------------
375 if (_header._markerName.isEmpty()) {
376 _header._markerName = _statID;
377 }
378
379 // Set Default RINEX v2 Types
380 // --------------------------
381 if (_header._obsTypesV2.size() == 0) {
382 _header._obsTypesV2 << "C1" << "P1" << "L1" << "S1"
383 << "C2" << "P2" << "L2" << "S2";
384 }
385
386 // Set Default RINEX v3 Types
387 // ---------------------------
388 if (_header._obsTypesV3.size() == 0) {
389 _header._obsTypesV3['G'] << "C1C" << "L1C" << "D1C" << "S1C"
390 << "C1P" << "L1P" << "D1P" << "S1P"
391 << "C2C" << "L2C" << "D2C" << "S2C"
392 << "C2P" << "L2P" << "D2P" << "S2P"
393 << "C5" << "D5" << "L5" << "S5";
394
395 _header._obsTypesV3['R'] << "C1C" << "L1C" << "D1C" << "S1C"
396 << "C1P" << "L1P" << "D1P" << "S1P"
397 << "C2C" << "L2C" << "D2C" << "S2C"
398 << "C2P" << "L2P" << "D2P" << "S2P";
399
400 _header._obsTypesV3['E'] << "C1" << "L1" << "D1" << "S1"
401 << "C5" << "L5" << "D5" << "S5"
402 << "C6" << "L6" << "D6" << "S6"
403 << "C7" << "L7" << "D7" << "S7"
404 << "C8" << "L8" << "D8" << "S8";
405
406 _header._obsTypesV3['J'] << "C1" << "L1" << "D1" << "S1"
407 << "C2" << "L2" << "D2" << "S2"
408 << "C5" << "L5" << "D5" << "S5"
409 << "C6" << "D6" << "L6" << "S6";
410
411 _header._obsTypesV3['S'] << "C1" << "L1" << "D1" << "S1"
412 << "C5" << "L5" << "D5" << "S5";
413
414 _header._obsTypesV3['C'] << "C2" << "L2" << "D2" << "S2"
415 << "C6" << "L6" << "D6" << "S6"
416 << "C7" << "L7" << "D7" << "S7";
417 }
418
419 // Write the Header
420 // ----------------
421 QByteArray headerLines;
422 QTextStream outHlp(&headerLines);
423
424 QMap<QString, QString> txtMap;
425 txtMap["COMMENT"] = _addComments.join("\\n");
426
427 _header.write(&outHlp, &txtMap);
428
429 outHlp.flush();
430 _out << headerLines.data();
431
432 _headerWritten = true;
433}
434
435// Stores Observation into Internal Array
436////////////////////////////////////////////////////////////////////////////
437void bncRinex::deepCopy(t_obs obs) {
438 _obs.push_back(obs);
439}
440
441// Write One Epoch into the RINEX File
442////////////////////////////////////////////////////////////////////////////
443void bncRinex::dumpEpoch(const QByteArray& format, long maxTime) {
444
445 // Select observations older than maxTime
446 // --------------------------------------
447 QList<t_obs> dumpList;
448 QMutableListIterator<t_obs> mIt(_obs);
449 while (mIt.hasNext()) {
450 t_obs obs = mIt.next();
451 if (obs.GPSWeek * 7*24*3600 + obs.GPSWeeks < maxTime - 0.05) {
452 dumpList.push_back(obs);
453 mIt.remove();
454 }
455 }
456
457 // Easy Return
458 // -----------
459 if (dumpList.isEmpty()) {
460 return;
461 }
462
463 // Time of Epoch
464 // -------------
465 const t_obs& fObs = dumpList.first();
466 QDateTime datTim = dateAndTimeFromGPSweek(fObs.GPSWeek, fObs.GPSWeeks);
467 QDateTime datTimNom = dateAndTimeFromGPSweek(fObs.GPSWeek,
468 floor(fObs.GPSWeeks+0.5));
469
470 // Close the file
471 // --------------
472 if (_nextCloseEpoch.isValid() && datTimNom >= _nextCloseEpoch) {
473 closeFile();
474 _headerWritten = false;
475 }
476
477 // Write RINEX Header
478 // ------------------
479 if (!_headerWritten) {
480 _header._startTime.set(fObs.GPSWeek, fObs.GPSWeeks);
481 writeHeader(format, datTimNom);
482 }
483
484 double sec = double(datTim.time().second()) + fmod(fObs.GPSWeeks,1.0);
485
486 // Epoch header line: RINEX Version 3
487 // ----------------------------------
488 if (_header._version >= 3.0) {
489 _out << datTim.toString("> yyyy MM dd hh mm ").toAscii().data()
490 << setw(10) << setprecision(7) << sec
491 << " " << 0 << setw(3) << dumpList.size() << endl;
492 }
493 // Epoch header line: RINEX Version 2
494 // ----------------------------------
495 else {
496 _out << datTim.toString(" yy MM dd hh mm ").toAscii().data()
497 << setw(10) << setprecision(7) << sec
498 << " " << 0 << setw(3) << dumpList.size();
499
500 QListIterator<t_obs> it(dumpList); int iSat = 0;
501 while (it.hasNext()) {
502 iSat++;
503 const t_obs& obs = it.next();
504 _out << obs.satSys << setw(2) << obs.satNum;
505 if (iSat == 12 && it.hasNext()) {
506 _out << endl << " ";
507 iSat = 0;
508 }
509 }
510 _out << endl;
511 }
512
513 QListIterator<t_obs> it(dumpList);
514 while (it.hasNext()) {
515 const t_obs& obs = it.next();
516
517 // Cycle slips detection
518 // ---------------------
519 QString prn = QString("%1%2").arg(obs.satSys)
520 .arg(obs.satNum, 2, 10, QChar('0'));
521
522 char lli1 = ' ';
523 char lli2 = ' ';
524 char lli5 = ' ';
525 if ( obs.slip_cnt_L1 >= 0 ) {
526 if ( _slip_cnt_L1.find(prn) != _slip_cnt_L1.end() &&
527 _slip_cnt_L1.find(prn).value() != obs.slip_cnt_L1 ) {
528 lli1 = '1';
529 }
530 }
531
532 if ( obs.slip_cnt_L2 >= 0 ) {
533 if ( _slip_cnt_L2.find(prn) != _slip_cnt_L2.end() &&
534 _slip_cnt_L2.find(prn).value() != obs.slip_cnt_L2 ) {
535 lli2 = '1';
536 }
537 }
538
539 if ( obs.slip_cnt_L5 >= 0 ) {
540 if ( _slip_cnt_L5.find(prn) != _slip_cnt_L5.end() &&
541 _slip_cnt_L5.find(prn).value() != obs.slip_cnt_L5 ) {
542 lli5 = '1';
543 }
544 }
545
546 _slip_cnt_L1[prn] = obs.slip_cnt_L1;
547 _slip_cnt_L2[prn] = obs.slip_cnt_L2;
548 _slip_cnt_L5[prn] = obs.slip_cnt_L5;
549
550 // Write the data
551 // --------------
552 _out << rinexSatLine(obs, lli1, lli2, lli5) << endl;
553 }
554
555 _out.flush();
556}
557
558// Close the Old RINEX File
559////////////////////////////////////////////////////////////////////////////
560void bncRinex::closeFile() {
561 if (_header._version == 3) {
562 _out << "> 4 1" << endl;
563 _out << "END OF FILE" << endl;
564 }
565 _out.close();
566 if (!_rnxScriptName.isEmpty()) {
567 qApp->thread()->wait(100);
568#ifdef WIN32
569 QProcess::startDetached(_rnxScriptName, QStringList() << _fName) ;
570#else
571 QProcess::startDetached("nohup", QStringList() << _rnxScriptName << _fName) ;
572#endif
573
574 }
575}
576
577// One Line in RINEX v2 or v3
578////////////////////////////////////////////////////////////////////////////
579string bncRinex::rinexSatLine(const t_obs& obs, char lli1, char lli2,
580 char lli5) {
581 ostringstream str;
582 str.setf(ios::showpoint | ios::fixed);
583
584 if (_header._version >= 3.0) {
585 str << obs.satSys
586 << setw(2) << setfill('0') << obs.satNum << setfill(' ');
587 }
588
589 const QVector<QString>& types = (_header._version > 3.0) ?
590 _header._obsTypesV3[obs.satSys] : _header._obsTypesV2;
591 for (int ii = 0; ii < types.size(); ii++) {
592 double value = obs.measdata(types[ii], _header._version);
593 str << setw(14) << setprecision(3) << value;
594 if (value != 0.0 && types[ii].indexOf("L1") == 0) {
595 str << lli1 << ' ';
596 }
597 else if (value != 0.0 && types[ii].indexOf("L2") == 0) {
598 str << lli2 << ' ';
599 }
600 else if (value != 0.0 && types[ii].indexOf("L5") == 0) {
601 str << lli5 << ' ';
602 }
603 else {
604 str << " ";
605 }
606 }
607
608 return str.str();
609}
610
611//
612////////////////////////////////////////////////////////////////////////////
613string bncRinex::obsToStr(double val, int width, int precision) {
614 if (val != 0.0) {
615 ostringstream str;
616 str.setf(ios::showpoint | ios::fixed);
617 str << setw(width) << setprecision(precision) << val;
618 return str.str();
619 }
620 else {
621 return "0.0";
622 }
623}
624
625// One Line in ASCII (Internal) Format
626////////////////////////////////////////////////////////////////////////////
627string bncRinex::asciiSatLine(const t_obs& obs) {
628
629 ostringstream str;
630 str.setf(ios::showpoint | ios::fixed);
631
632 str << obs.satSys << setw(2) << setfill('0') << obs.satNum << setfill(' ');
633
634 if (obs.satSys == 'R') { // Glonass
635 str << ' ' << setw(2) << obs.slotNum;
636 }
637 else {
638 str << " ";
639 }
640
641 float rnxVers = 3.0;
642
643 if (obs.satSys == 'G') { // GPS
644 str << " 1C "
645 << obsToStr(obs.measdata("C1C", rnxVers)) << ' '
646 << obsToStr(obs.measdata("L1C", rnxVers)) << ' '
647 << obsToStr(obs.measdata("D1C", rnxVers)) << ' '
648 << obsToStr(obs.measdata("S1C", rnxVers), 8, 3) << ' '
649 << setw(2) << obs.slip_cnt_L1;
650 str << " 1P "
651 << obsToStr(obs.measdata("C1P", rnxVers)) << ' '
652 << obsToStr(obs.measdata("L1P", rnxVers)) << ' '
653 << obsToStr(obs.measdata("D1P", rnxVers)) << ' '
654 << obsToStr(obs.measdata("S1P", rnxVers), 8, 3) << ' '
655 << setw(2) << obs.slip_cnt_L1;
656 str << " 2P "
657 << obsToStr(obs.measdata("C2P", rnxVers)) << ' '
658 << obsToStr(obs.measdata("L2P", rnxVers)) << ' '
659 << obsToStr(obs.measdata("D2P", rnxVers)) << ' '
660 << obsToStr(obs.measdata("S2P", rnxVers), 8, 3) << ' '
661 << setw(2) << obs.slip_cnt_L2;
662 str << " 5C "
663 << obsToStr(obs.measdata("C5", rnxVers)) << ' '
664 << obsToStr(obs.measdata("L5", rnxVers)) << ' '
665 << obsToStr(obs.measdata("D5", rnxVers)) << ' '
666 << obsToStr(obs.measdata("S5", rnxVers), 8, 3) << ' '
667 << setw(2) << obs.slip_cnt_L5;
668 }
669 else if (obs.satSys == 'R') { // Glonass
670 str << " 1C "
671 << obsToStr(obs.measdata("C1C", rnxVers)) << ' '
672 << obsToStr(obs.measdata("L1C", rnxVers)) << ' '
673 << obsToStr(obs.measdata("D1C", rnxVers)) << ' '
674 << obsToStr(obs.measdata("S1C", rnxVers), 8, 3) << ' '
675 << setw(2) << obs.slip_cnt_L1;
676 str << " 1P "
677 << obsToStr(obs.measdata("C1P", rnxVers)) << ' '
678 << obsToStr(obs.measdata("L1P", rnxVers)) << ' '
679 << obsToStr(obs.measdata("D1P", rnxVers)) << ' '
680 << obsToStr(obs.measdata("S1P", rnxVers), 8, 3) << ' '
681 << setw(2) << obs.slip_cnt_L1;
682 str << " 2P "
683 << obsToStr(obs.measdata("C2P", rnxVers)) << ' '
684 << obsToStr(obs.measdata("L2P", rnxVers)) << ' '
685 << obsToStr(obs.measdata("D2P", rnxVers)) << ' '
686 << obsToStr(obs.measdata("S2P", rnxVers), 8, 3) << ' '
687 << setw(2) << obs.slip_cnt_L2;
688 str << " 2C "
689 << obsToStr(obs.measdata("C2C", rnxVers)) << ' '
690 << obsToStr(obs.measdata("L2C", rnxVers)) << ' '
691 << obsToStr(obs.measdata("D2C", rnxVers)) << ' '
692 << obsToStr(obs.measdata("S2C", rnxVers), 8, 3) << ' '
693 << setw(2) << obs.slip_cnt_L2;
694 }
695 else if (obs.satSys == 'E') { // Galileo
696 str << " 1C "
697 << obsToStr(obs.measdata("C1", rnxVers)) << ' '
698 << obsToStr(obs.measdata("L1", rnxVers)) << ' '
699 << obsToStr(obs.measdata("D1", rnxVers)) << ' '
700 << obsToStr(obs.measdata("S1", rnxVers), 8, 3) << ' '
701 << setw(2) << obs.slip_cnt_L1;
702
703 str << " 5C "
704 << obsToStr(obs.measdata("C5", rnxVers)) << ' '
705 << obsToStr(obs.measdata("L5", rnxVers)) << ' '
706 << obsToStr(obs.measdata("D5", rnxVers)) << ' '
707 << obsToStr(obs.measdata("S5", rnxVers), 8, 3) << ' '
708 << setw(2) << obs.slip_cnt_L5;
709 }
710 return str.str();
711}
Note: See TracBrowser for help on using the repository browser.