[756] | 1 | /* -------------------------------------------------------------------------
|
---|
| 2 | * BKG NTRIP Server
|
---|
| 3 | * -------------------------------------------------------------------------
|
---|
| 4 | *
|
---|
| 5 | * Class: bns
|
---|
| 6 | *
|
---|
| 7 | * Purpose: This class implements the main application behaviour
|
---|
| 8 | *
|
---|
| 9 | * Author: L. Mervart
|
---|
| 10 | *
|
---|
| 11 | * Created: 29-Mar-2008
|
---|
| 12 | *
|
---|
| 13 | * Changes:
|
---|
| 14 | *
|
---|
| 15 | * -----------------------------------------------------------------------*/
|
---|
| 16 |
|
---|
[858] | 17 | #include <math.h>
|
---|
[756] | 18 | #include <iostream>
|
---|
[800] | 19 | #include <newmatio.h>
|
---|
[756] | 20 |
|
---|
| 21 | #include "bns.h"
|
---|
[799] | 22 | #include "bnsutils.h"
|
---|
[847] | 23 | #include "bnsrinex.h"
|
---|
[848] | 24 | #include "bnssp3.h"
|
---|
[1668] | 25 | #include "bnssettings.h"
|
---|
[1838] | 26 | extern "C" {
|
---|
[2493] | 27 | #include "rtcm3torinex.h"
|
---|
[1838] | 28 | }
|
---|
[756] | 29 |
|
---|
| 30 | using namespace std;
|
---|
| 31 |
|
---|
[1838] | 32 | // Error Handling
|
---|
| 33 | ////////////////////////////////////////////////////////////////////////////
|
---|
| 34 | void RTCM3Error(const char*, ...) {
|
---|
| 35 | }
|
---|
| 36 |
|
---|
[756] | 37 | // Constructor
|
---|
| 38 | ////////////////////////////////////////////////////////////////////////////
|
---|
[757] | 39 | t_bns::t_bns(QObject* parent) : QThread(parent) {
|
---|
[760] | 40 |
|
---|
[764] | 41 | this->setTerminationEnabled(true);
|
---|
[828] | 42 |
|
---|
[836] | 43 | connect(this, SIGNAL(moveSocket(QThread*)),
|
---|
| 44 | this, SLOT(slotMoveSocket(QThread*)));
|
---|
| 45 |
|
---|
[1668] | 46 | bnsSettings settings;
|
---|
[979] | 47 |
|
---|
[2461] | 48 | _GPSweek = 0;
|
---|
| 49 | _GPSweeks = 0;
|
---|
| 50 |
|
---|
[979] | 51 | // Set Proxy (application-wide)
|
---|
| 52 | // ----------------------------
|
---|
| 53 | QString proxyHost = settings.value("proxyHost").toString();
|
---|
| 54 | int proxyPort = settings.value("proxyPort").toInt();
|
---|
[980] | 55 |
|
---|
| 56 | QNetworkProxy proxy;
|
---|
| 57 | if (proxyHost.isEmpty()) {
|
---|
| 58 | proxy.setType(QNetworkProxy::NoProxy);
|
---|
| 59 | }
|
---|
| 60 | else {
|
---|
[979] | 61 | proxy.setType(QNetworkProxy::Socks5Proxy);
|
---|
| 62 | proxy.setHostName(proxyHost);
|
---|
| 63 | proxy.setPort(proxyPort);
|
---|
| 64 | }
|
---|
[980] | 65 | QNetworkProxy::setApplicationProxy(proxy);
|
---|
[979] | 66 |
|
---|
[828] | 67 | // Thread that handles broadcast ephemeris
|
---|
| 68 | // ---------------------------------------
|
---|
| 69 | _bnseph = new t_bnseph(parent);
|
---|
[827] | 70 |
|
---|
[1059] | 71 | connect(_bnseph, SIGNAL(newEph(t_eph*, int)),
|
---|
[1058] | 72 | this, SLOT(slotNewEph(t_eph*, int)));
|
---|
[828] | 73 | connect(_bnseph, SIGNAL(newMessage(QByteArray)),
|
---|
| 74 | this, SLOT(slotMessage(const QByteArray)));
|
---|
| 75 | connect(_bnseph, SIGNAL(error(QByteArray)),
|
---|
| 76 | this, SLOT(slotError(const QByteArray)));
|
---|
[760] | 77 |
|
---|
[827] | 78 | // Server listening for rtnet results
|
---|
| 79 | // ----------------------------------
|
---|
[828] | 80 | _clkSocket = 0;
|
---|
[827] | 81 | _clkServer = new QTcpServer;
|
---|
| 82 | _clkServer->listen(QHostAddress::Any, settings.value("clkPort").toInt());
|
---|
[828] | 83 | connect(_clkServer, SIGNAL(newConnection()),this, SLOT(slotNewConnection()));
|
---|
[827] | 84 |
|
---|
[828] | 85 | // Socket and file for outputting the results
|
---|
| 86 | // -------------------------------------------
|
---|
[2349] | 87 | for (int ic = 1; ic <= 10; ic++) {
|
---|
[1069] | 88 | QString mountpoint = settings.value(QString("mountpoint_%1").arg(ic)).toString();
|
---|
[1123] | 89 | QString outFileName = settings.value(QString("outFile_%1").arg(ic)).toString();
|
---|
| 90 | if (!mountpoint.isEmpty() || !outFileName.isEmpty()) {
|
---|
[1698] | 91 | _caster.push_back(new t_bnscaster(mountpoint, outFileName, ic));
|
---|
[1068] | 92 | connect(_caster.back(), SIGNAL(error(const QByteArray)),
|
---|
| 93 | this, SLOT(slotError(const QByteArray)));
|
---|
| 94 | connect(_caster.back(), SIGNAL(newMessage(const QByteArray)),
|
---|
| 95 | this, SLOT(slotMessage(const QByteArray)));
|
---|
| 96 | }
|
---|
[1067] | 97 | }
|
---|
| 98 |
|
---|
[1796] | 99 | // Socket for outputting the Ephemerides
|
---|
| 100 | // -------------------------------------
|
---|
| 101 | QString mountpoint = settings.value("mountpoint_Eph").toString();
|
---|
| 102 | if (mountpoint.isEmpty()) {
|
---|
| 103 | _casterEph = 0;
|
---|
| 104 | }
|
---|
| 105 | else {
|
---|
| 106 | _casterEph = new t_bnscaster(mountpoint);
|
---|
[1800] | 107 | connect(_casterEph, SIGNAL(error(const QByteArray)),
|
---|
[1796] | 108 | this, SLOT(slotError(const QByteArray)));
|
---|
[1800] | 109 | connect(_casterEph, SIGNAL(newMessage(const QByteArray)),
|
---|
[1796] | 110 | this, SLOT(slotMessage(const QByteArray)));
|
---|
| 111 | }
|
---|
| 112 |
|
---|
[1065] | 113 | // Log File
|
---|
| 114 | // --------
|
---|
[983] | 115 | QIODevice::OpenMode oMode;
|
---|
| 116 | if (Qt::CheckState(settings.value("fileAppend").toInt()) == Qt::Checked) {
|
---|
| 117 | oMode = QIODevice::WriteOnly | QIODevice::Unbuffered | QIODevice::Append;
|
---|
| 118 | }
|
---|
| 119 | else {
|
---|
| 120 | oMode = QIODevice::WriteOnly | QIODevice::Unbuffered;
|
---|
| 121 | }
|
---|
| 122 |
|
---|
[816] | 123 | QString logFileName = settings.value("logFile").toString();
|
---|
| 124 | if (logFileName.isEmpty()) {
|
---|
[947] | 125 | _logFile = 0;
|
---|
| 126 | _logStream = 0;
|
---|
[812] | 127 | }
|
---|
[816] | 128 | else {
|
---|
| 129 | _logFile = new QFile(logFileName);
|
---|
[983] | 130 | if (_logFile->open(oMode)) {
|
---|
[816] | 131 | _logStream = new QTextStream(_logFile);
|
---|
| 132 | }
|
---|
[948] | 133 | else {
|
---|
| 134 | _logStream = 0;
|
---|
| 135 | }
|
---|
[816] | 136 | }
|
---|
[847] | 137 |
|
---|
[1072] | 138 | // Echo input from RTNet into a file
|
---|
| 139 | // ---------------------------------
|
---|
| 140 | QString echoFileName = settings.value("inpEcho").toString();
|
---|
| 141 | if (echoFileName.isEmpty()) {
|
---|
| 142 | _echoFile = 0;
|
---|
| 143 | _echoStream = 0;
|
---|
| 144 | }
|
---|
| 145 | else {
|
---|
| 146 | _echoFile = new QFile(echoFileName);
|
---|
| 147 | if (_echoFile->open(oMode)) {
|
---|
| 148 | _echoStream = new QTextStream(_echoFile);
|
---|
| 149 | }
|
---|
| 150 | else {
|
---|
| 151 | _echoStream = 0;
|
---|
| 152 | }
|
---|
| 153 | }
|
---|
| 154 |
|
---|
[847] | 155 | // RINEX writer
|
---|
| 156 | // ------------
|
---|
| 157 | if ( settings.value("rnxPath").toString().isEmpty() ) {
|
---|
| 158 | _rnx = 0;
|
---|
| 159 | }
|
---|
| 160 | else {
|
---|
[850] | 161 | QString prep = "BNS";
|
---|
[857] | 162 | QString ext = ".clk";
|
---|
[850] | 163 | QString path = settings.value("rnxPath").toString();
|
---|
| 164 | QString intr = settings.value("rnxIntr").toString();
|
---|
| 165 | int sampl = settings.value("rnxSampl").toInt();
|
---|
| 166 | _rnx = new bnsRinex(prep, ext, path, intr, sampl);
|
---|
[847] | 167 | }
|
---|
[848] | 168 |
|
---|
| 169 | // SP3 writer
|
---|
| 170 | // ----------
|
---|
| 171 | if ( settings.value("sp3Path").toString().isEmpty() ) {
|
---|
| 172 | _sp3 = 0;
|
---|
| 173 | }
|
---|
| 174 | else {
|
---|
[850] | 175 | QString prep = "BNS";
|
---|
[857] | 176 | QString ext = ".sp3";
|
---|
[850] | 177 | QString path = settings.value("sp3Path").toString();
|
---|
| 178 | QString intr = settings.value("sp3Intr").toString();
|
---|
| 179 | int sampl = settings.value("sp3Sampl").toInt();
|
---|
| 180 | _sp3 = new bnsSP3(prep, ext, path, intr, sampl);
|
---|
[848] | 181 | }
|
---|
[756] | 182 | }
|
---|
| 183 |
|
---|
| 184 | // Destructor
|
---|
| 185 | ////////////////////////////////////////////////////////////////////////////
|
---|
[757] | 186 | t_bns::~t_bns() {
|
---|
[763] | 187 | deleteBnsEph();
|
---|
[769] | 188 | delete _clkServer;
|
---|
[837] | 189 | delete _clkSocket;
|
---|
[1066] | 190 | for (int ic = 0; ic < _caster.size(); ic++) {
|
---|
| 191 | delete _caster.at(ic);
|
---|
| 192 | }
|
---|
[1796] | 193 | delete _casterEph;
|
---|
[816] | 194 | delete _logStream;
|
---|
[812] | 195 | delete _logFile;
|
---|
[1072] | 196 | delete _echoStream;
|
---|
| 197 | delete _echoFile;
|
---|
[779] | 198 | QMapIterator<QString, t_ephPair*> it(_ephList);
|
---|
| 199 | while (it.hasNext()) {
|
---|
| 200 | it.next();
|
---|
| 201 | delete it.value();
|
---|
| 202 | }
|
---|
[849] | 203 | delete _rnx;
|
---|
| 204 | delete _sp3;
|
---|
[756] | 205 | }
|
---|
| 206 |
|
---|
[763] | 207 | // Delete bns thread
|
---|
| 208 | ////////////////////////////////////////////////////////////////////////////
|
---|
| 209 | void t_bns::deleteBnsEph() {
|
---|
| 210 | if (_bnseph) {
|
---|
| 211 | _bnseph->terminate();
|
---|
[764] | 212 | _bnseph->wait(100);
|
---|
[763] | 213 | delete _bnseph;
|
---|
| 214 | _bnseph = 0;
|
---|
| 215 | }
|
---|
| 216 | }
|
---|
| 217 |
|
---|
[756] | 218 | // Write a Program Message
|
---|
| 219 | ////////////////////////////////////////////////////////////////////////////
|
---|
[758] | 220 | void t_bns::slotMessage(const QByteArray msg) {
|
---|
[2617] | 221 |
|
---|
| 222 | QMutexLocker locker(&_mutexmesg);
|
---|
| 223 |
|
---|
[816] | 224 | if (_logStream) {
|
---|
[1217] | 225 | QString txt = QDateTime::currentDateTime().toUTC().toString("yy-MM-dd hh:mm:ss ");
|
---|
| 226 | *_logStream << txt << msg << endl;
|
---|
[818] | 227 | _logStream->flush();
|
---|
[812] | 228 | }
|
---|
[757] | 229 | emit(newMessage(msg));
|
---|
[756] | 230 | }
|
---|
| 231 |
|
---|
[760] | 232 | // Write a Program Message
|
---|
| 233 | ////////////////////////////////////////////////////////////////////////////
|
---|
| 234 | void t_bns::slotError(const QByteArray msg) {
|
---|
[2617] | 235 |
|
---|
| 236 | QMutexLocker locker(&_mutexmesg);
|
---|
| 237 |
|
---|
[816] | 238 | if (_logStream) {
|
---|
| 239 | *_logStream << msg << endl;
|
---|
[818] | 240 | _logStream->flush();
|
---|
[812] | 241 | }
|
---|
[763] | 242 | deleteBnsEph();
|
---|
[760] | 243 | emit(error(msg));
|
---|
| 244 | }
|
---|
| 245 |
|
---|
[769] | 246 | // New Connection
|
---|
| 247 | ////////////////////////////////////////////////////////////////////////////
|
---|
| 248 | void t_bns::slotNewConnection() {
|
---|
[1208] | 249 | //slotMessage("t_bns::slotNewConnection");
|
---|
| 250 | slotMessage("Clocks & orbits port: Waiting for client to connect"); // weber
|
---|
[787] | 251 | delete _clkSocket;
|
---|
[769] | 252 | _clkSocket = _clkServer->nextPendingConnection();
|
---|
| 253 | }
|
---|
| 254 |
|
---|
[784] | 255 | //
|
---|
| 256 | ////////////////////////////////////////////////////////////////////////////
|
---|
[1058] | 257 | void t_bns::slotNewEph(t_eph* ep, int nBytes) {
|
---|
[784] | 258 |
|
---|
| 259 | QMutexLocker locker(&_mutex);
|
---|
| 260 |
|
---|
[1058] | 261 | emit(newEphBytes(nBytes));
|
---|
| 262 |
|
---|
[1801] | 263 | // Output Ephemerides as they are
|
---|
| 264 | // ------------------------------
|
---|
| 265 | if (_casterEph) {
|
---|
[1802] | 266 | _casterEph->open();
|
---|
[1867] | 267 | unsigned char Array[67];
|
---|
| 268 | int size = ep->RTCM3(Array);
|
---|
| 269 | if (size > 0) {
|
---|
| 270 | _casterEph->write((char*) Array, size);
|
---|
| 271 | emit(newOutEphBytes(size));
|
---|
[1803] | 272 | }
|
---|
[1801] | 273 | }
|
---|
| 274 |
|
---|
[784] | 275 | t_ephPair* pair;
|
---|
[884] | 276 | if ( !_ephList.contains(ep->prn()) ) {
|
---|
[784] | 277 | pair = new t_ephPair();
|
---|
[884] | 278 | _ephList.insert(ep->prn(), pair);
|
---|
[784] | 279 | }
|
---|
| 280 | else {
|
---|
[884] | 281 | pair = _ephList[ep->prn()];
|
---|
[784] | 282 | }
|
---|
| 283 |
|
---|
| 284 | if (pair->eph == 0) {
|
---|
| 285 | pair->eph = ep;
|
---|
| 286 | }
|
---|
| 287 | else {
|
---|
[2641] | 288 | if (ep->isNewerThan(pair->eph)) {
|
---|
[784] | 289 | delete pair->oldEph;
|
---|
| 290 | pair->oldEph = pair->eph;
|
---|
| 291 | pair->eph = ep;
|
---|
| 292 | }
|
---|
| 293 | else {
|
---|
| 294 | delete ep;
|
---|
| 295 | }
|
---|
| 296 | }
|
---|
| 297 | }
|
---|
| 298 |
|
---|
[756] | 299 | // Start
|
---|
| 300 | ////////////////////////////////////////////////////////////////////////////
|
---|
[757] | 301 | void t_bns::run() {
|
---|
[769] | 302 |
|
---|
[758] | 303 | slotMessage("============ Start BNS ============");
|
---|
[770] | 304 |
|
---|
[828] | 305 | // Start Thread that retrieves broadcast Ephemeris
|
---|
| 306 | // -----------------------------------------------
|
---|
[758] | 307 | _bnseph->start();
|
---|
[769] | 308 |
|
---|
[770] | 309 | // Endless loop
|
---|
| 310 | // ------------
|
---|
[769] | 311 | while (true) {
|
---|
[836] | 312 |
|
---|
| 313 | if (_clkSocket && _clkSocket->thread() != currentThread()) {
|
---|
| 314 | emit(moveSocket(currentThread()));
|
---|
| 315 | }
|
---|
| 316 |
|
---|
[796] | 317 | if (_clkSocket && _clkSocket->state() == QAbstractSocket::ConnectedState) {
|
---|
| 318 | if ( _clkSocket->canReadLine()) {
|
---|
[2461] | 319 | readRecords();
|
---|
[796] | 320 | }
|
---|
[809] | 321 | else {
|
---|
| 322 | _clkSocket->waitForReadyRead(10);
|
---|
| 323 | }
|
---|
[769] | 324 | }
|
---|
| 325 | else {
|
---|
[794] | 326 | msleep(10);
|
---|
[769] | 327 | }
|
---|
| 328 | }
|
---|
[756] | 329 | }
|
---|
| 330 |
|
---|
[778] | 331 | //
|
---|
| 332 | ////////////////////////////////////////////////////////////////////////////
|
---|
[784] | 333 | void t_bns::readEpoch() {
|
---|
[778] | 334 |
|
---|
[2461] | 335 | QTextStream in(_clkLine);
|
---|
[1670] | 336 |
|
---|
[2461] | 337 | QString hlp;
|
---|
| 338 | in >> hlp >> _year >> _month >> _day >> _hour >> _min >> _sec;
|
---|
[1072] | 339 |
|
---|
[2461] | 340 | GPSweekFromYMDhms(_year, _month, _day, _hour, _min, _sec, _GPSweek, _GPSweeks);
|
---|
| 341 |
|
---|
| 342 | if (_echoStream) {
|
---|
| 343 | *_echoStream << _clkLine;
|
---|
| 344 | _echoStream->flush();
|
---|
[778] | 345 | }
|
---|
[2461] | 346 | emit(newClkBytes(_clkLine.length()));
|
---|
| 347 | }
|
---|
[778] | 348 |
|
---|
[784] | 349 |
|
---|
[2461] | 350 | //
|
---|
| 351 | ////////////////////////////////////////////////////////////////////////////
|
---|
| 352 | void t_bns::readRecords() {
|
---|
[1197] | 353 |
|
---|
[2461] | 354 | bnsSettings settings;
|
---|
[784] | 355 |
|
---|
[2461] | 356 | // Read the first line (if not already read)
|
---|
| 357 | // -----------------------------------------
|
---|
| 358 | if ( _GPSweek == 0 and _clkLine.indexOf('*') == -1 ) {
|
---|
| 359 |
|
---|
| 360 | _clkLine = _clkSocket->readLine();
|
---|
| 361 | // cout << "trying epoch:" << _clkLine.data() << endl;
|
---|
| 362 |
|
---|
| 363 | if (_clkLine.indexOf('*') == -1) {
|
---|
| 364 | return;
|
---|
| 365 | }else{
|
---|
| 366 | readEpoch();
|
---|
| 367 | }
|
---|
| 368 | }
|
---|
[784] | 369 |
|
---|
[1197] | 370 | // Loop over all satellites
|
---|
| 371 | // ------------------------
|
---|
| 372 | QStringList lines;
|
---|
| 373 | for (;;) {
|
---|
| 374 | if (!_clkSocket->canReadLine()) {
|
---|
[1198] | 375 | break;
|
---|
[1197] | 376 | }
|
---|
[2461] | 377 |
|
---|
| 378 | QByteArray tmp = _clkSocket->peek(80);
|
---|
| 379 |
|
---|
| 380 | // found epoch, but not first record, break
|
---|
| 381 | if( tmp.indexOf('*') >= 0 and lines.size() > 0 ) {
|
---|
| 382 | // cout << "find epoch, not first, thus break" << endl;
|
---|
| 383 | break;
|
---|
| 384 | }
|
---|
| 385 |
|
---|
[1197] | 386 | _clkLine = _clkSocket->readLine();
|
---|
[2461] | 387 |
|
---|
| 388 | // found epoch, but still first record, continue
|
---|
[1197] | 389 | if (_clkLine[0] == '*') {
|
---|
[2461] | 390 | // cout << "epoch:" << _clkLine.data();
|
---|
| 391 | readEpoch();
|
---|
[1197] | 392 | }
|
---|
[2461] | 393 |
|
---|
[1197] | 394 | if (_clkLine[0] == 'P') {
|
---|
[2461] | 395 | // cout << "data:" << _clkLine.data();
|
---|
[1197] | 396 | _clkLine.remove(0,1);
|
---|
| 397 | lines.push_back(_clkLine);
|
---|
[2461] | 398 | }
|
---|
| 399 |
|
---|
| 400 | if (_echoStream) {
|
---|
| 401 | *_echoStream << _clkLine;
|
---|
| 402 | _echoStream->flush();
|
---|
| 403 | }
|
---|
| 404 |
|
---|
[1197] | 405 | }
|
---|
| 406 |
|
---|
[2461] | 407 | // some data records to be processed ?
|
---|
[1197] | 408 | if (lines.size() > 0) {
|
---|
| 409 |
|
---|
[922] | 410 | QStringList prns;
|
---|
| 411 |
|
---|
[1066] | 412 | for (int ic = 0; ic < _caster.size(); ic++) {
|
---|
| 413 | _caster.at(ic)->open();
|
---|
[927] | 414 |
|
---|
[2767] | 415 | struct ClockOrbit co;
|
---|
| 416 | memset(&co, 0, sizeof(co));
|
---|
| 417 | co.GPSEpochTime = (int)_GPSweeks;
|
---|
| 418 | co.GLONASSEpochTime = (int)fmod(_GPSweeks, 86400.0)
|
---|
| 419 | + 3 * 3600 - gnumleap(_year, _month, _day);
|
---|
| 420 | co.ClockDataSupplied = 1;
|
---|
| 421 | co.OrbitDataSupplied = 1;
|
---|
| 422 | co.SatRefDatum = DATUM_ITRF;
|
---|
[1066] | 423 |
|
---|
[2767] | 424 | struct Bias bias;
|
---|
| 425 | memset(&bias, 0, sizeof(bias));
|
---|
| 426 | bias.GPSEpochTime = (int)_GPSweeks;
|
---|
| 427 | bias.GLONASSEpochTime = (int)fmod(_GPSweeks, 86400.0)
|
---|
[2461] | 428 | + 3 * 3600 - gnumleap(_year, _month, _day);
|
---|
[2291] | 429 |
|
---|
[2767] | 430 | for (int ii = 0; ii < lines.size(); ii++) {
|
---|
[1197] | 431 |
|
---|
[2767] | 432 | QString prn;
|
---|
| 433 | ColumnVector xx(14); xx = 0.0;
|
---|
| 434 | t_ephPair* pair = 0;
|
---|
[1066] | 435 |
|
---|
[2767] | 436 | if (ic == 0) {
|
---|
| 437 | QTextStream in(lines[ii].toAscii());
|
---|
| 438 | in >> prn;
|
---|
| 439 | prns << prn;
|
---|
| 440 | if ( _ephList.contains(prn) ) {
|
---|
| 441 | in >> xx(1) >> xx(2) >> xx(3) >> xx(4) >> xx(5)
|
---|
| 442 | >> xx(6) >> xx(7) >> xx(8) >> xx(9) >> xx(10)
|
---|
| 443 | >> xx(11) >> xx(12) >> xx(13) >> xx(14);
|
---|
| 444 | xx(1) *= 1e3; // x-crd
|
---|
| 445 | xx(2) *= 1e3; // y-crd
|
---|
| 446 | xx(3) *= 1e3; // z-crd
|
---|
| 447 | xx(4) *= 1e-6; // clk
|
---|
| 448 | xx(5) *= 1e-6; // rel. corr.
|
---|
| 449 | // xx(6), xx(7), xx(8) ... PhaseCent - CoM
|
---|
| 450 | // xx(9) ... P1-C1 DCB in meters
|
---|
| 451 | // xx(10) ... P1-P2 DCB in meters
|
---|
| 452 | // xx(11) ... dT
|
---|
| 453 | xx(12) *= 1e3; // x-crd at time + dT
|
---|
| 454 | xx(13) *= 1e3; // y-crd at time + dT
|
---|
| 455 | xx(14) *= 1e3; // z-crd at time + dT
|
---|
[1670] | 456 |
|
---|
[2767] | 457 | pair = _ephList[prn];
|
---|
| 458 | pair->xx = xx;
|
---|
[872] | 459 | }
|
---|
[2767] | 460 | }
|
---|
| 461 | else {
|
---|
| 462 | prn = prns[ii];
|
---|
| 463 | if ( _ephList.contains(prn) ) {
|
---|
| 464 | pair = _ephList[prn];
|
---|
| 465 | xx = pair->xx;
|
---|
[873] | 466 | }
|
---|
[2767] | 467 | }
|
---|
[2291] | 468 |
|
---|
[2768] | 469 | // Use old ephemeris if the new one is too recent
|
---|
| 470 | // ----------------------------------------------
|
---|
[2767] | 471 | t_eph* ep = 0;
|
---|
| 472 | if (pair) {
|
---|
| 473 | ep = pair->eph;
|
---|
[2768] | 474 | if (pair->oldEph && ep &&
|
---|
| 475 | ep->receptDateTime().secsTo(QDateTime::currentDateTime()) < 60) {
|
---|
| 476 | ep = pair->oldEph;
|
---|
| 477 | }
|
---|
[2767] | 478 | }
|
---|
| 479 |
|
---|
| 480 | if (ep != 0) {
|
---|
| 481 | struct ClockOrbit::SatData* sd = 0;
|
---|
| 482 | if (prn[0] == 'G') {
|
---|
| 483 | sd = co.Sat + co.NumberOfGPSSat;
|
---|
| 484 | ++co.NumberOfGPSSat;
|
---|
| 485 | }
|
---|
| 486 | else if (prn[0] == 'R') {
|
---|
| 487 | sd = co.Sat + CLOCKORBIT_NUMGPS + co.NumberOfGLONASSSat;
|
---|
| 488 | ++co.NumberOfGLONASSSat;
|
---|
| 489 | }
|
---|
| 490 | if (sd) {
|
---|
| 491 | QString outLine;
|
---|
| 492 | processSatellite(ic, _caster.at(ic)->crdTrafo(),
|
---|
| 493 | _caster.at(ic)->CoM(), ep,
|
---|
| 494 | _GPSweek, _GPSweeks, prn, xx, sd, outLine);
|
---|
| 495 | _caster.at(ic)->printAscii(outLine);
|
---|
| 496 | }
|
---|
| 497 |
|
---|
| 498 | struct Bias::BiasSat* biasSat = 0;
|
---|
| 499 | if (prn[0] == 'G') {
|
---|
| 500 | biasSat = bias.Sat + bias.NumberOfGPSSat;
|
---|
| 501 | ++bias.NumberOfGPSSat;
|
---|
| 502 | }
|
---|
| 503 | else if (prn[0] == 'R') {
|
---|
| 504 | biasSat = bias.Sat + CLOCKORBIT_NUMGPS + bias.NumberOfGLONASSSat;
|
---|
| 505 | ++bias.NumberOfGLONASSSat;
|
---|
| 506 | }
|
---|
| 507 |
|
---|
| 508 | // Coefficient of Ionosphere-Free LC
|
---|
| 509 | // ---------------------------------
|
---|
| 510 | const static double a_L1_GPS = 2.54572778;
|
---|
| 511 | const static double a_L2_GPS = -1.54572778;
|
---|
| 512 | const static double a_L1_Glo = 2.53125000;
|
---|
| 513 | const static double a_L2_Glo = -1.53125000;
|
---|
| 514 |
|
---|
| 515 | if (biasSat) {
|
---|
| 516 | biasSat->ID = prn.mid(1).toInt();
|
---|
| 517 | biasSat->NumberOfCodeBiases = 3;
|
---|
[2291] | 518 | if (prn[0] == 'G') {
|
---|
[2767] | 519 | biasSat->Biases[0].Type = CODETYPEGPS_L1_Z;
|
---|
| 520 | biasSat->Biases[0].Bias = - a_L2_GPS * xx(10);
|
---|
| 521 | biasSat->Biases[1].Type = CODETYPEGPS_L1_CA;
|
---|
| 522 | biasSat->Biases[1].Bias = - a_L2_GPS * xx(10) + xx(9);
|
---|
| 523 | biasSat->Biases[2].Type = CODETYPEGPS_L2_Z;
|
---|
| 524 | biasSat->Biases[2].Bias = a_L1_GPS * xx(10);
|
---|
[2291] | 525 | }
|
---|
[2427] | 526 | else if (prn[0] == 'R') {
|
---|
[2767] | 527 | biasSat->Biases[0].Type = CODETYPEGLONASS_L1_P;
|
---|
| 528 | biasSat->Biases[0].Bias = - a_L2_Glo * xx(10);
|
---|
| 529 | biasSat->Biases[1].Type = CODETYPEGLONASS_L1_CA;
|
---|
| 530 | biasSat->Biases[1].Bias = - a_L2_Glo * xx(10) + xx(9);
|
---|
| 531 | biasSat->Biases[2].Type = CODETYPEGLONASS_L2_P;
|
---|
| 532 | biasSat->Biases[2].Bias = a_L1_Glo * xx(10);
|
---|
[2427] | 533 | }
|
---|
[1066] | 534 | }
|
---|
[873] | 535 | }
|
---|
[2767] | 536 | }
|
---|
[1066] | 537 |
|
---|
[2767] | 538 | if ( _caster.at(ic)->usedSocket() &&
|
---|
| 539 | (co.NumberOfGPSSat > 0 || co.NumberOfGLONASSSat > 0) ) {
|
---|
| 540 | char obuffer[CLOCKORBIT_BUFFERSIZE];
|
---|
[2047] | 541 |
|
---|
[2767] | 542 | int len = MakeClockOrbit(&co, COTYPE_AUTO, 0, obuffer, sizeof(obuffer));
|
---|
| 543 | if (len > 0) {
|
---|
| 544 | if (_caster.at(ic)->ic() == 1) { emit(newOutBytes1(len));}
|
---|
| 545 | if (_caster.at(ic)->ic() == 2) { emit(newOutBytes2(len));}
|
---|
| 546 | if (_caster.at(ic)->ic() == 3) { emit(newOutBytes3(len));}
|
---|
| 547 | if (_caster.at(ic)->ic() == 4) { emit(newOutBytes4(len));}
|
---|
| 548 | if (_caster.at(ic)->ic() == 5) { emit(newOutBytes5(len));}
|
---|
| 549 | if (_caster.at(ic)->ic() == 6) { emit(newOutBytes6(len));}
|
---|
| 550 | if (_caster.at(ic)->ic() == 7) { emit(newOutBytes7(len));}
|
---|
| 551 | if (_caster.at(ic)->ic() == 8) { emit(newOutBytes8(len));}
|
---|
| 552 | if (_caster.at(ic)->ic() == 9) { emit(newOutBytes9(len));}
|
---|
| 553 | if (_caster.at(ic)->ic() == 10) { emit(newOutBytes10(len));}
|
---|
| 554 | _caster.at(ic)->write(obuffer, len);
|
---|
[872] | 555 | }
|
---|
[2767] | 556 | }
|
---|
[2291] | 557 |
|
---|
[2767] | 558 | if ( _caster.at(ic)->usedSocket() &&
|
---|
| 559 | (bias.NumberOfGPSSat > 0 || bias.NumberOfGLONASSSat > 0) ) {
|
---|
| 560 | char obuffer[CLOCKORBIT_BUFFERSIZE];
|
---|
| 561 | int len = MakeBias(&bias, BTYPE_AUTO, 0, obuffer, sizeof(obuffer));
|
---|
| 562 | if (len > 0) {
|
---|
| 563 | _caster.at(ic)->write(obuffer, len);
|
---|
[2291] | 564 | }
|
---|
[863] | 565 | }
|
---|
| 566 | }
|
---|
[780] | 567 | }
|
---|
[778] | 568 | }
|
---|
[784] | 569 |
|
---|
| 570 | //
|
---|
| 571 | ////////////////////////////////////////////////////////////////////////////
|
---|
[2767] | 572 | void t_bns::processSatellite(int iCaster, const QString trafo,
|
---|
[2046] | 573 | bool CoM, t_eph* ep, int GPSweek,
|
---|
[1733] | 574 | double GPSweeks, const QString& prn,
|
---|
[1066] | 575 | const ColumnVector& xx,
|
---|
[1065] | 576 | struct ClockOrbit::SatData* sd,
|
---|
| 577 | QString& outLine) {
|
---|
[784] | 578 |
|
---|
[2294] | 579 | const double secPerWeek = 7.0 * 86400.0;
|
---|
[799] | 580 |
|
---|
[2294] | 581 | ColumnVector rsw(3);
|
---|
| 582 | ColumnVector rsw2(3);
|
---|
| 583 | double dClk;
|
---|
[799] | 584 |
|
---|
[2294] | 585 | for (int ii = 1; ii <= 2; ++ii) {
|
---|
[2046] | 586 |
|
---|
[2294] | 587 | int GPSweek12 = GPSweek;
|
---|
| 588 | double GPSweeks12 = GPSweeks;
|
---|
| 589 | if (ii == 2) {
|
---|
| 590 | GPSweeks12 += xx(11);
|
---|
| 591 | if (GPSweeks12 > secPerWeek) {
|
---|
| 592 | GPSweek12 += 1;
|
---|
| 593 | GPSweeks12 -= secPerWeek;
|
---|
| 594 | }
|
---|
| 595 | }
|
---|
[2046] | 596 |
|
---|
[2294] | 597 | ColumnVector xB(4);
|
---|
| 598 | ColumnVector vv(3);
|
---|
| 599 |
|
---|
| 600 | ep->position(GPSweek12, GPSweeks12, xB, vv);
|
---|
| 601 |
|
---|
| 602 | ColumnVector xyz;
|
---|
| 603 | if (ii == 1) {
|
---|
| 604 | xyz = xx.Rows(1,3);
|
---|
| 605 | }
|
---|
| 606 | else {
|
---|
| 607 | xyz = xx.Rows(12,14);
|
---|
| 608 | }
|
---|
| 609 |
|
---|
| 610 | // Correction Center of Mass -> Antenna Phase Center
|
---|
| 611 | // -------------------------------------------------
|
---|
| 612 | if (! CoM) {
|
---|
| 613 | xyz(1) += xx(6);
|
---|
| 614 | xyz(2) += xx(7);
|
---|
| 615 | xyz(3) += xx(8);
|
---|
| 616 | }
|
---|
| 617 |
|
---|
| 618 | if (trafo != "IGS05") {
|
---|
| 619 | crdTrafo(GPSweek12, xyz, trafo);
|
---|
| 620 | }
|
---|
| 621 |
|
---|
[2418] | 622 | ColumnVector dx = xB.Rows(1,3) - xyz ;
|
---|
[2294] | 623 |
|
---|
| 624 | if (ii == 1) {
|
---|
| 625 | XYZ_to_RSW(xB.Rows(1,3), vv, dx, rsw);
|
---|
[2417] | 626 | dClk = (xx(4) + xx(5) - xB(4)) * 299792458.0;
|
---|
[2294] | 627 | }
|
---|
| 628 | else {
|
---|
| 629 | XYZ_to_RSW(xB.Rows(1,3), vv, dx, rsw2);
|
---|
| 630 | }
|
---|
[984] | 631 | }
|
---|
[927] | 632 |
|
---|
[863] | 633 | if (sd) {
|
---|
| 634 | sd->ID = prn.mid(1).toInt();
|
---|
[884] | 635 | sd->IOD = ep->IOD();
|
---|
[862] | 636 | sd->Clock.DeltaA0 = dClk;
|
---|
| 637 | sd->Orbit.DeltaRadial = rsw(1);
|
---|
| 638 | sd->Orbit.DeltaAlongTrack = rsw(2);
|
---|
| 639 | sd->Orbit.DeltaCrossTrack = rsw(3);
|
---|
[2294] | 640 | sd->Orbit.DotDeltaRadial = (rsw2(1) - rsw(1)) / xx(11);
|
---|
| 641 | sd->Orbit.DotDeltaAlongTrack = (rsw2(2) - rsw(2)) / xx(11);
|
---|
| 642 | sd->Orbit.DotDeltaCrossTrack = (rsw2(3) - rsw(3)) / xx(11);
|
---|
[863] | 643 | }
|
---|
[862] | 644 |
|
---|
[2767] | 645 | outLine.sprintf("%d %.1f %s %3d %10.3f %8.3f %8.3f %8.3f\n",
|
---|
| 646 | GPSweek, GPSweeks, ep->prn().toAscii().data(),
|
---|
[2046] | 647 | ep->IOD(), dClk, rsw(1), rsw(2), rsw(3));
|
---|
[1065] | 648 |
|
---|
[2767] | 649 | if (iCaster == 0) {
|
---|
[923] | 650 | if (_rnx) {
|
---|
| 651 | _rnx->write(GPSweek, GPSweeks, prn, xx);
|
---|
| 652 | }
|
---|
| 653 | if (_sp3) {
|
---|
| 654 | _sp3->write(GPSweek, GPSweeks, prn, xx);
|
---|
| 655 | }
|
---|
[847] | 656 | }
|
---|
[784] | 657 | }
|
---|
[836] | 658 |
|
---|
| 659 | //
|
---|
| 660 | ////////////////////////////////////////////////////////////////////////////
|
---|
| 661 | void t_bns::slotMoveSocket(QThread* tt) {
|
---|
| 662 | _clkSocket->setParent(0);
|
---|
| 663 | _clkSocket->moveToThread(tt);
|
---|
[1209] | 664 | //slotMessage("bns::slotMoveSocket");
|
---|
| 665 | slotMessage("Clocks & orbits port: Socket moved to thread"); // weber
|
---|
[836] | 666 | }
|
---|
[984] | 667 |
|
---|
[1772] | 668 | // Transform Coordinates
|
---|
[984] | 669 | ////////////////////////////////////////////////////////////////////////////
|
---|
[1772] | 670 | void t_bns::crdTrafo(int GPSWeek, ColumnVector& xyz, const QString trafo) {
|
---|
[984] | 671 |
|
---|
[1772] | 672 | bnsSettings settings;
|
---|
| 673 |
|
---|
| 674 | if (trafo == "ETRF2000") {
|
---|
[2333] | 675 | _dx = 0.0541;
|
---|
| 676 | _dy = 0.0502;
|
---|
| 677 | _dz = -0.0538;
|
---|
| 678 | _dxr = -0.0002;
|
---|
| 679 | _dyr = 0.0001;
|
---|
| 680 | _dzr = -0.0018;
|
---|
[1776] | 681 | _ox = 0.000891;
|
---|
| 682 | _oy = 0.005390;
|
---|
| 683 | _oz = -0.008712;
|
---|
| 684 | _oxr = 0.000081;
|
---|
| 685 | _oyr = 0.000490;
|
---|
| 686 | _ozr = -0.000792;
|
---|
[2333] | 687 | _sc = 0.40;
|
---|
| 688 | _scr = 0.08;
|
---|
| 689 | _t0 = 2000.0;
|
---|
[1772] | 690 | }
|
---|
[2327] | 691 | else if (trafo == "NAD83") {
|
---|
[2335] | 692 | _dx = 0.9963;
|
---|
| 693 | _dy = -1.9024;
|
---|
| 694 | _dz = -0.5210;
|
---|
| 695 | _dxr = 0.0005;
|
---|
| 696 | _dyr = -0.0006;
|
---|
| 697 | _dzr = -0.0013;
|
---|
[2333] | 698 | _ox = 0.025915;
|
---|
| 699 | _oy = 0.009426;
|
---|
| 700 | _oz = 0.011599;
|
---|
| 701 | _oxr = 0.000067;
|
---|
| 702 | _oyr = -0.000757;
|
---|
| 703 | _ozr = -0.000051;
|
---|
[2335] | 704 | _sc = 0.78;
|
---|
| 705 | _scr = -0.10;
|
---|
[2333] | 706 | _t0 = 1997.0;
|
---|
[2327] | 707 | }
|
---|
[2333] | 708 | else if (trafo == "GDA94") {
|
---|
[2851] | 709 | _dx = -0.07973;
|
---|
| 710 | _dy = -0.00686;
|
---|
| 711 | _dz = 0.03803;
|
---|
[2852] | 712 | _dxr = 0.00225;
|
---|
[2851] | 713 | _dyr = -0.00062;
|
---|
| 714 | _dzr = -0.00056;
|
---|
[2855] | 715 | _ox = 0.0000351;
|
---|
| 716 | _oy = -0.0021211;
|
---|
| 717 | _oz = -0.0021411;
|
---|
| 718 | _oxr = -0.0014707;
|
---|
| 719 | _oyr = -0.0011443;
|
---|
| 720 | _ozr = -0.0011701;
|
---|
[2851] | 721 | _sc = 6.636;
|
---|
| 722 | _scr = 0.294;
|
---|
| 723 | _t0 = 1994.0;
|
---|
[2333] | 724 | }
|
---|
[2347] | 725 | else if (trafo == "SIRGAS2000") {
|
---|
[2350] | 726 | _dx = -0.0051;
|
---|
| 727 | _dy = -0.0065;
|
---|
| 728 | _dz = -0.0099;
|
---|
[2347] | 729 | _dxr = 0.0000;
|
---|
| 730 | _dyr = 0.0000;
|
---|
| 731 | _dzr = 0.0000;
|
---|
| 732 | _ox = 0.000150;
|
---|
| 733 | _oy = 0.000020;
|
---|
| 734 | _oz = 0.000021;
|
---|
| 735 | _oxr = 0.000000;
|
---|
| 736 | _oyr = 0.000000;
|
---|
| 737 | _ozr = 0.000000;
|
---|
| 738 | _sc = 0.000;
|
---|
| 739 | _scr = 0.000;
|
---|
| 740 | _t0 = 0000.0;
|
---|
| 741 | }
|
---|
[2359] | 742 | else if (trafo == "SIRGAS95") {
|
---|
| 743 | _dx = 0.0077;
|
---|
| 744 | _dy = 0.0058;
|
---|
| 745 | _dz = -0.0138;
|
---|
| 746 | _dxr = 0.0000;
|
---|
| 747 | _dyr = 0.0000;
|
---|
| 748 | _dzr = 0.0000;
|
---|
| 749 | _ox = 0.000000;
|
---|
| 750 | _oy = 0.000000;
|
---|
[2361] | 751 | _oz = -0.000030;
|
---|
[2359] | 752 | _oxr = 0.000000;
|
---|
| 753 | _oyr = 0.000000;
|
---|
| 754 | _ozr = 0.000000;
|
---|
[2361] | 755 | _sc = 1.570;
|
---|
[2359] | 756 | _scr = 0.000;
|
---|
[2369] | 757 | _t0 = 0000.0;
|
---|
[2359] | 758 | }
|
---|
[1772] | 759 | else if (trafo == "Custom") {
|
---|
[1776] | 760 | _dx = settings.value("trafo_dx").toDouble();
|
---|
| 761 | _dy = settings.value("trafo_dy").toDouble();
|
---|
| 762 | _dz = settings.value("trafo_dz").toDouble();
|
---|
| 763 | _dxr = settings.value("trafo_dxr").toDouble();
|
---|
| 764 | _dyr = settings.value("trafo_dyr").toDouble();
|
---|
| 765 | _dzr = settings.value("trafo_dzr").toDouble();
|
---|
| 766 | _ox = settings.value("trafo_ox").toDouble();
|
---|
| 767 | _oy = settings.value("trafo_oy").toDouble();
|
---|
| 768 | _oz = settings.value("trafo_oz").toDouble();
|
---|
| 769 | _oxr = settings.value("trafo_oxr").toDouble();
|
---|
| 770 | _oyr = settings.value("trafo_oyr").toDouble();
|
---|
| 771 | _ozr = settings.value("trafo_ozr").toDouble();
|
---|
| 772 | _sc = settings.value("trafo_sc").toDouble();
|
---|
| 773 | _scr = settings.value("trafo_scr").toDouble();
|
---|
| 774 | _t0 = settings.value("trafo_t0").toDouble();
|
---|
[1772] | 775 | }
|
---|
| 776 |
|
---|
[1243] | 777 | // Current epoch minus 2000.0 in years
|
---|
| 778 | // ------------------------------------
|
---|
[1772] | 779 | double dt = (GPSWeek - (1042.0+6.0/7.0)) / 365.2422 * 7.0 + 2000.0 - _t0;
|
---|
[1243] | 780 |
|
---|
[985] | 781 | ColumnVector dx(3);
|
---|
[1243] | 782 |
|
---|
[1772] | 783 | dx(1) = _dx + dt * _dxr;
|
---|
| 784 | dx(2) = _dy + dt * _dyr;
|
---|
| 785 | dx(3) = _dz + dt * _dzr;
|
---|
| 786 |
|
---|
[1100] | 787 | static const double arcSec = 180.0 * 3600.0 / M_PI;
|
---|
[984] | 788 |
|
---|
[1772] | 789 | double ox = (_ox + dt * _oxr) / arcSec;
|
---|
| 790 | double oy = (_oy + dt * _oyr) / arcSec;
|
---|
| 791 | double oz = (_oz + dt * _ozr) / arcSec;
|
---|
[1243] | 792 |
|
---|
[1772] | 793 | double sc = 1.0 + _sc * 1e-9 + dt * _scr * 1e-9;
|
---|
| 794 |
|
---|
[1245] | 795 | Matrix rMat(3,3);
|
---|
| 796 | rMat(1,1) = 1.0;
|
---|
[985] | 797 | rMat(1,2) = -oz;
|
---|
| 798 | rMat(1,3) = oy;
|
---|
| 799 | rMat(2,1) = oz;
|
---|
[1245] | 800 | rMat(2,2) = 1.0;
|
---|
[985] | 801 | rMat(2,3) = -ox;
|
---|
| 802 | rMat(3,1) = -oy;
|
---|
| 803 | rMat(3,2) = ox;
|
---|
[1245] | 804 | rMat(3,3) = 1.0;
|
---|
[985] | 805 |
|
---|
[1245] | 806 | xyz = sc * rMat * xyz + dx;
|
---|
[984] | 807 | }
|
---|