[3716] | 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_rnxObsFile
|
---|
| 30 | *
|
---|
| 31 | * Purpose: Reads RINEX Observation File
|
---|
| 32 | *
|
---|
| 33 | * Author: L. Mervart
|
---|
| 34 | *
|
---|
| 35 | * Created: 24-Jan-2012
|
---|
| 36 | *
|
---|
| 37 | * Changes:
|
---|
| 38 | *
|
---|
| 39 | * -----------------------------------------------------------------------*/
|
---|
| 40 |
|
---|
| 41 | #include <iostream>
|
---|
| 42 | #include <iomanip>
|
---|
| 43 | #include <sstream>
|
---|
[3722] | 44 | #include "rnxobsfile.h"
|
---|
[3716] | 45 | #include "bncutils.h"
|
---|
[5070] | 46 | #include "bnccore.h"
|
---|
[3716] | 47 |
|
---|
| 48 | using namespace std;
|
---|
| 49 |
|
---|
[6119] | 50 | const QString t_rnxObsHeader::defaultSystems = "GRES";
|
---|
[3716] | 51 |
|
---|
| 52 | // Constructor
|
---|
| 53 | ////////////////////////////////////////////////////////////////////////////
|
---|
[4480] | 54 | t_rnxObsHeader::t_rnxObsHeader() {
|
---|
[3716] | 55 | _antNEU.ReSize(3); _antNEU = 0.0;
|
---|
| 56 | _antXYZ.ReSize(3); _antXYZ = 0.0;
|
---|
| 57 | _antBSG.ReSize(3); _antBSG = 0.0;
|
---|
| 58 | _xyz.ReSize(3); _xyz = 0.0;
|
---|
| 59 | _version = 0.0;
|
---|
| 60 | _interval = 0.0;
|
---|
[5742] | 61 | for (unsigned iPrn = 1; iPrn <= t_prn::MAXPRN_GPS; iPrn++) {
|
---|
[3716] | 62 | _wlFactorsL1[iPrn] = 1;
|
---|
| 63 | _wlFactorsL2[iPrn] = 1;
|
---|
| 64 | }
|
---|
| 65 | }
|
---|
| 66 |
|
---|
| 67 | // Destructor
|
---|
| 68 | ////////////////////////////////////////////////////////////////////////////
|
---|
[4480] | 69 | t_rnxObsHeader::~t_rnxObsHeader() {
|
---|
[3716] | 70 | }
|
---|
| 71 |
|
---|
| 72 | // Read Header
|
---|
| 73 | ////////////////////////////////////////////////////////////////////////////
|
---|
[4480] | 74 | t_irc t_rnxObsHeader::read(QTextStream* stream, int maxLines) {
|
---|
[4534] | 75 | _comments.clear();
|
---|
[3716] | 76 | int numLines = 0;
|
---|
[3718] | 77 | while ( stream->status() == QTextStream::Ok && !stream->atEnd() ) {
|
---|
| 78 | QString line = stream->readLine(); ++ numLines;
|
---|
| 79 | if (line.isEmpty()) {
|
---|
[3716] | 80 | continue;
|
---|
| 81 | }
|
---|
[3718] | 82 | if (line.indexOf("END OF FILE") != -1) {
|
---|
[3716] | 83 | break;
|
---|
| 84 | }
|
---|
[3718] | 85 | QString value = line.mid(0,60).trimmed();
|
---|
| 86 | QString key = line.mid(60).trimmed();
|
---|
[3716] | 87 | if (key == "END OF HEADER") {
|
---|
| 88 | break;
|
---|
| 89 | }
|
---|
| 90 | else if (key == "RINEX VERSION / TYPE") {
|
---|
[3718] | 91 | QTextStream in(value.toAscii(), QIODevice::ReadOnly);
|
---|
[3716] | 92 | in >> _version;
|
---|
| 93 | }
|
---|
| 94 | else if (key == "MARKER NAME") {
|
---|
| 95 | _markerName = value;
|
---|
| 96 | }
|
---|
[3930] | 97 | else if (key == "MARKER NUMBER") {
|
---|
| 98 | _markerNumber = line.mid(0,20).trimmed();
|
---|
| 99 | }
|
---|
[3716] | 100 | else if (key == "ANT # / TYPE") {
|
---|
[3930] | 101 | _antennaNumber = line.mid( 0,20).trimmed();
|
---|
| 102 | _antennaName = line.mid(20,20).trimmed();
|
---|
[3716] | 103 | }
|
---|
[3930] | 104 | else if (key == "OBSERVER / AGENCY") {
|
---|
| 105 | _observer = line.mid( 0,20).trimmed();
|
---|
| 106 | _agency = line.mid(20,40).trimmed();
|
---|
| 107 | }
|
---|
| 108 | else if (key == "REC # / TYPE / VERS") {
|
---|
| 109 | _receiverNumber = line.mid( 0,20).trimmed();
|
---|
| 110 | _receiverType = line.mid(20,20).trimmed();
|
---|
| 111 | _receiverVersion = line.mid(40,20).trimmed();
|
---|
| 112 | }
|
---|
[3716] | 113 | else if (key == "INTERVAL") {
|
---|
[3718] | 114 | QTextStream in(value.toAscii(), QIODevice::ReadOnly);
|
---|
[3716] | 115 | in >> _interval;
|
---|
| 116 | }
|
---|
[4494] | 117 | else if (key == "COMMENT") {
|
---|
| 118 | _comments << line.mid(0,60).trimmed();
|
---|
| 119 | }
|
---|
[3716] | 120 | else if (key == "WAVELENGTH FACT L1/2") {
|
---|
[3718] | 121 | QTextStream in(value.toAscii(), QIODevice::ReadOnly);
|
---|
[3716] | 122 | int wlFactL1 = 0;
|
---|
| 123 | int wlFactL2 = 0;
|
---|
| 124 | int numSat = 0;
|
---|
| 125 | in >> wlFactL1 >> wlFactL2 >> numSat;
|
---|
| 126 | if (numSat == 0) {
|
---|
[5742] | 127 | for (unsigned iPrn = 1; iPrn <= t_prn::MAXPRN_GPS; iPrn++) {
|
---|
[3716] | 128 | _wlFactorsL1[iPrn] = wlFactL1;
|
---|
| 129 | _wlFactorsL2[iPrn] = wlFactL2;
|
---|
| 130 | }
|
---|
| 131 | }
|
---|
| 132 | else {
|
---|
| 133 | for (int ii = 0; ii < numSat; ii++) {
|
---|
[3718] | 134 | QString prn; in >> prn;
|
---|
[3716] | 135 | if (prn[0] == 'G') {
|
---|
| 136 | int iPrn;
|
---|
| 137 | readInt(prn, 1, 2, iPrn);
|
---|
| 138 | _wlFactorsL1[iPrn] = wlFactL1;
|
---|
| 139 | _wlFactorsL2[iPrn] = wlFactL2;
|
---|
| 140 | }
|
---|
| 141 | }
|
---|
| 142 | }
|
---|
| 143 | }
|
---|
| 144 | else if (key == "APPROX POSITION XYZ") {
|
---|
[3718] | 145 | QTextStream in(value.toAscii(), QIODevice::ReadOnly);
|
---|
[3716] | 146 | in >> _xyz[0] >> _xyz[1] >> _xyz[2];
|
---|
| 147 | }
|
---|
| 148 | else if (key == "ANTENNA: DELTA H/E/N") {
|
---|
[3718] | 149 | QTextStream in(value.toAscii(), QIODevice::ReadOnly);
|
---|
[3716] | 150 | in >> _antNEU[2] >> _antNEU[1] >> _antNEU[0];
|
---|
| 151 | }
|
---|
| 152 | else if (key == "ANTENNA: DELTA X/Y/Z") {
|
---|
[3718] | 153 | QTextStream in(value.toAscii(), QIODevice::ReadOnly);
|
---|
[3716] | 154 | in >> _antXYZ[0] >> _antXYZ[1] >> _antXYZ[2];
|
---|
| 155 | }
|
---|
| 156 | else if (key == "ANTENNA: B.SIGHT XYZ") {
|
---|
[3718] | 157 | QTextStream in(value.toAscii(), QIODevice::ReadOnly);
|
---|
[3716] | 158 | in >> _antBSG[0] >> _antBSG[1] >> _antBSG[2];
|
---|
| 159 | }
|
---|
| 160 | else if (key == "# / TYPES OF OBSERV") {
|
---|
[3864] | 161 | QTextStream* in = new QTextStream(value.toAscii(), QIODevice::ReadOnly);
|
---|
[3716] | 162 | int nTypes;
|
---|
[3864] | 163 | *in >> nTypes;
|
---|
[6125] | 164 | char sys0 = defaultSystems[0].toAscii();
|
---|
| 165 | _obsTypes[sys0].clear();
|
---|
[3716] | 166 | for (int ii = 0; ii < nTypes; ii++) {
|
---|
[3864] | 167 | if (ii > 0 && ii % 9 == 0) {
|
---|
| 168 | line = stream->readLine(); ++numLines;
|
---|
| 169 | delete in;
|
---|
[4152] | 170 | in = new QTextStream(line.left(60).toAscii(), QIODevice::ReadOnly);
|
---|
[3864] | 171 | }
|
---|
[3718] | 172 | QString hlp;
|
---|
[3864] | 173 | *in >> hlp;
|
---|
[6125] | 174 | _obsTypes[sys0].append(hlp);
|
---|
[3716] | 175 | }
|
---|
[6119] | 176 | for (int ii = 1; ii < defaultSystems.length(); ii++) {
|
---|
[6125] | 177 | char sysI = defaultSystems[ii].toAscii();
|
---|
| 178 | _obsTypes[sysI] = _obsTypes[sys0];
|
---|
[6119] | 179 | }
|
---|
[3716] | 180 | }
|
---|
| 181 | else if (key == "SYS / # / OBS TYPES") {
|
---|
[3718] | 182 | QTextStream* in = new QTextStream(value.toAscii(), QIODevice::ReadOnly);
|
---|
[3716] | 183 | char sys;
|
---|
| 184 | int nTypes;
|
---|
| 185 | *in >> sys >> nTypes;
|
---|
[6119] | 186 | _obsTypes[sys].clear();
|
---|
[3716] | 187 | for (int ii = 0; ii < nTypes; ii++) {
|
---|
| 188 | if (ii > 0 && ii % 13 == 0) {
|
---|
[3718] | 189 | line = stream->readLine(); ++numLines;
|
---|
[3716] | 190 | delete in;
|
---|
[3718] | 191 | in = new QTextStream(line.toAscii(), QIODevice::ReadOnly);
|
---|
[3716] | 192 | }
|
---|
[3718] | 193 | QString hlp;
|
---|
[3716] | 194 | *in >> hlp;
|
---|
[6119] | 195 | _obsTypes[sys].push_back(hlp);
|
---|
[3716] | 196 | }
|
---|
| 197 | delete in;
|
---|
| 198 | }
|
---|
[3837] | 199 | else if (key == "TIME OF FIRST OBS") {
|
---|
| 200 | QTextStream in(value.toAscii(), QIODevice::ReadOnly);
|
---|
| 201 | int year, month, day, hour, min;
|
---|
| 202 | double sec;
|
---|
| 203 | in >> year >> month >> day >> hour >> min >> sec;
|
---|
| 204 | _startTime.set(year, month, day, hour, min, sec);
|
---|
| 205 | }
|
---|
[3716] | 206 | if (maxLines > 0 && numLines == maxLines) {
|
---|
| 207 | break;
|
---|
| 208 | }
|
---|
| 209 | }
|
---|
| 210 |
|
---|
| 211 | return success;
|
---|
| 212 | }
|
---|
| 213 |
|
---|
[4481] | 214 | // Write Header
|
---|
| 215 | ////////////////////////////////////////////////////////////////////////////
|
---|
| 216 | void t_rnxObsHeader::write(QTextStream* stream,
|
---|
| 217 | const QMap<QString, QString>* txtMap) const {
|
---|
| 218 |
|
---|
[4493] | 219 | QStringList newComments;
|
---|
[5068] | 220 | QString runBy = BNC_CORE->userName();
|
---|
[4481] | 221 |
|
---|
| 222 | if (txtMap) {
|
---|
| 223 | QMapIterator<QString, QString> it(*txtMap);
|
---|
| 224 | while (it.hasNext()) {
|
---|
| 225 | it.next();
|
---|
| 226 | if (it.key() == "RUN BY") {
|
---|
| 227 | runBy = it.value();
|
---|
| 228 | }
|
---|
| 229 | else if (it.key() == "COMMENT") {
|
---|
[4493] | 230 | newComments = it.value().split("\\n", QString::SkipEmptyParts);
|
---|
[4481] | 231 | }
|
---|
| 232 | }
|
---|
| 233 | }
|
---|
| 234 |
|
---|
| 235 | *stream << QString("%1 Observation data Mixed")
|
---|
| 236 | .arg(_version, 9, 'f', 2)
|
---|
| 237 | .leftJustified(60)
|
---|
| 238 | << "RINEX VERSION / TYPE\n";
|
---|
| 239 |
|
---|
| 240 | const QString fmtDate = (_version < 3.0) ? "dd-MMM-yy hh:mm"
|
---|
| 241 | : "yyyyMMdd hhmmss UTC";
|
---|
| 242 | *stream << QString("%1%2%3")
|
---|
[5068] | 243 | .arg(BNC_CORE->pgmName(), -20)
|
---|
[4481] | 244 | .arg(runBy.trimmed().left(20), -20)
|
---|
| 245 | .arg(QDateTime::currentDateTime().toUTC().toString(fmtDate), -20)
|
---|
| 246 | .leftJustified(60)
|
---|
| 247 | << "PGM / RUN BY / DATE\n";
|
---|
| 248 |
|
---|
[4493] | 249 | QStringListIterator itCmnt(_comments + newComments);
|
---|
[4481] | 250 | while (itCmnt.hasNext()) {
|
---|
| 251 | *stream << itCmnt.next().trimmed().left(60).leftJustified(60) << "COMMENT\n";
|
---|
| 252 | }
|
---|
| 253 |
|
---|
| 254 | *stream << QString("%1")
|
---|
| 255 | .arg(_markerName, -60)
|
---|
| 256 | .leftJustified(60)
|
---|
| 257 | << "MARKER NAME\n";
|
---|
| 258 |
|
---|
| 259 | if (!_markerNumber.isEmpty()) {
|
---|
| 260 | *stream << QString("%1")
|
---|
| 261 | .arg(_markerNumber, -20)
|
---|
| 262 | .leftJustified(60)
|
---|
| 263 | << "MARKER NUMBER\n";
|
---|
| 264 | }
|
---|
| 265 |
|
---|
| 266 | *stream << QString("%1%2")
|
---|
[4529] | 267 | .arg(_observer, -20)
|
---|
| 268 | .arg(_agency, -40)
|
---|
[4481] | 269 | .leftJustified(60)
|
---|
| 270 | << "OBSERVER / AGENCY\n";
|
---|
| 271 |
|
---|
| 272 | *stream << QString("%1%2%3")
|
---|
[4529] | 273 | .arg(_receiverNumber, -20)
|
---|
| 274 | .arg(_receiverType, -20)
|
---|
| 275 | .arg(_receiverVersion, -20)
|
---|
[4481] | 276 | .leftJustified(60)
|
---|
| 277 | << "REC # / TYPE / VERS\n";
|
---|
| 278 |
|
---|
| 279 | *stream << QString("%1%2")
|
---|
[4529] | 280 | .arg(_antennaNumber, -20)
|
---|
| 281 | .arg(_antennaName, -20)
|
---|
[4481] | 282 | .leftJustified(60)
|
---|
| 283 | << "ANT # / TYPE\n";
|
---|
| 284 |
|
---|
| 285 | *stream << QString("%1%2%3")
|
---|
| 286 | .arg(_xyz(1), 14, 'f', 4)
|
---|
| 287 | .arg(_xyz(2), 14, 'f', 4)
|
---|
| 288 | .arg(_xyz(3), 14, 'f', 4)
|
---|
| 289 | .leftJustified(60)
|
---|
| 290 | << "APPROX POSITION XYZ\n";
|
---|
| 291 |
|
---|
| 292 | *stream << QString("%1%2%3")
|
---|
| 293 | .arg(_antNEU(3), 14, 'f', 4)
|
---|
| 294 | .arg(_antNEU(2), 14, 'f', 4)
|
---|
| 295 | .arg(_antNEU(1), 14, 'f', 4)
|
---|
| 296 | .leftJustified(60)
|
---|
| 297 | << "ANTENNA: DELTA H/E/N\n";
|
---|
| 298 |
|
---|
| 299 | if (_version < 3.0) {
|
---|
| 300 | int defaultWlFact1 = _wlFactorsL1[1];
|
---|
| 301 | int defaultWlFact2 = _wlFactorsL2[1]; // TODO check all prns
|
---|
| 302 | *stream << QString("%1%2")
|
---|
| 303 | .arg(defaultWlFact1, 6)
|
---|
| 304 | .arg(defaultWlFact2, 6)
|
---|
| 305 | .leftJustified(60)
|
---|
| 306 | << "WAVELENGTH FACT L1/2\n";
|
---|
| 307 | }
|
---|
| 308 |
|
---|
| 309 | *stream << obsTypesStrings().join("");
|
---|
| 310 |
|
---|
[4484] | 311 | if (_interval > 0) {
|
---|
| 312 | *stream << QString("%1")
|
---|
| 313 | .arg(_interval, 10, 'f', 3)
|
---|
| 314 | .leftJustified(60)
|
---|
| 315 | << "INTERVAL\n";
|
---|
| 316 | }
|
---|
[4481] | 317 |
|
---|
| 318 | unsigned year, month, day, hour, min;
|
---|
| 319 | double sec;
|
---|
| 320 | _startTime.civil_date(year, month, day);
|
---|
| 321 | _startTime.civil_time(hour, min, sec);
|
---|
| 322 | *stream << QString("%1%2%3%4%5%6%7")
|
---|
| 323 | .arg(year, 6)
|
---|
| 324 | .arg(month, 6)
|
---|
| 325 | .arg(day, 6)
|
---|
| 326 | .arg(hour, 6)
|
---|
| 327 | .arg(min, 6)
|
---|
| 328 | .arg(sec, 13, 'f', 7)
|
---|
| 329 | .arg("GPS", 8)
|
---|
| 330 | .leftJustified(60)
|
---|
| 331 | << "TIME OF FIRST OBS\n";
|
---|
| 332 |
|
---|
| 333 | *stream << QString()
|
---|
| 334 | .leftJustified(60)
|
---|
| 335 | << "END OF HEADER\n";
|
---|
| 336 | }
|
---|
| 337 |
|
---|
[6119] | 338 | // Number of Different Systems
|
---|
| 339 | ////////////////////////////////////////////////////////////////////////////
|
---|
| 340 | int t_rnxObsHeader::numSys() const {
|
---|
| 341 | return _obsTypes.size();
|
---|
| 342 | }
|
---|
| 343 |
|
---|
[6130] | 344 | //
|
---|
| 345 | ////////////////////////////////////////////////////////////////////////////
|
---|
| 346 | char t_rnxObsHeader::system(int iSys) const {
|
---|
| 347 | int iSysLocal = -1;
|
---|
| 348 | QMapIterator<char, QVector<QString> > it(_obsTypes);
|
---|
| 349 | while (it.hasNext()) {
|
---|
| 350 | ++iSysLocal;
|
---|
| 351 | it.next();
|
---|
| 352 | if (iSysLocal == iSys) {
|
---|
| 353 | return it.key();
|
---|
| 354 | }
|
---|
| 355 | }
|
---|
| 356 | return ' ';
|
---|
| 357 | }
|
---|
| 358 |
|
---|
[3716] | 359 | // Number of Observation Types (satellite-system specific)
|
---|
| 360 | ////////////////////////////////////////////////////////////////////////////
|
---|
[4480] | 361 | int t_rnxObsHeader::nTypes(char sys) const {
|
---|
[6119] | 362 | if (_obsTypes.contains(sys)) {
|
---|
| 363 | return _obsTypes[sys].size();
|
---|
[3716] | 364 | }
|
---|
| 365 | else {
|
---|
[6119] | 366 | return 0;
|
---|
[3716] | 367 | }
|
---|
| 368 | }
|
---|
| 369 |
|
---|
| 370 | // Observation Type (satellite-system specific)
|
---|
| 371 | ////////////////////////////////////////////////////////////////////////////
|
---|
[6126] | 372 | QString t_rnxObsHeader::obsType(char sys, int index, double version) const {
|
---|
| 373 |
|
---|
| 374 | if (version == 0.0) {
|
---|
| 375 | version = _version;
|
---|
| 376 | }
|
---|
[6119] | 377 | if (_obsTypes.contains(sys)) {
|
---|
[6126] | 378 | QString origType = _obsTypes[sys].at(index);
|
---|
| 379 | if (int(version) == int(_version)) {
|
---|
| 380 | return origType;
|
---|
| 381 | }
|
---|
| 382 | else if (int(version) == 2) {
|
---|
| 383 | return t_rnxObsFile::type3to2(origType);
|
---|
| 384 | }
|
---|
| 385 | else if (int(version) == 3) {
|
---|
[6149] | 386 | return t_rnxObsFile::type2to3(origType);
|
---|
[6126] | 387 | }
|
---|
[3716] | 388 | }
|
---|
[6126] | 389 | return "";
|
---|
[3716] | 390 | }
|
---|
| 391 |
|
---|
[4481] | 392 | // Write Observation Types
|
---|
| 393 | ////////////////////////////////////////////////////////////////////////////
|
---|
| 394 | QStringList t_rnxObsHeader::obsTypesStrings() const {
|
---|
| 395 |
|
---|
| 396 | QStringList strList;
|
---|
| 397 |
|
---|
| 398 | if (_version < 3.0) {
|
---|
[6125] | 399 | char sys0 = defaultSystems[0].toAscii();
|
---|
[4481] | 400 | QString hlp;
|
---|
[6125] | 401 | QTextStream(&hlp) << QString("%1").arg(_obsTypes[sys0].size(), 6);
|
---|
| 402 | for (int ii = 0; ii < _obsTypes[sys0].size(); ii++) {
|
---|
| 403 | QTextStream(&hlp) << QString("%1").arg(_obsTypes[sys0][ii], 6);
|
---|
| 404 | if ((ii+1) % 9 == 0 || ii == _obsTypes[sys0].size()-1) {
|
---|
[4481] | 405 | strList.append(hlp.leftJustified(60) + "# / TYPES OF OBSERV\n");
|
---|
| 406 | hlp = QString().leftJustified(6);
|
---|
| 407 | }
|
---|
| 408 | }
|
---|
| 409 | }
|
---|
| 410 | else {
|
---|
[6119] | 411 | QMapIterator<char, QVector<QString> > it(_obsTypes);
|
---|
[4481] | 412 | while (it.hasNext()) {
|
---|
| 413 | it.next();
|
---|
| 414 | char sys = it.key();
|
---|
| 415 | const QVector<QString>& types = it.value();
|
---|
| 416 | QString hlp;
|
---|
| 417 | QTextStream(&hlp) << QString("%1 %2").arg(sys).arg(types.size(), 3);
|
---|
| 418 | for (int ii = 0; ii < types.size(); ii++) {
|
---|
| 419 | QTextStream(&hlp) << QString(" %1").arg(types[ii], -3);
|
---|
| 420 | if ((ii+1) % 13 == 0 || ii == types.size()-1) {
|
---|
| 421 | strList.append(hlp.leftJustified(60) + "SYS / # / OBS TYPES\n");
|
---|
| 422 | hlp = QString().leftJustified(6);
|
---|
| 423 | }
|
---|
| 424 | }
|
---|
| 425 | }
|
---|
| 426 | }
|
---|
| 427 |
|
---|
| 428 | return strList;
|
---|
| 429 | }
|
---|
| 430 |
|
---|
[3716] | 431 | // Constructor
|
---|
| 432 | ////////////////////////////////////////////////////////////////////////////
|
---|
[3843] | 433 | t_rnxObsFile::t_rnxObsFile(const QString& fileName, e_inpOut inpOut) {
|
---|
| 434 | _inpOut = inpOut;
|
---|
[3716] | 435 | _stream = 0;
|
---|
| 436 | _flgPowerFail = false;
|
---|
[3843] | 437 | if (_inpOut == input) {
|
---|
| 438 | openRead(fileName);
|
---|
| 439 | }
|
---|
| 440 | else {
|
---|
[3845] | 441 | openWrite(fileName);
|
---|
[3843] | 442 | }
|
---|
[3716] | 443 | }
|
---|
| 444 |
|
---|
[3845] | 445 | // Open for input
|
---|
[3716] | 446 | ////////////////////////////////////////////////////////////////////////////
|
---|
[3843] | 447 | void t_rnxObsFile::openRead(const QString& fileName) {
|
---|
[3718] | 448 |
|
---|
| 449 | _fileName = fileName; expandEnvVar(_fileName);
|
---|
| 450 | _file = new QFile(_fileName);
|
---|
| 451 | _file->open(QIODevice::ReadOnly | QIODevice::Text);
|
---|
| 452 | _stream = new QTextStream();
|
---|
| 453 | _stream->setDevice(_file);
|
---|
| 454 |
|
---|
[3716] | 455 | _header.read(_stream);
|
---|
| 456 |
|
---|
| 457 | // Guess Observation Interval
|
---|
| 458 | // --------------------------
|
---|
| 459 | if (_header._interval == 0.0) {
|
---|
| 460 | bncTime ttPrev;
|
---|
| 461 | for (int iEpo = 0; iEpo < 10; iEpo++) {
|
---|
| 462 | const t_rnxEpo* rnxEpo = nextEpoch();
|
---|
| 463 | if (!rnxEpo) {
|
---|
[3718] | 464 | throw QString("t_rnxObsFile: not enough epochs");
|
---|
[3716] | 465 | }
|
---|
| 466 | if (iEpo > 0) {
|
---|
| 467 | double dt = rnxEpo->tt - ttPrev;
|
---|
| 468 | if (_header._interval == 0.0 || dt < _header._interval) {
|
---|
| 469 | _header._interval = dt;
|
---|
| 470 | }
|
---|
| 471 | }
|
---|
| 472 | ttPrev = rnxEpo->tt;
|
---|
| 473 | }
|
---|
[3719] | 474 | _stream->seek(0);
|
---|
[3716] | 475 | _header.read(_stream);
|
---|
| 476 | }
|
---|
[3837] | 477 |
|
---|
| 478 | // Time of first observation
|
---|
| 479 | // -------------------------
|
---|
| 480 | if (!_header._startTime.valid()) {
|
---|
| 481 | const t_rnxEpo* rnxEpo = nextEpoch();
|
---|
| 482 | if (!rnxEpo) {
|
---|
| 483 | throw QString("t_rnxObsFile: not enough epochs");
|
---|
| 484 | }
|
---|
| 485 | _header._startTime = rnxEpo->tt;
|
---|
| 486 | _stream->seek(0);
|
---|
| 487 | _header.read(_stream);
|
---|
| 488 | }
|
---|
[3716] | 489 | }
|
---|
| 490 |
|
---|
[3845] | 491 | // Open for output
|
---|
| 492 | ////////////////////////////////////////////////////////////////////////////
|
---|
| 493 | void t_rnxObsFile::openWrite(const QString& fileName) {
|
---|
| 494 |
|
---|
| 495 | _fileName = fileName; expandEnvVar(_fileName);
|
---|
| 496 | _file = new QFile(_fileName);
|
---|
| 497 | _file->open(QIODevice::WriteOnly | QIODevice::Text);
|
---|
| 498 | _stream = new QTextStream();
|
---|
| 499 | _stream->setDevice(_file);
|
---|
| 500 | }
|
---|
| 501 |
|
---|
[3716] | 502 | // Destructor
|
---|
| 503 | ////////////////////////////////////////////////////////////////////////////
|
---|
| 504 | t_rnxObsFile::~t_rnxObsFile() {
|
---|
| 505 | close();
|
---|
| 506 | }
|
---|
| 507 |
|
---|
| 508 | // Close
|
---|
| 509 | ////////////////////////////////////////////////////////////////////////////
|
---|
| 510 | void t_rnxObsFile::close() {
|
---|
| 511 | delete _stream; _stream = 0;
|
---|
[3718] | 512 | delete _file; _file = 0;
|
---|
[3716] | 513 | }
|
---|
| 514 |
|
---|
| 515 | // Handle Special Epoch Flag
|
---|
| 516 | ////////////////////////////////////////////////////////////////////////////
|
---|
[4540] | 517 | void t_rnxObsFile::handleEpochFlag(int flag, const QString& line,
|
---|
| 518 | bool& headerReRead) {
|
---|
[3716] | 519 |
|
---|
[4540] | 520 | headerReRead = false;
|
---|
| 521 |
|
---|
[3716] | 522 | // Power Failure
|
---|
| 523 | // -------------
|
---|
| 524 | if (flag == 1) {
|
---|
| 525 | _flgPowerFail = true;
|
---|
| 526 | }
|
---|
| 527 |
|
---|
| 528 | // Start moving antenna
|
---|
| 529 | // --------------------
|
---|
| 530 | else if (flag == 2) {
|
---|
| 531 | // no action
|
---|
| 532 | }
|
---|
| 533 |
|
---|
| 534 | // Re-Read Header
|
---|
| 535 | // --------------
|
---|
[5468] | 536 | else if (flag == 3 || flag == 4 || flag == 5) {
|
---|
[3716] | 537 | int numLines = 0;
|
---|
| 538 | if (version() < 3.0) {
|
---|
| 539 | readInt(line, 29, 3, numLines);
|
---|
| 540 | }
|
---|
| 541 | else {
|
---|
| 542 | readInt(line, 32, 3, numLines);
|
---|
| 543 | }
|
---|
[5468] | 544 | if (flag == 3 || flag == 4) {
|
---|
| 545 | _header.read(_stream, numLines);
|
---|
| 546 | headerReRead = true;
|
---|
| 547 | }
|
---|
| 548 | else {
|
---|
| 549 | for (int ii = 0; ii < numLines; ii++) {
|
---|
| 550 | _stream->readLine();
|
---|
| 551 | }
|
---|
| 552 | }
|
---|
[3716] | 553 | }
|
---|
| 554 |
|
---|
| 555 | // Unhandled Flag
|
---|
| 556 | // --------------
|
---|
| 557 | else {
|
---|
[3718] | 558 | throw QString("t_rnxObsFile: unhandled flag\n" + line);
|
---|
[3716] | 559 | }
|
---|
| 560 | }
|
---|
| 561 |
|
---|
| 562 | // Retrieve single Epoch
|
---|
| 563 | ////////////////////////////////////////////////////////////////////////////
|
---|
[3994] | 564 | t_rnxObsFile::t_rnxEpo* t_rnxObsFile::nextEpoch() {
|
---|
[3716] | 565 | _currEpo.clear();
|
---|
| 566 | if (version() < 3.0) {
|
---|
| 567 | return nextEpochV2();
|
---|
| 568 | }
|
---|
| 569 | else {
|
---|
| 570 | return nextEpochV3();
|
---|
| 571 | }
|
---|
| 572 | }
|
---|
| 573 |
|
---|
| 574 | // Retrieve single Epoch (RINEX Version 3)
|
---|
| 575 | ////////////////////////////////////////////////////////////////////////////
|
---|
[3994] | 576 | t_rnxObsFile::t_rnxEpo* t_rnxObsFile::nextEpochV3() {
|
---|
[3716] | 577 |
|
---|
[3719] | 578 | while ( _stream->status() == QTextStream::Ok && !_stream->atEnd() ) {
|
---|
[3716] | 579 |
|
---|
[3718] | 580 | QString line = _stream->readLine();
|
---|
[3716] | 581 |
|
---|
[3718] | 582 | if (line.isEmpty()) {
|
---|
[3716] | 583 | continue;
|
---|
| 584 | }
|
---|
| 585 |
|
---|
| 586 | int flag = 0;
|
---|
| 587 | readInt(line, 31, 1, flag);
|
---|
| 588 | if (flag > 0) {
|
---|
[4540] | 589 | bool headerReRead = false;
|
---|
| 590 | handleEpochFlag(flag, line, headerReRead);
|
---|
| 591 | if (headerReRead) {
|
---|
| 592 | continue;
|
---|
| 593 | }
|
---|
[3716] | 594 | }
|
---|
| 595 |
|
---|
[3718] | 596 | QTextStream in(line.mid(1).toAscii(), QIODevice::ReadOnly);
|
---|
[3716] | 597 |
|
---|
| 598 | // Epoch Time
|
---|
| 599 | // ----------
|
---|
| 600 | int year, month, day, hour, min;
|
---|
| 601 | double sec;
|
---|
| 602 | in >> year >> month >> day >> hour >> min >> sec;
|
---|
[3720] | 603 | _currEpo.tt.set(year, month, day, hour, min, sec);
|
---|
[3716] | 604 |
|
---|
| 605 | // Number of Satellites
|
---|
| 606 | // --------------------
|
---|
| 607 | int numSat;
|
---|
| 608 | readInt(line, 32, 3, numSat);
|
---|
| 609 |
|
---|
| 610 | _currEpo.rnxSat.resize(numSat);
|
---|
[6126] | 611 | _currEpo.version = _header._version;
|
---|
[3716] | 612 |
|
---|
| 613 | // Observations
|
---|
| 614 | // ------------
|
---|
| 615 | for (int iSat = 0; iSat < numSat; iSat++) {
|
---|
[3718] | 616 | line = _stream->readLine();
|
---|
[6119] | 617 | t_prn prn; prn.set(line.left(3).toAscii().data());
|
---|
| 618 | _currEpo.rnxSat[iSat].prn = prn;
|
---|
| 619 | char sys = prn.system();
|
---|
[3716] | 620 | for (int iType = 0; iType < _header.nTypes(sys); iType++) {
|
---|
| 621 | int pos = 3 + 16*iType;
|
---|
| 622 | double obsValue = 0.0;
|
---|
| 623 | int lli = 0;
|
---|
| 624 | int snr = 0;
|
---|
| 625 | readDbl(line, pos, 14, obsValue);
|
---|
| 626 | readInt(line, pos + 14, 1, lli);
|
---|
| 627 | readInt(line, pos + 15, 1, snr);
|
---|
| 628 | if (_flgPowerFail) {
|
---|
| 629 | lli |= 1;
|
---|
| 630 | }
|
---|
[6119] | 631 | QString type = obsType(sys, iType);
|
---|
| 632 | _currEpo.rnxSat[iSat].obs[type].value = obsValue;
|
---|
| 633 | _currEpo.rnxSat[iSat].obs[type].lli = lli;
|
---|
| 634 | _currEpo.rnxSat[iSat].obs[type].snr = snr;
|
---|
[3716] | 635 | }
|
---|
| 636 | }
|
---|
| 637 |
|
---|
| 638 | _flgPowerFail = false;
|
---|
| 639 |
|
---|
| 640 | return &_currEpo;
|
---|
| 641 | }
|
---|
| 642 |
|
---|
| 643 | return 0;
|
---|
| 644 | }
|
---|
| 645 |
|
---|
| 646 | // Retrieve single Epoch (RINEX Version 2)
|
---|
| 647 | ////////////////////////////////////////////////////////////////////////////
|
---|
[3994] | 648 | t_rnxObsFile::t_rnxEpo* t_rnxObsFile::nextEpochV2() {
|
---|
[3716] | 649 |
|
---|
[3719] | 650 | while ( _stream->status() == QTextStream::Ok && !_stream->atEnd() ) {
|
---|
[3716] | 651 |
|
---|
[3718] | 652 | QString line = _stream->readLine();
|
---|
[3716] | 653 |
|
---|
[3718] | 654 | if (line.isEmpty()) {
|
---|
[3716] | 655 | continue;
|
---|
| 656 | }
|
---|
| 657 |
|
---|
| 658 | int flag = 0;
|
---|
| 659 | readInt(line, 28, 1, flag);
|
---|
| 660 | if (flag > 0) {
|
---|
[4540] | 661 | bool headerReRead = false;
|
---|
| 662 | handleEpochFlag(flag, line, headerReRead);
|
---|
| 663 | if (headerReRead) {
|
---|
| 664 | continue;
|
---|
| 665 | }
|
---|
[3716] | 666 | }
|
---|
| 667 |
|
---|
[3718] | 668 | QTextStream in(line.toAscii(), QIODevice::ReadOnly);
|
---|
[3716] | 669 |
|
---|
| 670 | // Epoch Time
|
---|
| 671 | // ----------
|
---|
| 672 | int year, month, day, hour, min;
|
---|
| 673 | double sec;
|
---|
| 674 | in >> year >> month >> day >> hour >> min >> sec;
|
---|
| 675 | if (year < 80) {
|
---|
| 676 | year += 2000;
|
---|
| 677 | }
|
---|
| 678 | else if (year < 100) {
|
---|
| 679 | year += 1900;
|
---|
| 680 | }
|
---|
[3720] | 681 | _currEpo.tt.set(year, month, day, hour, min, sec);
|
---|
[3716] | 682 |
|
---|
| 683 | // Number of Satellites
|
---|
| 684 | // --------------------
|
---|
| 685 | int numSat;
|
---|
| 686 | readInt(line, 29, 3, numSat);
|
---|
| 687 |
|
---|
| 688 | _currEpo.rnxSat.resize(numSat);
|
---|
[6126] | 689 | _currEpo.version = _header._version;
|
---|
[3716] | 690 |
|
---|
| 691 | // Read Satellite Numbers
|
---|
| 692 | // ----------------------
|
---|
| 693 | int pos = 32;
|
---|
| 694 | for (int iSat = 0; iSat < numSat; iSat++) {
|
---|
| 695 | if (iSat > 0 && iSat % 12 == 0) {
|
---|
[3718] | 696 | line = _stream->readLine();
|
---|
[3716] | 697 | pos = 32;
|
---|
| 698 | }
|
---|
| 699 |
|
---|
[6119] | 700 | char sys = line.toAscii()[pos];
|
---|
| 701 | int satNum; readInt(line, pos + 1, 2, satNum);
|
---|
| 702 | _currEpo.rnxSat[iSat].prn.set(sys, satNum);
|
---|
| 703 |
|
---|
[3716] | 704 | pos += 3;
|
---|
| 705 | }
|
---|
| 706 |
|
---|
| 707 | // Read Observation Records
|
---|
| 708 | // ------------------------
|
---|
| 709 | for (int iSat = 0; iSat < numSat; iSat++) {
|
---|
[6119] | 710 | char sys = _currEpo.rnxSat[iSat].prn.system();
|
---|
[3718] | 711 | line = _stream->readLine();
|
---|
[3716] | 712 | pos = 0;
|
---|
[6119] | 713 | for (int iType = 0; iType < _header.nTypes(sys); iType++) {
|
---|
[3716] | 714 | if (iType > 0 && iType % 5 == 0) {
|
---|
[3718] | 715 | line = _stream->readLine();
|
---|
[3716] | 716 | pos = 0;
|
---|
| 717 | }
|
---|
| 718 | double obsValue = 0.0;
|
---|
| 719 | int lli = 0;
|
---|
| 720 | int snr = 0;
|
---|
| 721 | readDbl(line, pos, 14, obsValue);
|
---|
| 722 | readInt(line, pos + 14, 1, lli);
|
---|
| 723 | readInt(line, pos + 15, 1, snr);
|
---|
| 724 |
|
---|
| 725 | if (_flgPowerFail) {
|
---|
| 726 | lli |= 1;
|
---|
| 727 | }
|
---|
| 728 |
|
---|
[6119] | 729 | QString type = obsType(sys, iType);
|
---|
| 730 | _currEpo.rnxSat[iSat].obs[type].value = obsValue;
|
---|
| 731 | _currEpo.rnxSat[iSat].obs[type].lli = lli;
|
---|
| 732 | _currEpo.rnxSat[iSat].obs[type].snr = snr;
|
---|
[3716] | 733 |
|
---|
| 734 | pos += 16;
|
---|
| 735 | }
|
---|
| 736 | }
|
---|
| 737 |
|
---|
| 738 | _flgPowerFail = false;
|
---|
| 739 |
|
---|
| 740 | return &_currEpo;
|
---|
| 741 | }
|
---|
| 742 |
|
---|
| 743 | return 0;
|
---|
| 744 | }
|
---|
| 745 |
|
---|
[3844] | 746 | // Set Header Information
|
---|
| 747 | ////////////////////////////////////////////////////////////////////////////
|
---|
[6119] | 748 | void t_rnxObsFile::setHeader(const t_rnxObsHeader& header, double version,
|
---|
| 749 | const QStringList& useObsTypes) {
|
---|
[3956] | 750 |
|
---|
[6120] | 751 | if (version < 3.0) {
|
---|
| 752 | _header._version = t_rnxObsHeader::defaultRnxObsVersion2;
|
---|
[3956] | 753 | }
|
---|
| 754 | else {
|
---|
[6120] | 755 | _header._version = t_rnxObsHeader::defaultRnxObsVersion3;
|
---|
[3956] | 756 | }
|
---|
[3930] | 757 | _header._interval = header._interval;
|
---|
| 758 | _header._antennaNumber = header._antennaNumber;
|
---|
| 759 | _header._antennaName = header._antennaName;
|
---|
| 760 | _header._markerName = header._markerName;
|
---|
| 761 | _header._markerNumber = header._markerNumber;
|
---|
| 762 | _header._antNEU = header._antNEU;
|
---|
| 763 | _header._antXYZ = header._antXYZ;
|
---|
| 764 | _header._antBSG = header._antBSG;
|
---|
| 765 | _header._xyz = header._xyz;
|
---|
| 766 | _header._observer = header._observer;
|
---|
| 767 | _header._agency = header._agency;
|
---|
| 768 | _header._receiverNumber = header._receiverNumber;
|
---|
| 769 | _header._receiverType = header._receiverType;
|
---|
| 770 | _header._receiverVersion = header._receiverVersion;
|
---|
[6119] | 771 | _header._startTime = header._startTime;
|
---|
[5742] | 772 | for (unsigned iPrn = 1; iPrn <= t_prn::MAXPRN_GPS; iPrn++) {
|
---|
[3844] | 773 | _header._wlFactorsL1[iPrn] = header._wlFactorsL1[iPrn];
|
---|
| 774 | _header._wlFactorsL2[iPrn] = header._wlFactorsL2[iPrn];
|
---|
| 775 | }
|
---|
[3956] | 776 |
|
---|
[6119] | 777 | // Set observation types
|
---|
| 778 | // ---------------------
|
---|
| 779 | _header._obsTypes.clear();
|
---|
| 780 | if (useObsTypes.size() == 0) {
|
---|
| 781 | _header._obsTypes = header._obsTypes;
|
---|
[3844] | 782 | }
|
---|
[6119] | 783 | else {
|
---|
| 784 | if (_header._version < 3.0) {
|
---|
[6125] | 785 | char sys0 = t_rnxObsHeader::defaultSystems[0].toAscii();
|
---|
[6119] | 786 | for (int ii = 0; ii < useObsTypes.size(); ii++) {
|
---|
[6125] | 787 | _header._obsTypes[sys0].push_back(useObsTypes[ii]);
|
---|
[3956] | 788 | }
|
---|
[6119] | 789 | for (int ii = 1; ii < t_rnxObsHeader::defaultSystems.length(); ii++) {
|
---|
[6125] | 790 | char sysI = t_rnxObsHeader::defaultSystems[ii].toAscii();
|
---|
| 791 | _header._obsTypes[sysI] = _header._obsTypes[sys0];
|
---|
[6119] | 792 | }
|
---|
[3956] | 793 | }
|
---|
[6119] | 794 | else {
|
---|
| 795 | for (int ii = 0; ii < useObsTypes.size(); ii++) {
|
---|
[6124] | 796 | if (useObsTypes[ii].indexOf(":") != -1) {
|
---|
| 797 | QStringList hlp = useObsTypes[ii].split(":", QString::SkipEmptyParts);
|
---|
| 798 | if (hlp.size() == 2 && hlp[0].length() == 1) {
|
---|
| 799 | char sys = hlp[0][0].toAscii();
|
---|
| 800 | QString type = hlp[1];
|
---|
| 801 | _header._obsTypes[sys].push_back(type);
|
---|
| 802 | }
|
---|
[3965] | 803 | }
|
---|
[6124] | 804 | else {
|
---|
| 805 | QString type = useObsTypes[ii];
|
---|
| 806 | for (int ii = 0; ii < t_rnxObsHeader::defaultSystems.length(); ii++) {
|
---|
| 807 | char sys = t_rnxObsHeader::defaultSystems[ii].toAscii();
|
---|
| 808 | _header._obsTypes[sys].push_back(type);
|
---|
| 809 | }
|
---|
| 810 | }
|
---|
[3965] | 811 | }
|
---|
| 812 | }
|
---|
[3956] | 813 | }
|
---|
[3844] | 814 | }
|
---|
[3845] | 815 |
|
---|
| 816 | // Write Data Epoch
|
---|
| 817 | ////////////////////////////////////////////////////////////////////////////
|
---|
| 818 | void t_rnxObsFile::writeEpoch(const t_rnxEpo* epo) {
|
---|
[3866] | 819 | if (version() < 3.0) {
|
---|
| 820 | return writeEpochV2(epo);
|
---|
| 821 | }
|
---|
| 822 | else {
|
---|
| 823 | return writeEpochV3(epo);
|
---|
| 824 | }
|
---|
| 825 | }
|
---|
[3855] | 826 |
|
---|
[3866] | 827 | // Write Data Epoch (RINEX Version 2)
|
---|
| 828 | ////////////////////////////////////////////////////////////////////////////
|
---|
| 829 | void t_rnxObsFile::writeEpochV2(const t_rnxEpo* epo) {
|
---|
| 830 |
|
---|
[3855] | 831 | unsigned year, month, day, hour, min;
|
---|
| 832 | double sec;
|
---|
| 833 | epo->tt.civil_date(year, month, day);
|
---|
| 834 | epo->tt.civil_time(hour, min, sec);
|
---|
| 835 |
|
---|
| 836 | QString dateStr;
|
---|
[3868] | 837 | QTextStream(&dateStr) << QString(" %1 %2 %3 %4 %5%6")
|
---|
[3856] | 838 | .arg(int(fmod(year, 100)), 2, 10, QChar('0'))
|
---|
[3868] | 839 | .arg(month, 2, 10, QChar('0'))
|
---|
| 840 | .arg(day, 2, 10, QChar('0'))
|
---|
| 841 | .arg(hour, 2, 10, QChar('0'))
|
---|
| 842 | .arg(min, 2, 10, QChar('0'))
|
---|
| 843 | .arg(sec, 11, 'f', 7);
|
---|
[3855] | 844 |
|
---|
[3857] | 845 | int flag = 0;
|
---|
[6123] | 846 | *_stream << dateStr << QString("%1%2").arg(flag, 3).arg(epo->rnxSat.size(), 3);
|
---|
[3858] | 847 | for (unsigned iSat = 0; iSat < epo->rnxSat.size(); iSat++) {
|
---|
[3869] | 848 | const t_rnxSat& rnxSat = epo->rnxSat[iSat];
|
---|
[3858] | 849 | if (iSat > 0 && iSat % 12 == 0) {
|
---|
[3857] | 850 | *_stream << endl << QString().leftJustified(32);
|
---|
| 851 | }
|
---|
[6123] | 852 | *_stream << rnxSat.prn.toString().c_str();
|
---|
[3857] | 853 | }
|
---|
| 854 | *_stream << endl;
|
---|
[3858] | 855 | for (unsigned iSat = 0; iSat < epo->rnxSat.size(); iSat++) {
|
---|
[3967] | 856 |
|
---|
[3858] | 857 | const t_rnxSat& rnxSat = epo->rnxSat[iSat];
|
---|
[6119] | 858 | char sys = rnxSat.prn.system();
|
---|
[3966] | 859 |
|
---|
[6119] | 860 | for (int iType = 0; iType < nTypes(sys); iType++) {
|
---|
| 861 | if (iType > 0 && iType % 5 == 0) {
|
---|
[3967] | 862 | *_stream << endl;
|
---|
| 863 | }
|
---|
[6126] | 864 | QString type = obsType(sys, iType, epo->version);
|
---|
[6119] | 865 | if (!rnxSat.obs.contains(type)) {
|
---|
[3858] | 866 | *_stream << QString().leftJustified(16);
|
---|
| 867 | }
|
---|
| 868 | else {
|
---|
[6119] | 869 | const t_rnxObs& rnxObs = rnxSat.obs[type];
|
---|
[6127] | 870 | if (rnxObs.value == 0.0) {
|
---|
| 871 | *_stream << QString().leftJustified(16);
|
---|
[3979] | 872 | }
|
---|
| 873 | else {
|
---|
[6127] | 874 | *_stream << QString("%1").arg(rnxObs.value, 14, 'f', 3);
|
---|
| 875 | if (rnxObs.lli != 0.0) {
|
---|
| 876 | *_stream << QString("%1").arg(rnxObs.lli,1);
|
---|
| 877 | }
|
---|
| 878 | else {
|
---|
| 879 | *_stream << ' ';
|
---|
| 880 | }
|
---|
| 881 | if (rnxObs.snr != 0.0) {
|
---|
| 882 | *_stream << QString("%1").arg(rnxObs.snr,1);
|
---|
| 883 | }
|
---|
| 884 | else {
|
---|
| 885 | *_stream << ' ';
|
---|
| 886 | }
|
---|
[3979] | 887 | }
|
---|
[3858] | 888 | }
|
---|
| 889 | }
|
---|
| 890 | *_stream << endl;
|
---|
| 891 | }
|
---|
[3845] | 892 | }
|
---|
[3866] | 893 |
|
---|
| 894 | // Write Data Epoch (RINEX Version 3)
|
---|
| 895 | ////////////////////////////////////////////////////////////////////////////
|
---|
| 896 | void t_rnxObsFile::writeEpochV3(const t_rnxEpo* epo) {
|
---|
| 897 |
|
---|
| 898 | unsigned year, month, day, hour, min;
|
---|
| 899 | double sec;
|
---|
| 900 | epo->tt.civil_date(year, month, day);
|
---|
| 901 | epo->tt.civil_time(hour, min, sec);
|
---|
| 902 |
|
---|
[3867] | 903 | QString dateStr;
|
---|
[3868] | 904 | QTextStream(&dateStr) << QString("> %1 %2 %3 %4 %5%6")
|
---|
[3867] | 905 | .arg(year, 4)
|
---|
| 906 | .arg(month, 2, 10, QChar('0'))
|
---|
| 907 | .arg(day, 2, 10, QChar('0'))
|
---|
| 908 | .arg(hour, 2, 10, QChar('0'))
|
---|
| 909 | .arg(min, 2, 10, QChar('0'))
|
---|
| 910 | .arg(sec, 11, 'f', 7);
|
---|
[3866] | 911 |
|
---|
[3867] | 912 | int flag = 0;
|
---|
[6123] | 913 | *_stream << dateStr << QString("%1%2\n").arg(flag, 3).arg(epo->rnxSat.size(), 3);
|
---|
[3867] | 914 |
|
---|
[3869] | 915 | for (unsigned iSat = 0; iSat < epo->rnxSat.size(); iSat++) {
|
---|
| 916 | const t_rnxSat& rnxSat = epo->rnxSat[iSat];
|
---|
[6119] | 917 | char sys = rnxSat.prn.system();
|
---|
[3964] | 918 |
|
---|
[6123] | 919 | *_stream << rnxSat.prn.toString().c_str();
|
---|
[6119] | 920 | for (int iType = 0; iType < nTypes(sys); iType++) {
|
---|
[6126] | 921 | QString type = obsType(sys, iType, epo->version);
|
---|
[6119] | 922 | if (!rnxSat.obs.contains(type)) {
|
---|
[3869] | 923 | *_stream << QString().leftJustified(16);
|
---|
| 924 | }
|
---|
| 925 | else {
|
---|
[6119] | 926 | const t_rnxObs& rnxObs = rnxSat.obs[type];
|
---|
[6127] | 927 | if (rnxObs.value == 0.0) {
|
---|
| 928 | *_stream << QString().leftJustified(16);
|
---|
[3979] | 929 | }
|
---|
| 930 | else {
|
---|
[6127] | 931 | *_stream << QString("%1").arg(rnxObs.value, 14, 'f', 3);
|
---|
| 932 | if (rnxObs.lli != 0.0) {
|
---|
| 933 | *_stream << QString("%1").arg(rnxObs.lli,1);
|
---|
| 934 | }
|
---|
| 935 | else {
|
---|
| 936 | *_stream << ' ';
|
---|
| 937 | }
|
---|
| 938 | if (rnxObs.snr != 0.0) {
|
---|
| 939 | *_stream << QString("%1").arg(rnxObs.snr,1);
|
---|
| 940 | }
|
---|
| 941 | else {
|
---|
| 942 | *_stream << ' ';
|
---|
| 943 | }
|
---|
[3979] | 944 | }
|
---|
[3869] | 945 | }
|
---|
| 946 | }
|
---|
| 947 | *_stream << endl;
|
---|
| 948 | }
|
---|
[3866] | 949 | }
|
---|
[3956] | 950 |
|
---|
| 951 | // Translate Observation Type v2 --> v3
|
---|
| 952 | ////////////////////////////////////////////////////////////////////////////
|
---|
[6149] | 953 | QString t_rnxObsFile::type2to3(const QString& typeV2) {
|
---|
[6147] | 954 | if (typeV2 == "P1") {
|
---|
| 955 | return "C1P";
|
---|
[3956] | 956 | }
|
---|
[6147] | 957 | else if (typeV2 == "P2") {
|
---|
| 958 | return "C2P";
|
---|
[3956] | 959 | }
|
---|
[6147] | 960 | return typeV2;
|
---|
[3956] | 961 | }
|
---|
[3962] | 962 |
|
---|
| 963 | // Translate Observation Type v3 --> v2
|
---|
| 964 | ////////////////////////////////////////////////////////////////////////////
|
---|
| 965 | QString t_rnxObsFile::type3to2(const QString& typeV3) {
|
---|
| 966 | if (typeV3 == "C1P") {
|
---|
| 967 | return "P1";
|
---|
| 968 | }
|
---|
| 969 | else if (typeV3 == "C2P") {
|
---|
| 970 | return "P2";
|
---|
| 971 | }
|
---|
[6147] | 972 | return typeV3.left(2);
|
---|
[3962] | 973 | }
|
---|
[4053] | 974 |
|
---|
[5883] | 975 | // Set Observations from RINEX File
|
---|
| 976 | ////////////////////////////////////////////////////////////////////////////
|
---|
[6137] | 977 | void t_rnxObsFile::setObsFromRnx(const t_rnxObsFile* rnxObsFile, const t_rnxObsFile::t_rnxEpo* epo,
|
---|
| 978 | const t_rnxObsFile::t_rnxSat& rnxSat, t_satObs& obs) {
|
---|
[5883] | 979 |
|
---|
[6137] | 980 | obs._staID = rnxObsFile->markerName().toAscii().constData();
|
---|
| 981 | obs._prn = rnxSat.prn;
|
---|
| 982 | obs._time = epo->tt;
|
---|
[5883] | 983 |
|
---|
[6137] | 984 | char sys = rnxSat.prn.system();
|
---|
[5883] | 985 |
|
---|
[6137] | 986 | for (int iType = 0; iType < rnxObsFile->nTypes(sys); iType++) {
|
---|
| 987 | QString type = rnxObsFile->obsType(sys, iType);
|
---|
[6119] | 988 | if (rnxSat.obs.contains(type)) {
|
---|
| 989 | const t_rnxObs& rnxObs = rnxSat.obs[type];
|
---|
[6137] | 990 | string type2ch(type.mid(1).toAscii().data());
|
---|
| 991 |
|
---|
| 992 |
|
---|
| 993 | t_frqObs* frqObs = 0;
|
---|
| 994 | for (unsigned iFrq = 0; iFrq < obs._obs.size(); iFrq++) {
|
---|
| 995 | if (obs._obs[iFrq]->_rnxType2ch == type2ch) {
|
---|
| 996 | frqObs = obs._obs[iFrq];
|
---|
| 997 | break;
|
---|
| 998 | }
|
---|
[6119] | 999 | }
|
---|
[6137] | 1000 | if (frqObs == 0) {
|
---|
| 1001 | frqObs = new t_frqObs;
|
---|
| 1002 | frqObs->_rnxType2ch = type2ch;
|
---|
| 1003 | obs._obs.push_back(frqObs);
|
---|
[6119] | 1004 | }
|
---|
[6137] | 1005 |
|
---|
| 1006 | switch( type.toAscii().data()[0] ) {
|
---|
| 1007 | case 'C':
|
---|
| 1008 | frqObs->_codeValid = true;
|
---|
| 1009 | frqObs->_code = rnxObs.value;
|
---|
| 1010 | break;
|
---|
| 1011 | case 'L':
|
---|
| 1012 | frqObs->_phaseValid = true;
|
---|
| 1013 | frqObs->_phase = rnxObs.value;
|
---|
| 1014 | frqObs->_slip = (rnxObs.lli & 1);
|
---|
| 1015 | break;
|
---|
| 1016 | case 'D':
|
---|
| 1017 | frqObs->_dopplerValid = true;
|
---|
| 1018 | frqObs->_doppler = rnxObs.value;
|
---|
| 1019 | break;
|
---|
| 1020 | case 'S':
|
---|
| 1021 | frqObs->_snrValid = true;
|
---|
| 1022 | frqObs->_snr = rnxObs.value;
|
---|
| 1023 | break;
|
---|
[6119] | 1024 | }
|
---|
[5883] | 1025 | }
|
---|
[6119] | 1026 | }
|
---|
| 1027 | }
|
---|
| 1028 |
|
---|