[866] | 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: RTCM3coDecoder
|
---|
| 30 | *
|
---|
| 31 | * Purpose: RTCM3 Clock Orbit Decoder
|
---|
| 32 | *
|
---|
| 33 | * Author: L. Mervart
|
---|
| 34 | *
|
---|
| 35 | * Created: 05-May-2008
|
---|
| 36 | *
|
---|
[6215] | 37 | * Changes:
|
---|
[866] | 38 | *
|
---|
| 39 | * -----------------------------------------------------------------------*/
|
---|
| 40 |
|
---|
[868] | 41 | #include <stdio.h>
|
---|
[920] | 42 | #include <math.h>
|
---|
[868] | 43 |
|
---|
[866] | 44 | #include "RTCM3coDecoder.h"
|
---|
[918] | 45 | #include "bncutils.h"
|
---|
[934] | 46 | #include "bncrinex.h"
|
---|
[5070] | 47 | #include "bnccore.h"
|
---|
[1535] | 48 | #include "bncsettings.h"
|
---|
[4428] | 49 | #include "bnctime.h"
|
---|
[866] | 50 |
|
---|
| 51 | using namespace std;
|
---|
| 52 |
|
---|
| 53 | // Constructor
|
---|
| 54 | ////////////////////////////////////////////////////////////////////////////
|
---|
[9049] | 55 | RTCM3coDecoder::RTCM3coDecoder(const QString& staID) {
|
---|
[934] | 56 |
|
---|
[970] | 57 | _staID = staID;
|
---|
| 58 |
|
---|
[934] | 59 | // File Output
|
---|
| 60 | // -----------
|
---|
[1535] | 61 | bncSettings settings;
|
---|
[934] | 62 | QString path = settings.value("corrPath").toString();
|
---|
| 63 | if (!path.isEmpty()) {
|
---|
| 64 | expandEnvVar(path);
|
---|
| 65 | if ( path.length() > 0 && path[path.length()-1] != QDir::separator() ) {
|
---|
| 66 | path += QDir::separator();
|
---|
| 67 | }
|
---|
[970] | 68 | _fileNameSkl = path + staID;
|
---|
[934] | 69 | }
|
---|
[6141] | 70 | _out = 0;
|
---|
[934] | 71 |
|
---|
[6215] | 72 | connect(this, SIGNAL(newOrbCorrections(QList<t_orbCorr>)),
|
---|
[6141] | 73 | BNC_CORE, SLOT(slotNewOrbCorrections(QList<t_orbCorr>)));
|
---|
[1828] | 74 |
|
---|
[6215] | 75 | connect(this, SIGNAL(newClkCorrections(QList<t_clkCorr>)),
|
---|
[6141] | 76 | BNC_CORE, SLOT(slotNewClkCorrections(QList<t_clkCorr>)));
|
---|
| 77 |
|
---|
[6486] | 78 | connect(this, SIGNAL(newCodeBiases(QList<t_satCodeBias>)),
|
---|
| 79 | BNC_CORE, SLOT(slotNewCodeBiases(QList<t_satCodeBias>)));
|
---|
| 80 |
|
---|
| 81 | connect(this, SIGNAL(newPhaseBiases(QList<t_satPhaseBias>)),
|
---|
| 82 | BNC_CORE, SLOT(slotNewPhaseBiases(QList<t_satPhaseBias>)));
|
---|
| 83 |
|
---|
| 84 | connect(this, SIGNAL(newTec(t_vTec)),
|
---|
| 85 | BNC_CORE, SLOT(slotNewTec(t_vTec)));
|
---|
| 86 |
|
---|
[6215] | 87 | connect(this, SIGNAL(providerIDChanged(QString)),
|
---|
[5577] | 88 | BNC_CORE, SIGNAL(providerIDChanged(QString)));
|
---|
| 89 |
|
---|
[6215] | 90 | connect(this, SIGNAL(newMessage(QByteArray,bool)),
|
---|
[5068] | 91 | BNC_CORE, SLOT(slotMessage(const QByteArray,bool)));
|
---|
[4428] | 92 |
|
---|
[6467] | 93 | reset();
|
---|
[5576] | 94 |
|
---|
| 95 | _providerID[0] = -1;
|
---|
| 96 | _providerID[1] = -1;
|
---|
| 97 | _providerID[2] = -1;
|
---|
[9036] | 98 |
|
---|
| 99 | _ssrCorr = 0;
|
---|
[866] | 100 | }
|
---|
| 101 |
|
---|
| 102 | // Destructor
|
---|
| 103 | ////////////////////////////////////////////////////////////////////////////
|
---|
| 104 | RTCM3coDecoder::~RTCM3coDecoder() {
|
---|
[935] | 105 | delete _out;
|
---|
[9036] | 106 | delete _ssrCorr;
|
---|
[7641] | 107 | _IODs.clear();
|
---|
| 108 | _orbCorrections.clear();
|
---|
| 109 | _clkCorrections.clear();
|
---|
| 110 | _lastClkCorrections.clear();
|
---|
| 111 | _codeBiases.clear();
|
---|
| 112 | _phaseBiases.clear();
|
---|
| 113 | _vTecMap.clear();
|
---|
[866] | 114 | }
|
---|
| 115 |
|
---|
[7641] | 116 | //
|
---|
[6467] | 117 | ////////////////////////////////////////////////////////////////////////////
|
---|
| 118 | void RTCM3coDecoder::reset() {
|
---|
| 119 | memset(&_clkOrb, 0, sizeof(_clkOrb));
|
---|
| 120 | memset(&_codeBias, 0, sizeof(_codeBias));
|
---|
| 121 | memset(&_phaseBias, 0, sizeof(_phaseBias));
|
---|
| 122 | memset(&_vTEC, 0, sizeof(_vTEC));
|
---|
| 123 | }
|
---|
| 124 |
|
---|
[934] | 125 | // Reopen Output File
|
---|
[6215] | 126 | ////////////////////////////////////////////////////////////////////////
|
---|
[6141] | 127 | void RTCM3coDecoder::reopen() {
|
---|
[934] | 128 |
|
---|
[6141] | 129 | if (!_fileNameSkl.isEmpty()) {
|
---|
[934] | 130 |
|
---|
[1535] | 131 | bncSettings settings;
|
---|
[934] | 132 |
|
---|
[1154] | 133 | QDateTime datTim = currentDateAndTimeGPS();
|
---|
[934] | 134 |
|
---|
| 135 | QString hlpStr = bncRinex::nextEpochStr(datTim,
|
---|
[7179] | 136 | settings.value("corrIntr").toString(), false);
|
---|
[934] | 137 |
|
---|
[6215] | 138 | QString fileNameHlp = _fileNameSkl
|
---|
[934] | 139 | + QString("%1").arg(datTim.date().dayOfYear(), 3, 10, QChar('0'))
|
---|
[938] | 140 | + hlpStr + datTim.toString(".yyC");
|
---|
[934] | 141 |
|
---|
[6141] | 142 | if (_fileName == fileNameHlp) {
|
---|
[934] | 143 | return;
|
---|
| 144 | }
|
---|
| 145 | else {
|
---|
[6141] | 146 | _fileName = fileNameHlp;
|
---|
[934] | 147 | }
|
---|
| 148 |
|
---|
[6141] | 149 | delete _out;
|
---|
[1727] | 150 | if ( Qt::CheckState(settings.value("rnxAppend").toInt()) == Qt::Checked) {
|
---|
[6141] | 151 | _out = new ofstream( _fileName.toAscii().data(), ios_base::out | ios_base::app );
|
---|
[1727] | 152 | }
|
---|
| 153 | else {
|
---|
[6141] | 154 | _out = new ofstream( _fileName.toAscii().data() );
|
---|
[1727] | 155 | }
|
---|
[934] | 156 | }
|
---|
| 157 | }
|
---|
| 158 |
|
---|
[6215] | 159 | //
|
---|
[866] | 160 | ////////////////////////////////////////////////////////////////////////////
|
---|
[1227] | 161 | t_irc RTCM3coDecoder::Decode(char* buffer, int bufLen, vector<string>& errmsg) {
|
---|
[868] | 162 |
|
---|
[1218] | 163 | errmsg.clear();
|
---|
| 164 |
|
---|
[1227] | 165 | _buffer.append(QByteArray(buffer,bufLen));
|
---|
[868] | 166 |
|
---|
[1023] | 167 | t_irc retCode = failure;
|
---|
| 168 |
|
---|
[1832] | 169 | while(_buffer.size()) {
|
---|
| 170 |
|
---|
[9036] | 171 | struct SsrCorr::ClockOrbit clkOrbSav;
|
---|
| 172 | struct SsrCorr::CodeBias codeBiasSav;
|
---|
| 173 | struct SsrCorr::PhaseBias phaseBiasSav;
|
---|
| 174 | struct SsrCorr::VTEC vTECSav;
|
---|
[6454] | 175 | memcpy(&clkOrbSav, &_clkOrb, sizeof(clkOrbSav)); // save state
|
---|
| 176 | memcpy(&codeBiasSav, &_codeBias, sizeof(codeBiasSav));
|
---|
| 177 | memcpy(&phaseBiasSav, &_phaseBias, sizeof(phaseBiasSav));
|
---|
| 178 | memcpy(&vTECSav, &_vTEC, sizeof(vTECSav));
|
---|
| 179 |
|
---|
[879] | 180 | int bytesused = 0;
|
---|
[9307] | 181 |
|
---|
[9036] | 182 | GCOB_RETURN irc = _ssrCorr->GetSSR(&_clkOrb, &_codeBias, &_vTEC, &_phaseBias,
|
---|
[6454] | 183 | _buffer.data(), _buffer.size(), &bytesused);
|
---|
[1829] | 184 |
|
---|
[1833] | 185 | if (irc <= -30) { // not enough data - restore state and exit loop
|
---|
[6454] | 186 | memcpy(&_clkOrb, &clkOrbSav, sizeof(clkOrbSav));
|
---|
| 187 | memcpy(&_codeBias, &codeBiasSav, sizeof(codeBiasSav));
|
---|
| 188 | memcpy(&_phaseBias, &phaseBiasSav, sizeof(phaseBiasSav));
|
---|
| 189 | memcpy(&_vTEC, &vTECSav, sizeof(vTECSav));
|
---|
[1833] | 190 | break;
|
---|
[869] | 191 | }
|
---|
[1832] | 192 |
|
---|
[1833] | 193 | else if (irc < 0) { // error - skip 1 byte and retry
|
---|
[6467] | 194 | reset();
|
---|
[1842] | 195 | _buffer = _buffer.mid(bytesused ? bytesused : 1);
|
---|
[1833] | 196 | }
|
---|
| 197 |
|
---|
| 198 | else { // OK or MESSAGEFOLLOWS
|
---|
[1828] | 199 | _buffer = _buffer.mid(bytesused);
|
---|
| 200 |
|
---|
[6467] | 201 | if (irc == GCOBR_OK || irc == GCOBR_MESSAGEFOLLOWS ) {
|
---|
[2435] | 202 |
|
---|
[6556] | 203 | setEpochTime(); // sets _lastTime
|
---|
[7641] | 204 |
|
---|
| 205 | if (_lastTime.valid()) {
|
---|
[6467] | 206 | reopen();
|
---|
| 207 | checkProviderID();
|
---|
| 208 | sendResults();
|
---|
| 209 | retCode = success;
|
---|
[919] | 210 | }
|
---|
[6467] | 211 | else {
|
---|
| 212 | retCode = failure;
|
---|
[1829] | 213 | }
|
---|
[918] | 214 |
|
---|
[6467] | 215 | reset();
|
---|
[869] | 216 | }
|
---|
[1829] | 217 | }
|
---|
[1833] | 218 | }
|
---|
[1832] | 219 |
|
---|
[1829] | 220 | return retCode;
|
---|
[866] | 221 | }
|
---|
[934] | 222 |
|
---|
[6215] | 223 | //
|
---|
[934] | 224 | ////////////////////////////////////////////////////////////////////////////
|
---|
[6141] | 225 | void RTCM3coDecoder::sendResults() {
|
---|
[934] | 226 |
|
---|
[6455] | 227 | // Orbit and clock corrections of all satellites
|
---|
| 228 | // ---------------------------------------------
|
---|
[6854] | 229 | for (unsigned ii = 0; ii < CLOCKORBIT_NUMGPS
|
---|
| 230 | + CLOCKORBIT_NUMGLONASS
|
---|
| 231 | + CLOCKORBIT_NUMGALILEO
|
---|
| 232 | + CLOCKORBIT_NUMQZSS
|
---|
| 233 | + CLOCKORBIT_NUMSBAS
|
---|
| 234 | + _clkOrb.NumberOfSat[CLOCKORBIT_SATBDS];
|
---|
| 235 | ii++) {
|
---|
[3022] | 236 | char sysCh = ' ';
|
---|
[7005] | 237 | int flag = 0;
|
---|
[6454] | 238 | if (ii < _clkOrb.NumberOfSat[CLOCKORBIT_SATGPS]) {
|
---|
[3022] | 239 | sysCh = 'G';
|
---|
| 240 | }
|
---|
[6854] | 241 | else if (ii >= CLOCKORBIT_OFFSETGLONASS &&
|
---|
[6855] | 242 | ii < CLOCKORBIT_OFFSETGLONASS + _clkOrb.NumberOfSat[CLOCKORBIT_SATGLONASS]) {
|
---|
[3022] | 243 | sysCh = 'R';
|
---|
| 244 | }
|
---|
[6854] | 245 | else if (ii >= CLOCKORBIT_OFFSETGALILEO &&
|
---|
[6855] | 246 | ii < CLOCKORBIT_OFFSETGALILEO + _clkOrb.NumberOfSat[CLOCKORBIT_SATGALILEO]) {
|
---|
[6854] | 247 | sysCh = 'E';
|
---|
[7005] | 248 | flag = 1; // I/NAV clock has been chosen as reference clock for Galileo SSR corrections
|
---|
[6854] | 249 | }
|
---|
| 250 | else if (ii >= CLOCKORBIT_OFFSETQZSS &&
|
---|
[6855] | 251 | ii < CLOCKORBIT_OFFSETQZSS + _clkOrb.NumberOfSat[CLOCKORBIT_SATQZSS]) {
|
---|
[6854] | 252 | sysCh = 'J';
|
---|
| 253 | }
|
---|
| 254 | else if (ii >= CLOCKORBIT_OFFSETSBAS &&
|
---|
[6855] | 255 | ii < CLOCKORBIT_OFFSETSBAS + _clkOrb.NumberOfSat[CLOCKORBIT_SATSBAS]) {
|
---|
[6854] | 256 | sysCh = 'S';
|
---|
| 257 | }
|
---|
| 258 | else if (ii >= CLOCKORBIT_OFFSETBDS &&
|
---|
[6855] | 259 | ii < CLOCKORBIT_OFFSETBDS + _clkOrb.NumberOfSat[CLOCKORBIT_SATBDS]) {
|
---|
[6854] | 260 | sysCh = 'C';
|
---|
| 261 | }
|
---|
[6141] | 262 | else {
|
---|
| 263 | continue;
|
---|
| 264 | }
|
---|
[9036] | 265 |
|
---|
[6141] | 266 | // Orbit correction
|
---|
| 267 | // ----------------
|
---|
[9036] | 268 | if ( _clkOrb.messageType == _ssrCorr->COTYPE_GPSCOMBINED ||
|
---|
| 269 | _clkOrb.messageType == _ssrCorr->COTYPE_GLONASSCOMBINED ||
|
---|
| 270 | _clkOrb.messageType == _ssrCorr->COTYPE_GALILEOCOMBINED ||
|
---|
| 271 | _clkOrb.messageType == _ssrCorr->COTYPE_QZSSCOMBINED ||
|
---|
| 272 | _clkOrb.messageType == _ssrCorr->COTYPE_SBASCOMBINED ||
|
---|
| 273 | _clkOrb.messageType == _ssrCorr->COTYPE_BDSCOMBINED ||
|
---|
| 274 | _clkOrb.messageType == _ssrCorr->COTYPE_GPSORBIT ||
|
---|
| 275 | _clkOrb.messageType == _ssrCorr->COTYPE_GLONASSORBIT ||
|
---|
| 276 | _clkOrb.messageType == _ssrCorr->COTYPE_GALILEOORBIT ||
|
---|
| 277 | _clkOrb.messageType == _ssrCorr->COTYPE_QZSSORBIT ||
|
---|
| 278 | _clkOrb.messageType == _ssrCorr->COTYPE_SBASORBIT ||
|
---|
| 279 | _clkOrb.messageType == _ssrCorr->COTYPE_BDSORBIT ) {
|
---|
[3022] | 280 |
|
---|
[6141] | 281 | t_orbCorr orbCorr;
|
---|
[8312] | 282 | orbCorr._prn.set(sysCh, _clkOrb.Sat[ii].ID, flag);
|
---|
[6564] | 283 | orbCorr._staID = _staID.toStdString();
|
---|
[6556] | 284 | orbCorr._iod = _clkOrb.Sat[ii].IOD;
|
---|
| 285 | orbCorr._time = _lastTime;
|
---|
| 286 | orbCorr._updateInt = _clkOrb.UpdateInterval;
|
---|
[6854] | 287 | orbCorr._system = sysCh;
|
---|
[6556] | 288 | orbCorr._xr[0] = _clkOrb.Sat[ii].Orbit.DeltaRadial;
|
---|
| 289 | orbCorr._xr[1] = _clkOrb.Sat[ii].Orbit.DeltaAlongTrack;
|
---|
| 290 | orbCorr._xr[2] = _clkOrb.Sat[ii].Orbit.DeltaCrossTrack;
|
---|
| 291 | orbCorr._dotXr[0] = _clkOrb.Sat[ii].Orbit.DotDeltaRadial;
|
---|
| 292 | orbCorr._dotXr[1] = _clkOrb.Sat[ii].Orbit.DotDeltaAlongTrack;
|
---|
| 293 | orbCorr._dotXr[2] = _clkOrb.Sat[ii].Orbit.DotDeltaCrossTrack;
|
---|
[3022] | 294 |
|
---|
[7652] | 295 | _orbCorrections[_lastTime].append(orbCorr);
|
---|
[3022] | 296 |
|
---|
[6471] | 297 | _IODs[orbCorr._prn] = _clkOrb.Sat[ii].IOD;
|
---|
[6141] | 298 | }
|
---|
[3022] | 299 |
|
---|
[6455] | 300 | // Clock Corrections
|
---|
| 301 | // -----------------
|
---|
[9036] | 302 | if ( _clkOrb.messageType == _ssrCorr->COTYPE_GPSCOMBINED ||
|
---|
| 303 | _clkOrb.messageType == _ssrCorr->COTYPE_GLONASSCOMBINED ||
|
---|
| 304 | _clkOrb.messageType == _ssrCorr->COTYPE_GALILEOCOMBINED ||
|
---|
| 305 | _clkOrb.messageType == _ssrCorr->COTYPE_QZSSCOMBINED ||
|
---|
| 306 | _clkOrb.messageType == _ssrCorr->COTYPE_SBASCOMBINED ||
|
---|
| 307 | _clkOrb.messageType == _ssrCorr->COTYPE_BDSCOMBINED ||
|
---|
| 308 | _clkOrb.messageType == _ssrCorr->COTYPE_GPSCLOCK ||
|
---|
| 309 | _clkOrb.messageType == _ssrCorr->COTYPE_GLONASSCLOCK ||
|
---|
| 310 | _clkOrb.messageType == _ssrCorr->COTYPE_GALILEOCLOCK ||
|
---|
| 311 | _clkOrb.messageType == _ssrCorr->COTYPE_QZSSCLOCK ||
|
---|
| 312 | _clkOrb.messageType == _ssrCorr->COTYPE_SBASCLOCK ||
|
---|
| 313 | _clkOrb.messageType == _ssrCorr->COTYPE_BDSCLOCK) {
|
---|
[3022] | 314 |
|
---|
[6141] | 315 | t_clkCorr clkCorr;
|
---|
[8312] | 316 | clkCorr._prn.set(sysCh, _clkOrb.Sat[ii].ID, flag);
|
---|
[6564] | 317 | clkCorr._staID = _staID.toStdString();
|
---|
[6141] | 318 | clkCorr._time = _lastTime;
|
---|
[6556] | 319 | clkCorr._updateInt = _clkOrb.UpdateInterval;
|
---|
[7014] | 320 | clkCorr._dClk = _clkOrb.Sat[ii].Clock.DeltaA0 / t_CST::c;
|
---|
| 321 | clkCorr._dotDClk = _clkOrb.Sat[ii].Clock.DeltaA1 / t_CST::c;
|
---|
| 322 | clkCorr._dotDotDClk = _clkOrb.Sat[ii].Clock.DeltaA2 / t_CST::c;
|
---|
[3022] | 323 |
|
---|
[6471] | 324 | _lastClkCorrections[clkCorr._prn] = clkCorr;
|
---|
| 325 |
|
---|
| 326 | if (_IODs.contains(clkCorr._prn)) {
|
---|
| 327 | clkCorr._iod = _IODs[clkCorr._prn];
|
---|
[7652] | 328 | _clkCorrections[_lastTime].append(clkCorr);
|
---|
[3022] | 329 | }
|
---|
| 330 | }
|
---|
[6141] | 331 |
|
---|
| 332 | // High-Resolution Clocks
|
---|
| 333 | // ----------------------
|
---|
[9036] | 334 | if ( _clkOrb.messageType == _ssrCorr->COTYPE_GPSHR ||
|
---|
| 335 | _clkOrb.messageType == _ssrCorr->COTYPE_GLONASSHR ||
|
---|
| 336 | _clkOrb.messageType == _ssrCorr->COTYPE_GALILEOHR ||
|
---|
| 337 | _clkOrb.messageType == _ssrCorr->COTYPE_QZSSHR ||
|
---|
| 338 | _clkOrb.messageType == _ssrCorr->COTYPE_SBASHR ||
|
---|
| 339 | _clkOrb.messageType == _ssrCorr->COTYPE_BDSHR) {
|
---|
[7005] | 340 | t_prn prn(sysCh, _clkOrb.Sat[ii].ID, flag);
|
---|
[6471] | 341 | if (_lastClkCorrections.contains(prn)) {
|
---|
| 342 | t_clkCorr clkCorr;
|
---|
[6556] | 343 | clkCorr = _lastClkCorrections[prn];
|
---|
| 344 | clkCorr._time = _lastTime;
|
---|
| 345 | clkCorr._updateInt = _clkOrb.UpdateInterval;
|
---|
| 346 | clkCorr._dClk += _clkOrb.Sat[ii].hrclock / t_CST::c;
|
---|
[6471] | 347 | if (_IODs.contains(clkCorr._prn)) {
|
---|
| 348 | clkCorr._iod = _IODs[clkCorr._prn];
|
---|
[6497] | 349 | _clkCorrections[_lastTime].push_back(clkCorr);
|
---|
[6471] | 350 | }
|
---|
| 351 | }
|
---|
[6141] | 352 | }
|
---|
[3022] | 353 | }
|
---|
| 354 |
|
---|
[6455] | 355 | // Code Biases
|
---|
| 356 | // -----------
|
---|
[6854] | 357 | for (unsigned ii = 0; ii < CLOCKORBIT_NUMGPS
|
---|
| 358 | + CLOCKORBIT_NUMGLONASS
|
---|
| 359 | + CLOCKORBIT_NUMGALILEO
|
---|
| 360 | + CLOCKORBIT_NUMQZSS
|
---|
| 361 | + CLOCKORBIT_NUMSBAS
|
---|
| 362 | + _codeBias.NumberOfSat[CLOCKORBIT_SATBDS];
|
---|
| 363 | ii++) {
|
---|
[6141] | 364 | char sysCh = ' ';
|
---|
[6454] | 365 | if (ii < _codeBias.NumberOfSat[CLOCKORBIT_SATGPS]) {
|
---|
[6141] | 366 | sysCh = 'G';
|
---|
[3022] | 367 | }
|
---|
[6854] | 368 | else if (ii >= CLOCKORBIT_OFFSETGLONASS &&
|
---|
[6855] | 369 | ii < CLOCKORBIT_OFFSETGLONASS + _codeBias.NumberOfSat[CLOCKORBIT_SATGLONASS]) {
|
---|
[6141] | 370 | sysCh = 'R';
|
---|
[3022] | 371 | }
|
---|
[6854] | 372 | else if (ii >= CLOCKORBIT_OFFSETGALILEO &&
|
---|
[6855] | 373 | ii < CLOCKORBIT_OFFSETGALILEO + _codeBias.NumberOfSat[CLOCKORBIT_SATGALILEO]) {
|
---|
[6854] | 374 | sysCh = 'E';
|
---|
| 375 | }
|
---|
| 376 | else if (ii >= CLOCKORBIT_OFFSETQZSS &&
|
---|
[6855] | 377 | ii < CLOCKORBIT_OFFSETQZSS + _codeBias.NumberOfSat[CLOCKORBIT_SATQZSS]) {
|
---|
[6854] | 378 | sysCh = 'J';
|
---|
| 379 | }
|
---|
| 380 | else if (ii >= CLOCKORBIT_OFFSETSBAS &&
|
---|
[6855] | 381 | ii < CLOCKORBIT_OFFSETSBAS + _codeBias.NumberOfSat[CLOCKORBIT_SATSBAS]) {
|
---|
[6854] | 382 | sysCh = 'S';
|
---|
| 383 | }
|
---|
| 384 | else if (ii >= CLOCKORBIT_OFFSETBDS &&
|
---|
[6855] | 385 | ii < CLOCKORBIT_OFFSETBDS + _codeBias.NumberOfSat[CLOCKORBIT_SATBDS]) {
|
---|
[6854] | 386 | sysCh = 'C';
|
---|
| 387 | }
|
---|
[6141] | 388 | else {
|
---|
| 389 | continue;
|
---|
| 390 | }
|
---|
[6463] | 391 | t_satCodeBias satCodeBias;
|
---|
[8312] | 392 | satCodeBias._prn.set(sysCh, _codeBias.Sat[ii].ID);
|
---|
[6564] | 393 | satCodeBias._staID = _staID.toStdString();
|
---|
[6556] | 394 | satCodeBias._time = _lastTime;
|
---|
| 395 | satCodeBias._updateInt = _codeBias.UpdateInterval;
|
---|
[6454] | 396 | for (unsigned jj = 0; jj < _codeBias.Sat[ii].NumberOfCodeBiases; jj++) {
|
---|
[9036] | 397 | const SsrCorr::CodeBias::BiasSat::CodeBiasEntry& biasEntry = _codeBias.Sat[ii].Biases[jj];
|
---|
[6472] | 398 | t_frqCodeBias frqCodeBias;
|
---|
[9036] | 399 | frqCodeBias._rnxType2ch.assign(_ssrCorr->codeTypeToRnxType(sysCh, biasEntry.Type));
|
---|
[6472] | 400 | frqCodeBias._value = biasEntry.Bias;
|
---|
[6474] | 401 | if (!frqCodeBias._rnxType2ch.empty()) {
|
---|
| 402 | satCodeBias._bias.push_back(frqCodeBias);
|
---|
| 403 | }
|
---|
[6141] | 404 | }
|
---|
[7652] | 405 | _codeBiases[_lastTime].append(satCodeBias);
|
---|
[3022] | 406 | }
|
---|
| 407 |
|
---|
[6487] | 408 | // Phase Biases
|
---|
| 409 | // -----------
|
---|
[6854] | 410 | for (unsigned ii = 0; ii < CLOCKORBIT_NUMGPS
|
---|
| 411 | + CLOCKORBIT_NUMGLONASS
|
---|
| 412 | + CLOCKORBIT_NUMGALILEO
|
---|
| 413 | + CLOCKORBIT_NUMQZSS
|
---|
| 414 | + CLOCKORBIT_NUMSBAS
|
---|
| 415 | + _phaseBias.NumberOfSat[CLOCKORBIT_SATBDS];
|
---|
| 416 | ii++) {
|
---|
[6487] | 417 | char sysCh = ' ';
|
---|
| 418 | if (ii < _phaseBias.NumberOfSat[CLOCKORBIT_SATGPS]) {
|
---|
| 419 | sysCh = 'G';
|
---|
| 420 | }
|
---|
[6854] | 421 | else if (ii >= CLOCKORBIT_OFFSETGLONASS &&
|
---|
[6855] | 422 | ii < CLOCKORBIT_OFFSETGLONASS + _phaseBias.NumberOfSat[CLOCKORBIT_SATGLONASS]) {
|
---|
[6487] | 423 | sysCh = 'R';
|
---|
| 424 | }
|
---|
[6854] | 425 | else if (ii >= CLOCKORBIT_OFFSETGALILEO &&
|
---|
[6855] | 426 | ii < CLOCKORBIT_OFFSETGALILEO + _phaseBias.NumberOfSat[CLOCKORBIT_SATGALILEO]) {
|
---|
[6854] | 427 | sysCh = 'E';
|
---|
| 428 | }
|
---|
| 429 | else if (ii >= CLOCKORBIT_OFFSETQZSS &&
|
---|
[6855] | 430 | ii < CLOCKORBIT_OFFSETQZSS + _phaseBias.NumberOfSat[CLOCKORBIT_SATQZSS]) {
|
---|
[6854] | 431 | sysCh = 'J';
|
---|
| 432 | }
|
---|
| 433 | else if (ii >= CLOCKORBIT_OFFSETSBAS &&
|
---|
[6855] | 434 | ii < CLOCKORBIT_OFFSETSBAS + _phaseBias.NumberOfSat[CLOCKORBIT_SATSBAS]) {
|
---|
[6854] | 435 | sysCh = 'S';
|
---|
| 436 | }
|
---|
| 437 | else if (ii >= CLOCKORBIT_OFFSETBDS &&
|
---|
[6855] | 438 | ii < CLOCKORBIT_OFFSETBDS + _phaseBias.NumberOfSat[CLOCKORBIT_SATBDS]) {
|
---|
[6854] | 439 | sysCh = 'C';
|
---|
| 440 | }
|
---|
[6487] | 441 | else {
|
---|
| 442 | continue;
|
---|
| 443 | }
|
---|
| 444 | t_satPhaseBias satPhaseBias;
|
---|
[8312] | 445 | satPhaseBias._prn.set(sysCh, _phaseBias.Sat[ii].ID);
|
---|
[6564] | 446 | satPhaseBias._staID = _staID.toStdString();
|
---|
[6488] | 447 | satPhaseBias._time = _lastTime;
|
---|
[6556] | 448 | satPhaseBias._updateInt = _phaseBias.UpdateInterval;
|
---|
[6857] | 449 | satPhaseBias._dispBiasConstistInd = _phaseBias.DispersiveBiasConsistencyIndicator;
|
---|
| 450 | satPhaseBias._MWConsistInd = _phaseBias.MWConsistencyIndicator;
|
---|
[6488] | 451 | satPhaseBias._yawDeg = _phaseBias.Sat[ii].YawAngle * 180.0 / M_PI;
|
---|
| 452 | satPhaseBias._yawDegRate = _phaseBias.Sat[ii].YawRate * 180.0 / M_PI;
|
---|
[6487] | 453 | for (unsigned jj = 0; jj < _phaseBias.Sat[ii].NumberOfPhaseBiases; jj++) {
|
---|
[9036] | 454 | const SsrCorr::PhaseBias::PhaseBiasSat::PhaseBiasEntry& biasEntry = _phaseBias.Sat[ii].Biases[jj];
|
---|
[6487] | 455 | t_frqPhaseBias frqPhaseBias;
|
---|
[9036] | 456 | frqPhaseBias._rnxType2ch.assign(_ssrCorr->codeTypeToRnxType(sysCh, biasEntry.Type));
|
---|
[6488] | 457 | frqPhaseBias._value = biasEntry.Bias;
|
---|
| 458 | frqPhaseBias._fixIndicator = biasEntry.SignalIntegerIndicator;
|
---|
| 459 | frqPhaseBias._fixWideLaneIndicator = biasEntry.SignalsWideLaneIntegerIndicator;
|
---|
| 460 | frqPhaseBias._jumpCounter = biasEntry.SignalDiscontinuityCounter;
|
---|
[6487] | 461 | if (!frqPhaseBias._rnxType2ch.empty()) {
|
---|
| 462 | satPhaseBias._bias.push_back(frqPhaseBias);
|
---|
| 463 | }
|
---|
| 464 | }
|
---|
[7652] | 465 | _phaseBiases[_lastTime].append(satPhaseBias);
|
---|
[6487] | 466 | }
|
---|
| 467 |
|
---|
[6490] | 468 | // Ionospheric Model
|
---|
| 469 | // -----------------
|
---|
| 470 | if (_vTEC.NumLayers > 0) {
|
---|
[6497] | 471 | _vTecMap[_lastTime]._time = _lastTime;
|
---|
[6556] | 472 | _vTecMap[_lastTime]._updateInt = _vTEC.UpdateInterval;
|
---|
[6564] | 473 | _vTecMap[_lastTime]._staID = _staID.toStdString();
|
---|
[6491] | 474 | for (unsigned ii = 0; ii < _vTEC.NumLayers; ii++) {
|
---|
[9036] | 475 | const SsrCorr::VTEC::IonoLayers& ionoLayer = _vTEC.Layers[ii];
|
---|
[6491] | 476 | t_vTecLayer layer;
|
---|
| 477 | layer._height = ionoLayer.Height;
|
---|
[6878] | 478 | layer._C.ReSize(ionoLayer.Degree+1, ionoLayer.Order+1);
|
---|
| 479 | layer._S.ReSize(ionoLayer.Degree+1, ionoLayer.Order+1);
|
---|
| 480 | for (unsigned iDeg = 0; iDeg <= ionoLayer.Degree; iDeg++) {
|
---|
| 481 | for (unsigned iOrd = 0; iOrd <= ionoLayer.Order; iOrd++) {
|
---|
[6491] | 482 | layer._C[iDeg][iOrd] = ionoLayer.Cosinus[iDeg][iOrd];
|
---|
| 483 | layer._S[iDeg][iOrd] = ionoLayer.Sinus[iDeg][iOrd];
|
---|
| 484 | }
|
---|
| 485 | }
|
---|
[6497] | 486 | _vTecMap[_lastTime]._layers.push_back(layer);
|
---|
[6491] | 487 | }
|
---|
[6490] | 488 | }
|
---|
| 489 |
|
---|
[6455] | 490 | // Dump all older epochs
|
---|
| 491 | // ---------------------
|
---|
| 492 | QMutableMapIterator<bncTime, QList<t_orbCorr> > itOrb(_orbCorrections);
|
---|
| 493 | while (itOrb.hasNext()) {
|
---|
| 494 | itOrb.next();
|
---|
| 495 | if (itOrb.key() < _lastTime) {
|
---|
| 496 | emit newOrbCorrections(itOrb.value());
|
---|
[6456] | 497 | t_orbCorr::writeEpoch(_out, itOrb.value());
|
---|
[6455] | 498 | itOrb.remove();
|
---|
[7641] | 499 | }
|
---|
[6141] | 500 | }
|
---|
[6455] | 501 | QMutableMapIterator<bncTime, QList<t_clkCorr> > itClk(_clkCorrections);
|
---|
| 502 | while (itClk.hasNext()) {
|
---|
| 503 | itClk.next();
|
---|
| 504 | if (itClk.key() < _lastTime) {
|
---|
| 505 | emit newClkCorrections(itClk.value());
|
---|
[6456] | 506 | t_clkCorr::writeEpoch(_out, itClk.value());
|
---|
[6455] | 507 | itClk.remove();
|
---|
[7641] | 508 | }
|
---|
[6141] | 509 | }
|
---|
[6474] | 510 | QMutableMapIterator<bncTime, QList<t_satCodeBias> > itCB(_codeBiases);
|
---|
| 511 | while (itCB.hasNext()) {
|
---|
| 512 | itCB.next();
|
---|
| 513 | if (itCB.key() < _lastTime) {
|
---|
| 514 | emit newCodeBiases(itCB.value());
|
---|
[6475] | 515 | t_satCodeBias::writeEpoch(_out, itCB.value());
|
---|
[6474] | 516 | itCB.remove();
|
---|
[7641] | 517 | }
|
---|
[6474] | 518 | }
|
---|
[6487] | 519 | QMutableMapIterator<bncTime, QList<t_satPhaseBias> > itPB(_phaseBiases);
|
---|
| 520 | while (itPB.hasNext()) {
|
---|
| 521 | itPB.next();
|
---|
| 522 | if (itPB.key() < _lastTime) {
|
---|
| 523 | emit newPhaseBiases(itPB.value());
|
---|
| 524 | t_satPhaseBias::writeEpoch(_out, itPB.value());
|
---|
| 525 | itPB.remove();
|
---|
[7641] | 526 | }
|
---|
[6487] | 527 | }
|
---|
[6490] | 528 | QMutableMapIterator<bncTime, t_vTec> itTec(_vTecMap);
|
---|
| 529 | while (itTec.hasNext()) {
|
---|
| 530 | itTec.next();
|
---|
| 531 | if (itTec.key() < _lastTime) {
|
---|
| 532 | emit newTec(itTec.value());
|
---|
| 533 | t_vTec::write(_out, itTec.value());
|
---|
| 534 | itTec.remove();
|
---|
[7641] | 535 | }
|
---|
[6490] | 536 | }
|
---|
[3022] | 537 | }
|
---|
[5576] | 538 |
|
---|
[6215] | 539 | //
|
---|
[5576] | 540 | ////////////////////////////////////////////////////////////////////////////
|
---|
| 541 | void RTCM3coDecoder::checkProviderID() {
|
---|
| 542 |
|
---|
[6454] | 543 | if (_clkOrb.SSRProviderID == 0 && _clkOrb.SSRSolutionID == 0 && _clkOrb.SSRIOD == 0) {
|
---|
[5576] | 544 | return;
|
---|
| 545 | }
|
---|
| 546 |
|
---|
| 547 | int newProviderID[3];
|
---|
[6454] | 548 | newProviderID[0] = _clkOrb.SSRProviderID;
|
---|
| 549 | newProviderID[1] = _clkOrb.SSRSolutionID;
|
---|
| 550 | newProviderID[2] = _clkOrb.SSRIOD;
|
---|
[5576] | 551 |
|
---|
| 552 | bool alreadySet = false;
|
---|
| 553 | bool different = false;
|
---|
| 554 |
|
---|
| 555 | for (unsigned ii = 0; ii < 3; ii++) {
|
---|
| 556 | if (_providerID[ii] != -1) {
|
---|
| 557 | alreadySet = true;
|
---|
| 558 | }
|
---|
| 559 | if (_providerID[ii] != newProviderID[ii]) {
|
---|
| 560 | different = true;
|
---|
| 561 | }
|
---|
| 562 | _providerID[ii] = newProviderID[ii];
|
---|
| 563 | }
|
---|
[6215] | 564 |
|
---|
[5576] | 565 | if (alreadySet && different) {
|
---|
[7967] | 566 | emit newMessage("RTCM3coDecoder: Provider Changed: " + _staID.toAscii(), true);
|
---|
[5577] | 567 | emit providerIDChanged(_staID);
|
---|
[5576] | 568 | }
|
---|
| 569 | }
|
---|
[6467] | 570 |
|
---|
| 571 | //
|
---|
| 572 | ////////////////////////////////////////////////////////////////////////////
|
---|
[6556] | 573 | void RTCM3coDecoder::setEpochTime() {
|
---|
[6467] | 574 |
|
---|
| 575 | _lastTime.reset();
|
---|
| 576 |
|
---|
[6854] | 577 | double epoSecGPS = -1.0;
|
---|
| 578 | double epoSecGlo = -1.0;
|
---|
| 579 | double epoSecGal = -1.0;
|
---|
| 580 | double epoSecQzss = -1.0;
|
---|
| 581 | double epoSecSbas = -1.0;
|
---|
| 582 | double epoSecBds = -1.0;
|
---|
[6467] | 583 | if (_clkOrb.NumberOfSat[CLOCKORBIT_SATGPS] > 0) {
|
---|
[6553] | 584 | epoSecGPS = _clkOrb.EpochTime[CLOCKORBIT_SATGPS]; // 0 .. 604799 s
|
---|
[6467] | 585 | }
|
---|
| 586 | else if (_codeBias.NumberOfSat[CLOCKORBIT_SATGPS] > 0) {
|
---|
[7641] | 587 | epoSecGPS = _codeBias.EpochTime[CLOCKORBIT_SATGPS]; // 0 .. 604799 s
|
---|
[6467] | 588 | }
|
---|
[6470] | 589 | else if (_phaseBias.NumberOfSat[CLOCKORBIT_SATGPS] > 0) {
|
---|
[7641] | 590 | epoSecGPS = _phaseBias.EpochTime[CLOCKORBIT_SATGPS]; // 0 .. 604799 s
|
---|
[6470] | 591 | }
|
---|
| 592 | else if (_vTEC.NumLayers > 0) {
|
---|
[7641] | 593 | epoSecGPS = _vTEC.EpochTime; // 0 .. 604799 s
|
---|
[6470] | 594 | }
|
---|
[6467] | 595 | else if (_clkOrb.NumberOfSat[CLOCKORBIT_SATGLONASS] > 0) {
|
---|
[6470] | 596 | epoSecGlo = _clkOrb.EpochTime[CLOCKORBIT_SATGLONASS]; // 0 .. 86399 s
|
---|
[6467] | 597 | }
|
---|
| 598 | else if (_codeBias.NumberOfSat[CLOCKORBIT_SATGLONASS] > 0) {
|
---|
[6470] | 599 | epoSecGlo = _codeBias.EpochTime[CLOCKORBIT_SATGLONASS]; // 0 .. 86399 s
|
---|
[6467] | 600 | }
|
---|
[6470] | 601 | else if (_phaseBias.NumberOfSat[CLOCKORBIT_SATGLONASS] > 0) {
|
---|
| 602 | epoSecGlo = _phaseBias.EpochTime[CLOCKORBIT_SATGLONASS]; // 0 .. 86399 s
|
---|
| 603 | }
|
---|
[6854] | 604 | else if (_clkOrb.NumberOfSat[CLOCKORBIT_SATGALILEO] > 0) {
|
---|
| 605 | epoSecGal = _clkOrb.EpochTime[CLOCKORBIT_SATGALILEO];
|
---|
| 606 | }
|
---|
| 607 | else if (_codeBias.NumberOfSat[CLOCKORBIT_SATGALILEO] > 0) {
|
---|
| 608 | epoSecGal = _codeBias.EpochTime[CLOCKORBIT_SATGALILEO];
|
---|
| 609 | }
|
---|
| 610 | else if (_phaseBias.NumberOfSat[CLOCKORBIT_SATGALILEO] > 0) {
|
---|
| 611 | epoSecGal = _phaseBias.EpochTime[CLOCKORBIT_SATGALILEO];
|
---|
| 612 | }
|
---|
| 613 | else if (_clkOrb.NumberOfSat[CLOCKORBIT_SATQZSS] > 0) {
|
---|
| 614 | epoSecQzss = _clkOrb.EpochTime[CLOCKORBIT_SATQZSS];
|
---|
| 615 | }
|
---|
| 616 | else if (_codeBias.NumberOfSat[CLOCKORBIT_SATQZSS] > 0) {
|
---|
| 617 | epoSecQzss = _codeBias.EpochTime[CLOCKORBIT_SATQZSS];
|
---|
| 618 | }
|
---|
| 619 | else if (_phaseBias.NumberOfSat[CLOCKORBIT_SATQZSS] > 0) {
|
---|
| 620 | epoSecQzss = _phaseBias.EpochTime[CLOCKORBIT_SATQZSS];
|
---|
| 621 | }
|
---|
| 622 | else if (_clkOrb.NumberOfSat[CLOCKORBIT_SATSBAS] > 0) {
|
---|
| 623 | epoSecSbas = _clkOrb.EpochTime[CLOCKORBIT_SATSBAS];
|
---|
| 624 | }
|
---|
| 625 | else if (_codeBias.NumberOfSat[CLOCKORBIT_SATSBAS] > 0) {
|
---|
| 626 | epoSecSbas = _codeBias.EpochTime[CLOCKORBIT_SATSBAS];
|
---|
| 627 | }
|
---|
| 628 | else if (_phaseBias.NumberOfSat[CLOCKORBIT_SATSBAS] > 0) {
|
---|
| 629 | epoSecSbas = _phaseBias.EpochTime[CLOCKORBIT_SATSBAS];
|
---|
| 630 | }
|
---|
| 631 | else if (_clkOrb.NumberOfSat[CLOCKORBIT_SATBDS] > 0) {
|
---|
| 632 | epoSecBds = _clkOrb.EpochTime[CLOCKORBIT_SATBDS];
|
---|
| 633 | }
|
---|
| 634 | else if (_codeBias.NumberOfSat[CLOCKORBIT_SATBDS] > 0) {
|
---|
| 635 | epoSecBds = _codeBias.EpochTime[CLOCKORBIT_SATBDS];
|
---|
| 636 | }
|
---|
| 637 | else if (_phaseBias.NumberOfSat[CLOCKORBIT_SATBDS] > 0) {
|
---|
| 638 | epoSecBds = _phaseBias.EpochTime[CLOCKORBIT_SATBDS];
|
---|
| 639 | }
|
---|
[6467] | 640 |
|
---|
| 641 | // Retrieve current time
|
---|
| 642 | // ---------------------
|
---|
| 643 | int currentWeek = 0;
|
---|
| 644 | double currentSec = 0.0;
|
---|
| 645 | currentGPSWeeks(currentWeek, currentSec);
|
---|
| 646 | bncTime currentTime(currentWeek, currentSec);
|
---|
| 647 |
|
---|
| 648 | // Set _lastTime close to currentTime
|
---|
| 649 | // ----------------------------------
|
---|
| 650 | if (epoSecGPS != -1) {
|
---|
| 651 | _lastTime.set(currentWeek, epoSecGPS);
|
---|
| 652 | }
|
---|
| 653 | else if (epoSecGlo != -1) {
|
---|
[9051] | 654 | if (_type == RTCMssr) {
|
---|
[9036] | 655 | QDate date = dateAndTimeFromGPSweek(currentTime.gpsw(), currentTime.gpssec()).date();
|
---|
| 656 | epoSecGlo = epoSecGlo - 3 * 3600 + gnumleap(date.year(), date.month(), date.day());
|
---|
| 657 | }
|
---|
[6467] | 658 | _lastTime.set(currentWeek, epoSecGlo);
|
---|
[6468] | 659 | }
|
---|
[6854] | 660 | else if (epoSecGal != -1) {
|
---|
| 661 | _lastTime.set(currentWeek, epoSecGal);
|
---|
| 662 | }
|
---|
| 663 | else if (epoSecQzss != -1) {
|
---|
| 664 | _lastTime.set(currentWeek, epoSecQzss);
|
---|
| 665 | }
|
---|
| 666 | else if (epoSecSbas != -1) {
|
---|
| 667 | _lastTime.set(currentWeek, epoSecSbas);
|
---|
| 668 | }
|
---|
| 669 | else if (epoSecBds != -1) {
|
---|
[9051] | 670 | if (_type == RTCMssr) {
|
---|
[9036] | 671 | epoSecBds += 14.0;
|
---|
| 672 | if (epoSecBds > 604800.0) {
|
---|
| 673 | epoSecBds -= 7.0*24.0*60.0*60.0;
|
---|
| 674 | }
|
---|
[7711] | 675 | }
|
---|
[6854] | 676 | _lastTime.set(currentWeek, epoSecBds);
|
---|
| 677 | }
|
---|
[6468] | 678 |
|
---|
| 679 | if (_lastTime.valid()) {
|
---|
[6469] | 680 | double maxDiff = 12 * 3600.0;
|
---|
| 681 | while (_lastTime < currentTime - maxDiff) {
|
---|
| 682 | _lastTime = _lastTime + maxDiff;
|
---|
[6467] | 683 | }
|
---|
[6469] | 684 | while (_lastTime > currentTime + maxDiff) {
|
---|
| 685 | _lastTime = _lastTime - maxDiff;
|
---|
[6467] | 686 | }
|
---|
| 687 | }
|
---|
| 688 | }
|
---|