[1025] | 1 | #include <sstream>
|
---|
[2234] | 2 | #include <iostream>
|
---|
[1025] | 3 | #include <iomanip>
|
---|
[1239] | 4 | #include <cstring>
|
---|
[1025] | 5 |
|
---|
[2234] | 6 | #include <newmatio.h>
|
---|
| 7 |
|
---|
[1025] | 8 | #include "ephemeris.h"
|
---|
[2221] | 9 | #include "bncutils.h"
|
---|
[2285] | 10 | #include "bnctime.h"
|
---|
[5070] | 11 | #include "bnccore.h"
|
---|
[5839] | 12 | #include "bncutils.h"
|
---|
[6141] | 13 | #include "satObs.h"
|
---|
[6044] | 14 | #include "pppInclude.h"
|
---|
[6400] | 15 | #include "pppModel.h"
|
---|
[1025] | 16 |
|
---|
| 17 | using namespace std;
|
---|
| 18 |
|
---|
[5749] | 19 | // Constructor
|
---|
| 20 | ////////////////////////////////////////////////////////////////////////////
|
---|
| 21 | t_eph::t_eph() {
|
---|
[6518] | 22 | _checkState = unchecked;
|
---|
| 23 | _orbCorr = 0;
|
---|
| 24 | _clkCorr = 0;
|
---|
[5749] | 25 | }
|
---|
| 26 |
|
---|
| 27 | //
|
---|
| 28 | ////////////////////////////////////////////////////////////////////////////
|
---|
[6141] | 29 | void t_eph::setOrbCorr(const t_orbCorr* orbCorr) {
|
---|
[5749] | 30 | delete _orbCorr;
|
---|
[6141] | 31 | _orbCorr = new t_orbCorr(*orbCorr);
|
---|
[5749] | 32 | }
|
---|
| 33 |
|
---|
| 34 | //
|
---|
| 35 | ////////////////////////////////////////////////////////////////////////////
|
---|
[6141] | 36 | void t_eph::setClkCorr(const t_clkCorr* clkCorr) {
|
---|
[5749] | 37 | delete _clkCorr;
|
---|
[6141] | 38 | _clkCorr = new t_clkCorr(*clkCorr);
|
---|
[5749] | 39 | }
|
---|
| 40 |
|
---|
| 41 | //
|
---|
| 42 | ////////////////////////////////////////////////////////////////////////////
|
---|
[6109] | 43 | t_irc t_eph::getCrd(const bncTime& tt, ColumnVector& xc, ColumnVector& vv, bool useCorr) const {
|
---|
[6518] | 44 |
|
---|
| 45 | if (_checkState == bad) {
|
---|
| 46 | return failure;
|
---|
| 47 | }
|
---|
[6556] | 48 | const QVector<int> updateInt = QVector<int>() << 1 << 2 << 5 << 10 << 15 << 30
|
---|
| 49 | << 60 << 120 << 240 << 300 << 600
|
---|
| 50 | << 900 << 1800 << 3600 << 7200
|
---|
| 51 | << 10800;
|
---|
[5749] | 52 | xc.ReSize(4);
|
---|
| 53 | vv.ReSize(3);
|
---|
[6213] | 54 | if (position(tt.gpsw(), tt.gpssec(), xc.data(), vv.data()) != success) {
|
---|
| 55 | return failure;
|
---|
| 56 | }
|
---|
[5789] | 57 | if (useCorr) {
|
---|
[5839] | 58 | if (_orbCorr && _clkCorr) {
|
---|
[5849] | 59 | double dtO = tt - _orbCorr->_time;
|
---|
[6556] | 60 | if (_orbCorr->_updateInt) {
|
---|
| 61 | dtO -= (0.5 * updateInt[_orbCorr->_updateInt]);
|
---|
| 62 | }
|
---|
[5839] | 63 | ColumnVector dx(3);
|
---|
[5849] | 64 | dx[0] = _orbCorr->_xr[0] + _orbCorr->_dotXr[0] * dtO;
|
---|
| 65 | dx[1] = _orbCorr->_xr[1] + _orbCorr->_dotXr[1] * dtO;
|
---|
| 66 | dx[2] = _orbCorr->_xr[2] + _orbCorr->_dotXr[2] * dtO;
|
---|
| 67 |
|
---|
[5839] | 68 | if (_orbCorr->_system == 'R') {
|
---|
[5849] | 69 | RSW_to_XYZ(xc.Rows(1,3), vv.Rows(1,3), dx, dx);
|
---|
[5839] | 70 | }
|
---|
[5849] | 71 |
|
---|
[5839] | 72 | xc[0] -= dx[0];
|
---|
| 73 | xc[1] -= dx[1];
|
---|
| 74 | xc[2] -= dx[2];
|
---|
[5849] | 75 |
|
---|
| 76 | double dtC = tt - _clkCorr->_time;
|
---|
[6556] | 77 | if (_clkCorr->_updateInt) {
|
---|
| 78 | dtC -= (0.5 * updateInt[_clkCorr->_updateInt]);
|
---|
| 79 | }
|
---|
[5849] | 80 | xc[3] += _clkCorr->_dClk + _clkCorr->_dotDClk * dtC + _clkCorr->_dotDotDClk * dtC * dtC;
|
---|
[5839] | 81 | }
|
---|
| 82 | else {
|
---|
| 83 | return failure;
|
---|
| 84 | }
|
---|
[5749] | 85 | }
|
---|
| 86 | return success;
|
---|
| 87 | }
|
---|
| 88 |
|
---|
[2222] | 89 | // Set GPS Satellite Position
|
---|
| 90 | ////////////////////////////////////////////////////////////////////////////
|
---|
[1025] | 91 | void t_ephGPS::set(const gpsephemeris* ee) {
|
---|
| 92 |
|
---|
[4097] | 93 | _receptDateTime = currentDateAndTimeGPS();
|
---|
| 94 |
|
---|
[6374] | 95 | if (PRN_GPS_START <= ee->satellite && ee->satellite <= PRN_GPS_END) {
|
---|
| 96 | _prn.set('G', ee->satellite);
|
---|
| 97 | }
|
---|
| 98 | else if (PRN_QZSS_START <= ee->satellite && ee->satellite <= PRN_QZSS_END) {
|
---|
| 99 | _prn.set('J', ee->satellite - PRN_QZSS_START + 1);
|
---|
| 100 | }
|
---|
| 101 | else {
|
---|
[6518] | 102 | _checkState = bad;
|
---|
[6374] | 103 | return;
|
---|
| 104 | }
|
---|
[1025] | 105 |
|
---|
[4018] | 106 | _TOC.set(ee->GPSweek, ee->TOC);
|
---|
[3734] | 107 | _clock_bias = ee->clock_bias;
|
---|
| 108 | _clock_drift = ee->clock_drift;
|
---|
[1025] | 109 | _clock_driftrate = ee->clock_driftrate;
|
---|
| 110 |
|
---|
[4018] | 111 | _IODE = ee->IODE;
|
---|
[1025] | 112 | _Crs = ee->Crs;
|
---|
| 113 | _Delta_n = ee->Delta_n;
|
---|
| 114 | _M0 = ee->M0;
|
---|
[4018] | 115 |
|
---|
[1025] | 116 | _Cuc = ee->Cuc;
|
---|
| 117 | _e = ee->e;
|
---|
| 118 | _Cus = ee->Cus;
|
---|
| 119 | _sqrt_A = ee->sqrt_A;
|
---|
[4018] | 120 |
|
---|
| 121 | _TOEsec = ee->TOE;
|
---|
[1025] | 122 | _Cic = ee->Cic;
|
---|
| 123 | _OMEGA0 = ee->OMEGA0;
|
---|
| 124 | _Cis = ee->Cis;
|
---|
[4018] | 125 |
|
---|
[1025] | 126 | _i0 = ee->i0;
|
---|
| 127 | _Crc = ee->Crc;
|
---|
| 128 | _omega = ee->omega;
|
---|
| 129 | _OMEGADOT = ee->OMEGADOT;
|
---|
[4018] | 130 |
|
---|
[1025] | 131 | _IDOT = ee->IDOT;
|
---|
[4018] | 132 | _L2Codes = 0.0;
|
---|
[4025] | 133 | _TOEweek = ee->GPSweek;
|
---|
[4018] | 134 | _L2PFlag = 0.0;
|
---|
[1025] | 135 |
|
---|
[4027] | 136 | if (ee->URAindex <= 6) {
|
---|
| 137 | _ura = ceil(10.0*pow(2.0, 1.0+((double)ee->URAindex)/2.0))/10.0;
|
---|
| 138 | }
|
---|
| 139 | else {
|
---|
| 140 | _ura = ceil(10.0*pow(2.0, ((double)ee->URAindex)/2.0))/10.0;
|
---|
| 141 | }
|
---|
[4018] | 142 | _health = ee->SVhealth;
|
---|
[1025] | 143 | _TGD = ee->TGD;
|
---|
[4018] | 144 | _IODC = ee->IODC;
|
---|
[3659] | 145 |
|
---|
[4018] | 146 | _TOT = 0.9999e9;
|
---|
| 147 | _fitInterval = 0.0;
|
---|
[1025] | 148 | }
|
---|
| 149 |
|
---|
[2222] | 150 | // Compute GPS Satellite Position (virtual)
|
---|
[1025] | 151 | ////////////////////////////////////////////////////////////////////////////
|
---|
[6213] | 152 | t_irc t_ephGPS::position(int GPSweek, double GPSweeks, double* xc, double* vv) const {
|
---|
[1025] | 153 |
|
---|
[6518] | 154 | if (_checkState == bad) {
|
---|
| 155 | return failure;
|
---|
| 156 | }
|
---|
| 157 |
|
---|
[1098] | 158 | static const double omegaEarth = 7292115.1467e-11;
|
---|
[5277] | 159 | static const double gmGRS = 398.6005e12;
|
---|
[1025] | 160 |
|
---|
| 161 | memset(xc, 0, 4*sizeof(double));
|
---|
| 162 | memset(vv, 0, 3*sizeof(double));
|
---|
| 163 |
|
---|
| 164 | double a0 = _sqrt_A * _sqrt_A;
|
---|
| 165 | if (a0 == 0) {
|
---|
[6213] | 166 | return failure;
|
---|
[1025] | 167 | }
|
---|
| 168 |
|
---|
[5277] | 169 | double n0 = sqrt(gmGRS/(a0*a0*a0));
|
---|
[4018] | 170 |
|
---|
| 171 | bncTime tt(GPSweek, GPSweeks);
|
---|
[4543] | 172 | double tk = tt - bncTime(int(_TOEweek), _TOEsec);
|
---|
[4018] | 173 |
|
---|
[1025] | 174 | double n = n0 + _Delta_n;
|
---|
| 175 | double M = _M0 + n*tk;
|
---|
| 176 | double E = M;
|
---|
| 177 | double E_last;
|
---|
| 178 | do {
|
---|
| 179 | E_last = E;
|
---|
| 180 | E = M + _e*sin(E);
|
---|
| 181 | } while ( fabs(E-E_last)*a0 > 0.001 );
|
---|
| 182 | double v = 2.0*atan( sqrt( (1.0 + _e)/(1.0 - _e) )*tan( E/2 ) );
|
---|
| 183 | double u0 = v + _omega;
|
---|
| 184 | double sin2u0 = sin(2*u0);
|
---|
| 185 | double cos2u0 = cos(2*u0);
|
---|
| 186 | double r = a0*(1 - _e*cos(E)) + _Crc*cos2u0 + _Crs*sin2u0;
|
---|
| 187 | double i = _i0 + _IDOT*tk + _Cic*cos2u0 + _Cis*sin2u0;
|
---|
| 188 | double u = u0 + _Cuc*cos2u0 + _Cus*sin2u0;
|
---|
| 189 | double xp = r*cos(u);
|
---|
| 190 | double yp = r*sin(u);
|
---|
| 191 | double OM = _OMEGA0 + (_OMEGADOT - omegaEarth)*tk -
|
---|
[4018] | 192 | omegaEarth*_TOEsec;
|
---|
[1025] | 193 |
|
---|
| 194 | double sinom = sin(OM);
|
---|
| 195 | double cosom = cos(OM);
|
---|
| 196 | double sini = sin(i);
|
---|
| 197 | double cosi = cos(i);
|
---|
| 198 | xc[0] = xp*cosom - yp*cosi*sinom;
|
---|
| 199 | xc[1] = xp*sinom + yp*cosi*cosom;
|
---|
| 200 | xc[2] = yp*sini;
|
---|
| 201 |
|
---|
[4018] | 202 | double tc = tt - _TOC;
|
---|
[2429] | 203 | xc[3] = _clock_bias + _clock_drift*tc + _clock_driftrate*tc*tc;
|
---|
[1025] | 204 |
|
---|
| 205 | // Velocity
|
---|
| 206 | // --------
|
---|
| 207 | double tanv2 = tan(v/2);
|
---|
| 208 | double dEdM = 1 / (1 - _e*cos(E));
|
---|
| 209 | double dotv = sqrt((1.0 + _e)/(1.0 - _e)) / cos(E/2)/cos(E/2) / (1 + tanv2*tanv2)
|
---|
| 210 | * dEdM * n;
|
---|
| 211 | double dotu = dotv + (-_Cuc*sin2u0 + _Cus*cos2u0)*2*dotv;
|
---|
| 212 | double dotom = _OMEGADOT - omegaEarth;
|
---|
| 213 | double doti = _IDOT + (-_Cic*sin2u0 + _Cis*cos2u0)*2*dotv;
|
---|
| 214 | double dotr = a0 * _e*sin(E) * dEdM * n
|
---|
| 215 | + (-_Crc*sin2u0 + _Crs*cos2u0)*2*dotv;
|
---|
| 216 | double dotx = dotr*cos(u) - r*sin(u)*dotu;
|
---|
| 217 | double doty = dotr*sin(u) + r*cos(u)*dotu;
|
---|
| 218 |
|
---|
| 219 | vv[0] = cosom *dotx - cosi*sinom *doty // dX / dr
|
---|
| 220 | - xp*sinom*dotom - yp*cosi*cosom*dotom // dX / dOMEGA
|
---|
| 221 | + yp*sini*sinom*doti; // dX / di
|
---|
| 222 |
|
---|
| 223 | vv[1] = sinom *dotx + cosi*cosom *doty
|
---|
| 224 | + xp*cosom*dotom - yp*cosi*sinom*dotom
|
---|
| 225 | - yp*sini*cosom*doti;
|
---|
| 226 |
|
---|
| 227 | vv[2] = sini *doty + yp*cosi *doti;
|
---|
[2429] | 228 |
|
---|
| 229 | // Relativistic Correction
|
---|
| 230 | // -----------------------
|
---|
| 231 | xc[3] -= 2.0 * (xc[0]*vv[0] + xc[1]*vv[1] + xc[2]*vv[2]) / t_CST::c / t_CST::c;
|
---|
[6213] | 232 |
|
---|
| 233 | return success;
|
---|
[1025] | 234 | }
|
---|
| 235 |
|
---|
[2221] | 236 | // Derivative of the state vector using a simple force model (static)
|
---|
| 237 | ////////////////////////////////////////////////////////////////////////////
|
---|
[2556] | 238 | ColumnVector t_ephGlo::glo_deriv(double /* tt */, const ColumnVector& xv,
|
---|
| 239 | double* acc) {
|
---|
[2221] | 240 |
|
---|
| 241 | // State vector components
|
---|
| 242 | // -----------------------
|
---|
| 243 | ColumnVector rr = xv.rows(1,3);
|
---|
| 244 | ColumnVector vv = xv.rows(4,6);
|
---|
| 245 |
|
---|
| 246 | // Acceleration
|
---|
| 247 | // ------------
|
---|
[5277] | 248 | static const double gmWGS = 398.60044e12;
|
---|
[2221] | 249 | static const double AE = 6378136.0;
|
---|
| 250 | static const double OMEGA = 7292115.e-11;
|
---|
[2561] | 251 | static const double C20 = -1082.6257e-6;
|
---|
[2221] | 252 |
|
---|
| 253 | double rho = rr.norm_Frobenius();
|
---|
[5277] | 254 | double t1 = -gmWGS/(rho*rho*rho);
|
---|
| 255 | double t2 = 3.0/2.0 * C20 * (gmWGS*AE*AE) / (rho*rho*rho*rho*rho);
|
---|
[2221] | 256 | double t3 = OMEGA * OMEGA;
|
---|
| 257 | double t4 = 2.0 * OMEGA;
|
---|
| 258 | double z2 = rr(3) * rr(3);
|
---|
| 259 |
|
---|
| 260 | // Vector of derivatives
|
---|
| 261 | // ---------------------
|
---|
| 262 | ColumnVector va(6);
|
---|
| 263 | va(1) = vv(1);
|
---|
| 264 | va(2) = vv(2);
|
---|
| 265 | va(3) = vv(3);
|
---|
[2556] | 266 | va(4) = (t1 + t2*(1.0-5.0*z2/(rho*rho)) + t3) * rr(1) + t4*vv(2) + acc[0];
|
---|
| 267 | va(5) = (t1 + t2*(1.0-5.0*z2/(rho*rho)) + t3) * rr(2) - t4*vv(1) + acc[1];
|
---|
| 268 | va(6) = (t1 + t2*(3.0-5.0*z2/(rho*rho)) ) * rr(3) + acc[2];
|
---|
[2221] | 269 |
|
---|
| 270 | return va;
|
---|
| 271 | }
|
---|
| 272 |
|
---|
| 273 | // Compute Glonass Satellite Position (virtual)
|
---|
| 274 | ////////////////////////////////////////////////////////////////////////////
|
---|
[6213] | 275 | t_irc t_ephGlo::position(int GPSweek, double GPSweeks, double* xc, double* vv) const {
|
---|
[2221] | 276 |
|
---|
[6518] | 277 | if (_checkState == bad) {
|
---|
| 278 | return failure;
|
---|
| 279 | }
|
---|
| 280 |
|
---|
[2221] | 281 | static const double nominalStep = 10.0;
|
---|
| 282 |
|
---|
| 283 | memset(xc, 0, 4*sizeof(double));
|
---|
| 284 | memset(vv, 0, 3*sizeof(double));
|
---|
| 285 |
|
---|
[4018] | 286 | double dtPos = bncTime(GPSweek, GPSweeks) - _tt;
|
---|
[2221] | 287 |
|
---|
[6213] | 288 | if (fabs(dtPos) > 24*3600.0) {
|
---|
| 289 | return failure;
|
---|
| 290 | }
|
---|
| 291 |
|
---|
[2221] | 292 | int nSteps = int(fabs(dtPos) / nominalStep) + 1;
|
---|
| 293 | double step = dtPos / nSteps;
|
---|
| 294 |
|
---|
[2556] | 295 | double acc[3];
|
---|
[2557] | 296 | acc[0] = _x_acceleration * 1.e3;
|
---|
[2560] | 297 | acc[1] = _y_acceleration * 1.e3;
|
---|
| 298 | acc[2] = _z_acceleration * 1.e3;
|
---|
[2221] | 299 | for (int ii = 1; ii <= nSteps; ii++) {
|
---|
[4018] | 300 | _xv = rungeKutta4(_tt.gpssec(), _xv, step, acc, glo_deriv);
|
---|
| 301 | _tt = _tt + step;
|
---|
[2221] | 302 | }
|
---|
| 303 |
|
---|
| 304 | // Position and Velocity
|
---|
| 305 | // ---------------------
|
---|
| 306 | xc[0] = _xv(1);
|
---|
| 307 | xc[1] = _xv(2);
|
---|
| 308 | xc[2] = _xv(3);
|
---|
| 309 |
|
---|
| 310 | vv[0] = _xv(4);
|
---|
| 311 | vv[1] = _xv(5);
|
---|
| 312 | vv[2] = _xv(6);
|
---|
| 313 |
|
---|
| 314 | // Clock Correction
|
---|
| 315 | // ----------------
|
---|
[4018] | 316 | double dtClk = bncTime(GPSweek, GPSweeks) - _TOC;
|
---|
[2221] | 317 | xc[3] = -_tau + _gamma * dtClk;
|
---|
[6213] | 318 |
|
---|
| 319 | return success;
|
---|
[2221] | 320 | }
|
---|
| 321 |
|
---|
| 322 | // IOD of Glonass Ephemeris (virtual)
|
---|
| 323 | ////////////////////////////////////////////////////////////////////////////
|
---|
| 324 | int t_ephGlo::IOD() const {
|
---|
[4018] | 325 | bncTime tMoscow = _TOC - _gps_utc + 3 * 3600.0;
|
---|
[3538] | 326 | return int(tMoscow.daysec() / 900);
|
---|
[2221] | 327 | }
|
---|
| 328 |
|
---|
| 329 | // Set Glonass Ephemeris
|
---|
| 330 | ////////////////////////////////////////////////////////////////////////////
|
---|
[5133] | 331 | void t_ephGlo::set(const glonassephemeris* ee) {
|
---|
[2221] | 332 |
|
---|
[4097] | 333 | _receptDateTime = currentDateAndTimeGPS();
|
---|
| 334 |
|
---|
[5776] | 335 | _prn.set('R', ee->almanac_number);
|
---|
[2223] | 336 |
|
---|
[2234] | 337 | int ww = ee->GPSWeek;
|
---|
| 338 | int tow = ee->GPSTOW;
|
---|
[2257] | 339 | updatetime(&ww, &tow, ee->tb*1000, 0); // Moscow -> GPS
|
---|
[2223] | 340 |
|
---|
[3264] | 341 | // Check the day once more
|
---|
| 342 | // -----------------------
|
---|
[5133] | 343 | bool timeChanged = false;
|
---|
[3264] | 344 | {
|
---|
[3268] | 345 | const double secPerDay = 24 * 3600.0;
|
---|
| 346 | const double secPerWeek = 7 * secPerDay;
|
---|
[3266] | 347 | int ww_old = ww;
|
---|
| 348 | int tow_old = tow;
|
---|
[3264] | 349 | int currentWeek;
|
---|
| 350 | double currentSec;
|
---|
| 351 | currentGPSWeeks(currentWeek, currentSec);
|
---|
| 352 | bncTime currentTime(currentWeek, currentSec);
|
---|
| 353 | bncTime hTime(ww, (double) tow);
|
---|
| 354 |
|
---|
[3268] | 355 | if (hTime - currentTime > secPerDay/2.0) {
|
---|
[4904] | 356 | timeChanged = true;
|
---|
[4543] | 357 | tow -= int(secPerDay);
|
---|
[3268] | 358 | if (tow < 0) {
|
---|
[4543] | 359 | tow += int(secPerWeek);
|
---|
[3268] | 360 | ww -= 1;
|
---|
| 361 | }
|
---|
[3264] | 362 | }
|
---|
[3268] | 363 | else if (hTime - currentTime < -secPerDay/2.0) {
|
---|
[4904] | 364 | timeChanged = true;
|
---|
[4543] | 365 | tow += int(secPerDay);
|
---|
[3268] | 366 | if (tow > secPerWeek) {
|
---|
[4543] | 367 | tow -= int(secPerWeek);
|
---|
[3268] | 368 | ww += 1;
|
---|
| 369 | }
|
---|
[3264] | 370 | }
|
---|
| 371 |
|
---|
[5119] | 372 | if (false && timeChanged && BNC_CORE->mode() == t_bncCore::batchPostProcessing) {
|
---|
[3265] | 373 | bncTime newHTime(ww, (double) tow);
|
---|
[3269] | 374 | cout << "GLONASS " << ee->almanac_number << " Time Changed at "
|
---|
[3266] | 375 | << currentTime.datestr() << " " << currentTime.timestr()
|
---|
| 376 | << endl
|
---|
[3268] | 377 | << "old: " << hTime.datestr() << " " << hTime.timestr()
|
---|
[3266] | 378 | << endl
|
---|
| 379 | << "new: " << newHTime.datestr() << " " << newHTime.timestr()
|
---|
| 380 | << endl
|
---|
| 381 | << "eph: " << ee->GPSWeek << " " << ee->GPSTOW << " " << ee->tb
|
---|
| 382 | << endl
|
---|
| 383 | << "ww, tow (old): " << ww_old << " " << tow_old
|
---|
| 384 | << endl
|
---|
| 385 | << "ww, tow (new): " << ww << " " << tow
|
---|
[3267] | 386 | << endl << endl;
|
---|
[3264] | 387 | }
|
---|
| 388 | }
|
---|
| 389 |
|
---|
[3263] | 390 | bncTime hlpTime(ww, (double) tow);
|
---|
[3255] | 391 | unsigned year, month, day;
|
---|
| 392 | hlpTime.civil_date(year, month, day);
|
---|
| 393 | _gps_utc = gnumleap(year, month, day);
|
---|
| 394 |
|
---|
[4018] | 395 | _TOC.set(ww, tow);
|
---|
[2223] | 396 | _E = ee->E;
|
---|
| 397 | _tau = ee->tau;
|
---|
| 398 | _gamma = ee->gamma;
|
---|
| 399 | _x_pos = ee->x_pos;
|
---|
| 400 | _x_velocity = ee->x_velocity;
|
---|
| 401 | _x_acceleration = ee->x_acceleration;
|
---|
| 402 | _y_pos = ee->y_pos;
|
---|
| 403 | _y_velocity = ee->y_velocity;
|
---|
| 404 | _y_acceleration = ee->y_acceleration;
|
---|
| 405 | _z_pos = ee->z_pos;
|
---|
| 406 | _z_velocity = ee->z_velocity;
|
---|
| 407 | _z_acceleration = ee->z_acceleration;
|
---|
| 408 | _health = 0;
|
---|
| 409 | _frequency_number = ee->frequency_number;
|
---|
[2257] | 410 | _tki = ee->tk-3*60*60; if (_tki < 0) _tki += 86400;
|
---|
[2223] | 411 |
|
---|
| 412 | // Initialize status vector
|
---|
| 413 | // ------------------------
|
---|
[4018] | 414 | _tt = _TOC;
|
---|
[2223] | 415 |
|
---|
| 416 | _xv(1) = _x_pos * 1.e3;
|
---|
| 417 | _xv(2) = _y_pos * 1.e3;
|
---|
| 418 | _xv(3) = _z_pos * 1.e3;
|
---|
| 419 | _xv(4) = _x_velocity * 1.e3;
|
---|
| 420 | _xv(5) = _y_velocity * 1.e3;
|
---|
| 421 | _xv(6) = _z_velocity * 1.e3;
|
---|
[2221] | 422 | }
|
---|
[2771] | 423 |
|
---|
| 424 | // Set Galileo Satellite Position
|
---|
| 425 | ////////////////////////////////////////////////////////////////////////////
|
---|
| 426 | void t_ephGal::set(const galileoephemeris* ee) {
|
---|
| 427 |
|
---|
[4097] | 428 | _receptDateTime = currentDateAndTimeGPS();
|
---|
| 429 |
|
---|
[5776] | 430 | _prn.set('E', ee->satellite);
|
---|
[2771] | 431 |
|
---|
[4018] | 432 | _TOC.set(ee->Week, ee->TOC);
|
---|
[3734] | 433 | _clock_bias = ee->clock_bias;
|
---|
| 434 | _clock_drift = ee->clock_drift;
|
---|
[2771] | 435 | _clock_driftrate = ee->clock_driftrate;
|
---|
| 436 |
|
---|
[4018] | 437 | _IODnav = ee->IODnav;
|
---|
[2771] | 438 | _Crs = ee->Crs;
|
---|
| 439 | _Delta_n = ee->Delta_n;
|
---|
| 440 | _M0 = ee->M0;
|
---|
[4018] | 441 |
|
---|
[2771] | 442 | _Cuc = ee->Cuc;
|
---|
| 443 | _e = ee->e;
|
---|
| 444 | _Cus = ee->Cus;
|
---|
| 445 | _sqrt_A = ee->sqrt_A;
|
---|
[4018] | 446 |
|
---|
[5137] | 447 | _TOEsec = _TOC.gpssec();
|
---|
| 448 | //// _TOEsec = ee->TOE; //// TODO:
|
---|
[2771] | 449 | _Cic = ee->Cic;
|
---|
| 450 | _OMEGA0 = ee->OMEGA0;
|
---|
| 451 | _Cis = ee->Cis;
|
---|
[4018] | 452 |
|
---|
[2771] | 453 | _i0 = ee->i0;
|
---|
| 454 | _Crc = ee->Crc;
|
---|
| 455 | _omega = ee->omega;
|
---|
| 456 | _OMEGADOT = ee->OMEGADOT;
|
---|
[4018] | 457 |
|
---|
[2771] | 458 | _IDOT = ee->IDOT;
|
---|
[4018] | 459 | _TOEweek = ee->Week;
|
---|
| 460 |
|
---|
[3734] | 461 | _SISA = ee->SISA;
|
---|
[4018] | 462 | _E5aHS = ee->E5aHS;
|
---|
[5541] | 463 | _E5bHS = ee->E5bHS;
|
---|
[3734] | 464 | _BGD_1_5A = ee->BGD_1_5A;
|
---|
| 465 | _BGD_1_5B = ee->BGD_1_5B;
|
---|
[3659] | 466 |
|
---|
[4018] | 467 | _TOT = 0.9999e9;
|
---|
| 468 |
|
---|
[5539] | 469 | _flags = ee->flags;
|
---|
[2771] | 470 | }
|
---|
| 471 |
|
---|
| 472 | // Compute Galileo Satellite Position (virtual)
|
---|
| 473 | ////////////////////////////////////////////////////////////////////////////
|
---|
[6213] | 474 | t_irc t_ephGal::position(int GPSweek, double GPSweeks, double* xc, double* vv) const {
|
---|
[2771] | 475 |
|
---|
[6518] | 476 | if (_checkState == bad) {
|
---|
| 477 | return failure;
|
---|
| 478 | }
|
---|
| 479 |
|
---|
[2771] | 480 | static const double omegaEarth = 7292115.1467e-11;
|
---|
[5277] | 481 | static const double gmWGS = 398.60044e12;
|
---|
[2771] | 482 |
|
---|
| 483 | memset(xc, 0, 4*sizeof(double));
|
---|
| 484 | memset(vv, 0, 3*sizeof(double));
|
---|
| 485 |
|
---|
| 486 | double a0 = _sqrt_A * _sqrt_A;
|
---|
| 487 | if (a0 == 0) {
|
---|
[6213] | 488 | return failure;
|
---|
[2771] | 489 | }
|
---|
| 490 |
|
---|
| 491 | double n0 = sqrt(gmWGS/(a0*a0*a0));
|
---|
[4018] | 492 |
|
---|
| 493 | bncTime tt(GPSweek, GPSweeks);
|
---|
| 494 | double tk = tt - bncTime(_TOC.gpsw(), _TOEsec);
|
---|
| 495 |
|
---|
[2771] | 496 | double n = n0 + _Delta_n;
|
---|
| 497 | double M = _M0 + n*tk;
|
---|
| 498 | double E = M;
|
---|
| 499 | double E_last;
|
---|
| 500 | do {
|
---|
| 501 | E_last = E;
|
---|
| 502 | E = M + _e*sin(E);
|
---|
| 503 | } while ( fabs(E-E_last)*a0 > 0.001 );
|
---|
| 504 | double v = 2.0*atan( sqrt( (1.0 + _e)/(1.0 - _e) )*tan( E/2 ) );
|
---|
| 505 | double u0 = v + _omega;
|
---|
| 506 | double sin2u0 = sin(2*u0);
|
---|
| 507 | double cos2u0 = cos(2*u0);
|
---|
| 508 | double r = a0*(1 - _e*cos(E)) + _Crc*cos2u0 + _Crs*sin2u0;
|
---|
| 509 | double i = _i0 + _IDOT*tk + _Cic*cos2u0 + _Cis*sin2u0;
|
---|
| 510 | double u = u0 + _Cuc*cos2u0 + _Cus*sin2u0;
|
---|
| 511 | double xp = r*cos(u);
|
---|
| 512 | double yp = r*sin(u);
|
---|
| 513 | double OM = _OMEGA0 + (_OMEGADOT - omegaEarth)*tk -
|
---|
[4018] | 514 | omegaEarth*_TOEsec;
|
---|
[2771] | 515 |
|
---|
| 516 | double sinom = sin(OM);
|
---|
| 517 | double cosom = cos(OM);
|
---|
| 518 | double sini = sin(i);
|
---|
| 519 | double cosi = cos(i);
|
---|
| 520 | xc[0] = xp*cosom - yp*cosi*sinom;
|
---|
| 521 | xc[1] = xp*sinom + yp*cosi*cosom;
|
---|
| 522 | xc[2] = yp*sini;
|
---|
| 523 |
|
---|
[4018] | 524 | double tc = tt - _TOC;
|
---|
[2771] | 525 | xc[3] = _clock_bias + _clock_drift*tc + _clock_driftrate*tc*tc;
|
---|
| 526 |
|
---|
| 527 | // Velocity
|
---|
| 528 | // --------
|
---|
| 529 | double tanv2 = tan(v/2);
|
---|
| 530 | double dEdM = 1 / (1 - _e*cos(E));
|
---|
| 531 | double dotv = sqrt((1.0 + _e)/(1.0 - _e)) / cos(E/2)/cos(E/2) / (1 + tanv2*tanv2)
|
---|
| 532 | * dEdM * n;
|
---|
| 533 | double dotu = dotv + (-_Cuc*sin2u0 + _Cus*cos2u0)*2*dotv;
|
---|
| 534 | double dotom = _OMEGADOT - omegaEarth;
|
---|
| 535 | double doti = _IDOT + (-_Cic*sin2u0 + _Cis*cos2u0)*2*dotv;
|
---|
| 536 | double dotr = a0 * _e*sin(E) * dEdM * n
|
---|
| 537 | + (-_Crc*sin2u0 + _Crs*cos2u0)*2*dotv;
|
---|
| 538 | double dotx = dotr*cos(u) - r*sin(u)*dotu;
|
---|
| 539 | double doty = dotr*sin(u) + r*cos(u)*dotu;
|
---|
| 540 |
|
---|
| 541 | vv[0] = cosom *dotx - cosi*sinom *doty // dX / dr
|
---|
| 542 | - xp*sinom*dotom - yp*cosi*cosom*dotom // dX / dOMEGA
|
---|
| 543 | + yp*sini*sinom*doti; // dX / di
|
---|
| 544 |
|
---|
| 545 | vv[1] = sinom *dotx + cosi*cosom *doty
|
---|
| 546 | + xp*cosom*dotom - yp*cosi*sinom*dotom
|
---|
| 547 | - yp*sini*cosom*doti;
|
---|
| 548 |
|
---|
| 549 | vv[2] = sini *doty + yp*cosi *doti;
|
---|
| 550 |
|
---|
| 551 | // Relativistic Correction
|
---|
| 552 | // -----------------------
|
---|
| 553 | // xc(4) -= 4.442807633e-10 * _e * sqrt(a0) *sin(E);
|
---|
| 554 | xc[3] -= 2.0 * (xc[0]*vv[0] + xc[1]*vv[1] + xc[2]*vv[2]) / t_CST::c / t_CST::c;
|
---|
[6213] | 555 |
|
---|
| 556 | return success;
|
---|
[2771] | 557 | }
|
---|
| 558 |
|
---|
[3659] | 559 | // Constructor
|
---|
| 560 | //////////////////////////////////////////////////////////////////////////////
|
---|
| 561 | t_ephGPS::t_ephGPS(float rnxVersion, const QStringList& lines) {
|
---|
[3664] | 562 |
|
---|
[3699] | 563 | const int nLines = 8;
|
---|
| 564 |
|
---|
| 565 | if (lines.size() != nLines) {
|
---|
[6518] | 566 | _checkState = bad;
|
---|
[3660] | 567 | return;
|
---|
| 568 | }
|
---|
[3664] | 569 |
|
---|
[3668] | 570 | // RINEX Format
|
---|
| 571 | // ------------
|
---|
| 572 | int fieldLen = 19;
|
---|
| 573 |
|
---|
[3666] | 574 | int pos[4];
|
---|
| 575 | pos[0] = (rnxVersion <= 2.12) ? 3 : 4;
|
---|
[3668] | 576 | pos[1] = pos[0] + fieldLen;
|
---|
| 577 | pos[2] = pos[1] + fieldLen;
|
---|
| 578 | pos[3] = pos[2] + fieldLen;
|
---|
[3664] | 579 |
|
---|
| 580 | // Read eight lines
|
---|
| 581 | // ----------------
|
---|
[3699] | 582 | for (int iLine = 0; iLine < nLines; iLine++) {
|
---|
[3664] | 583 | QString line = lines[iLine];
|
---|
| 584 |
|
---|
| 585 | if ( iLine == 0 ) {
|
---|
[3666] | 586 | QTextStream in(line.left(pos[1]).toAscii());
|
---|
| 587 |
|
---|
| 588 | int year, month, day, hour, min;
|
---|
| 589 | double sec;
|
---|
| 590 |
|
---|
[5776] | 591 | QString prnStr;
|
---|
| 592 | in >> prnStr >> year >> month >> day >> hour >> min >> sec;
|
---|
[6377] | 593 | if (prnStr.at(0) == 'G') {
|
---|
[5776] | 594 | _prn.set('G', prnStr.mid(1).toInt());
|
---|
| 595 | }
|
---|
[6377] | 596 | else if (prnStr.at(0) == 'J') {
|
---|
| 597 | _prn.set('J', prnStr.mid(1).toInt());
|
---|
| 598 | }
|
---|
[5776] | 599 | else {
|
---|
| 600 | _prn.set('G', prnStr.toInt());
|
---|
| 601 | }
|
---|
[3666] | 602 |
|
---|
| 603 | if (year < 80) {
|
---|
| 604 | year += 2000;
|
---|
[3664] | 605 | }
|
---|
[3666] | 606 | else if (year < 100) {
|
---|
| 607 | year += 1900;
|
---|
| 608 | }
|
---|
| 609 |
|
---|
[4018] | 610 | _TOC.set(year, month, day, hour, min, sec);
|
---|
[3666] | 611 |
|
---|
| 612 | if ( readDbl(line, pos[1], fieldLen, _clock_bias ) ||
|
---|
| 613 | readDbl(line, pos[2], fieldLen, _clock_drift ) ||
|
---|
| 614 | readDbl(line, pos[3], fieldLen, _clock_driftrate) ) {
|
---|
[6518] | 615 | _checkState = bad;
|
---|
[3666] | 616 | return;
|
---|
| 617 | }
|
---|
[3660] | 618 | }
|
---|
[3664] | 619 |
|
---|
| 620 | else if ( iLine == 1 ) {
|
---|
[3666] | 621 | if ( readDbl(line, pos[0], fieldLen, _IODE ) ||
|
---|
| 622 | readDbl(line, pos[1], fieldLen, _Crs ) ||
|
---|
| 623 | readDbl(line, pos[2], fieldLen, _Delta_n) ||
|
---|
| 624 | readDbl(line, pos[3], fieldLen, _M0 ) ) {
|
---|
[6518] | 625 | _checkState = bad;
|
---|
[3664] | 626 | return;
|
---|
| 627 | }
|
---|
| 628 | }
|
---|
| 629 |
|
---|
| 630 | else if ( iLine == 2 ) {
|
---|
[3666] | 631 | if ( readDbl(line, pos[0], fieldLen, _Cuc ) ||
|
---|
| 632 | readDbl(line, pos[1], fieldLen, _e ) ||
|
---|
| 633 | readDbl(line, pos[2], fieldLen, _Cus ) ||
|
---|
| 634 | readDbl(line, pos[3], fieldLen, _sqrt_A) ) {
|
---|
[6518] | 635 | _checkState = bad;
|
---|
[3664] | 636 | return;
|
---|
| 637 | }
|
---|
| 638 | }
|
---|
| 639 |
|
---|
| 640 | else if ( iLine == 3 ) {
|
---|
[4018] | 641 | if ( readDbl(line, pos[0], fieldLen, _TOEsec) ||
|
---|
[3666] | 642 | readDbl(line, pos[1], fieldLen, _Cic ) ||
|
---|
| 643 | readDbl(line, pos[2], fieldLen, _OMEGA0) ||
|
---|
| 644 | readDbl(line, pos[3], fieldLen, _Cis ) ) {
|
---|
[6518] | 645 | _checkState = bad;
|
---|
[3664] | 646 | return;
|
---|
| 647 | }
|
---|
| 648 | }
|
---|
| 649 |
|
---|
| 650 | else if ( iLine == 4 ) {
|
---|
[3666] | 651 | if ( readDbl(line, pos[0], fieldLen, _i0 ) ||
|
---|
| 652 | readDbl(line, pos[1], fieldLen, _Crc ) ||
|
---|
| 653 | readDbl(line, pos[2], fieldLen, _omega ) ||
|
---|
| 654 | readDbl(line, pos[3], fieldLen, _OMEGADOT) ) {
|
---|
[6518] | 655 | _checkState = bad;
|
---|
[3664] | 656 | return;
|
---|
| 657 | }
|
---|
| 658 | }
|
---|
| 659 |
|
---|
| 660 | else if ( iLine == 5 ) {
|
---|
[4018] | 661 | if ( readDbl(line, pos[0], fieldLen, _IDOT ) ||
|
---|
| 662 | readDbl(line, pos[1], fieldLen, _L2Codes) ||
|
---|
| 663 | readDbl(line, pos[2], fieldLen, _TOEweek ) ||
|
---|
| 664 | readDbl(line, pos[3], fieldLen, _L2PFlag) ) {
|
---|
[6518] | 665 | _checkState = bad;
|
---|
[3664] | 666 | return;
|
---|
| 667 | }
|
---|
| 668 | }
|
---|
| 669 |
|
---|
| 670 | else if ( iLine == 6 ) {
|
---|
[4018] | 671 | if ( readDbl(line, pos[0], fieldLen, _ura ) ||
|
---|
[3666] | 672 | readDbl(line, pos[1], fieldLen, _health) ||
|
---|
| 673 | readDbl(line, pos[2], fieldLen, _TGD ) ||
|
---|
| 674 | readDbl(line, pos[3], fieldLen, _IODC ) ) {
|
---|
[6518] | 675 | _checkState = bad;
|
---|
[3664] | 676 | return;
|
---|
| 677 | }
|
---|
| 678 | }
|
---|
| 679 |
|
---|
| 680 | else if ( iLine == 7 ) {
|
---|
[4224] | 681 | if ( readDbl(line, pos[0], fieldLen, _TOT) ) {
|
---|
[6518] | 682 | _checkState = bad;
|
---|
[3664] | 683 | return;
|
---|
| 684 | }
|
---|
[4224] | 685 | readDbl(line, pos[1], fieldLen, _fitInterval); // _fitInterval optional
|
---|
[3664] | 686 | }
|
---|
[3660] | 687 | }
|
---|
[3659] | 688 | }
|
---|
| 689 |
|
---|
| 690 | // Constructor
|
---|
| 691 | //////////////////////////////////////////////////////////////////////////////
|
---|
| 692 | t_ephGlo::t_ephGlo(float rnxVersion, const QStringList& lines) {
|
---|
| 693 |
|
---|
[3699] | 694 | const int nLines = 4;
|
---|
| 695 |
|
---|
| 696 | if (lines.size() != nLines) {
|
---|
[6518] | 697 | _checkState = bad;
|
---|
[3699] | 698 | return;
|
---|
| 699 | }
|
---|
| 700 |
|
---|
| 701 | // RINEX Format
|
---|
| 702 | // ------------
|
---|
| 703 | int fieldLen = 19;
|
---|
| 704 |
|
---|
| 705 | int pos[4];
|
---|
| 706 | pos[0] = (rnxVersion <= 2.12) ? 3 : 4;
|
---|
| 707 | pos[1] = pos[0] + fieldLen;
|
---|
| 708 | pos[2] = pos[1] + fieldLen;
|
---|
| 709 | pos[3] = pos[2] + fieldLen;
|
---|
| 710 |
|
---|
| 711 | // Read four lines
|
---|
| 712 | // ---------------
|
---|
| 713 | for (int iLine = 0; iLine < nLines; iLine++) {
|
---|
| 714 | QString line = lines[iLine];
|
---|
| 715 |
|
---|
| 716 | if ( iLine == 0 ) {
|
---|
| 717 | QTextStream in(line.left(pos[1]).toAscii());
|
---|
| 718 |
|
---|
| 719 | int year, month, day, hour, min;
|
---|
| 720 | double sec;
|
---|
| 721 |
|
---|
[5776] | 722 | QString prnStr;
|
---|
| 723 | in >> prnStr >> year >> month >> day >> hour >> min >> sec;
|
---|
| 724 | if (prnStr.at(0) == 'R') {
|
---|
| 725 | _prn.set('R', prnStr.mid(1).toInt());
|
---|
| 726 | }
|
---|
| 727 | else {
|
---|
| 728 | _prn.set('R', prnStr.toInt());
|
---|
| 729 | }
|
---|
[3699] | 730 |
|
---|
| 731 | if (year < 80) {
|
---|
| 732 | year += 2000;
|
---|
| 733 | }
|
---|
| 734 | else if (year < 100) {
|
---|
| 735 | year += 1900;
|
---|
| 736 | }
|
---|
| 737 |
|
---|
[3760] | 738 | _gps_utc = gnumleap(year, month, day);
|
---|
| 739 |
|
---|
[4018] | 740 | _TOC.set(year, month, day, hour, min, sec);
|
---|
| 741 | _TOC = _TOC + _gps_utc;
|
---|
[3699] | 742 |
|
---|
[4018] | 743 | if ( readDbl(line, pos[1], fieldLen, _tau ) ||
|
---|
| 744 | readDbl(line, pos[2], fieldLen, _gamma) ||
|
---|
| 745 | readDbl(line, pos[3], fieldLen, _tki ) ) {
|
---|
[6518] | 746 | _checkState = bad;
|
---|
[3699] | 747 | return;
|
---|
| 748 | }
|
---|
[3765] | 749 |
|
---|
| 750 | _tau = -_tau;
|
---|
[3699] | 751 | }
|
---|
| 752 |
|
---|
| 753 | else if ( iLine == 1 ) {
|
---|
| 754 | if ( readDbl(line, pos[0], fieldLen, _x_pos ) ||
|
---|
| 755 | readDbl(line, pos[1], fieldLen, _x_velocity ) ||
|
---|
| 756 | readDbl(line, pos[2], fieldLen, _x_acceleration) ||
|
---|
| 757 | readDbl(line, pos[3], fieldLen, _health ) ) {
|
---|
[6518] | 758 | _checkState = bad;
|
---|
[3699] | 759 | return;
|
---|
| 760 | }
|
---|
| 761 | }
|
---|
| 762 |
|
---|
| 763 | else if ( iLine == 2 ) {
|
---|
| 764 | if ( readDbl(line, pos[0], fieldLen, _y_pos ) ||
|
---|
| 765 | readDbl(line, pos[1], fieldLen, _y_velocity ) ||
|
---|
| 766 | readDbl(line, pos[2], fieldLen, _y_acceleration ) ||
|
---|
| 767 | readDbl(line, pos[3], fieldLen, _frequency_number) ) {
|
---|
[6518] | 768 | _checkState = bad;
|
---|
[3699] | 769 | return;
|
---|
| 770 | }
|
---|
| 771 | }
|
---|
| 772 |
|
---|
| 773 | else if ( iLine == 3 ) {
|
---|
| 774 | if ( readDbl(line, pos[0], fieldLen, _z_pos ) ||
|
---|
| 775 | readDbl(line, pos[1], fieldLen, _z_velocity ) ||
|
---|
| 776 | readDbl(line, pos[2], fieldLen, _z_acceleration) ||
|
---|
| 777 | readDbl(line, pos[3], fieldLen, _E ) ) {
|
---|
[6518] | 778 | _checkState = bad;
|
---|
[3699] | 779 | return;
|
---|
| 780 | }
|
---|
| 781 | }
|
---|
| 782 | }
|
---|
| 783 |
|
---|
| 784 | // Initialize status vector
|
---|
| 785 | // ------------------------
|
---|
[4018] | 786 | _tt = _TOC;
|
---|
| 787 | _xv.ReSize(6);
|
---|
[3699] | 788 | _xv(1) = _x_pos * 1.e3;
|
---|
| 789 | _xv(2) = _y_pos * 1.e3;
|
---|
| 790 | _xv(3) = _z_pos * 1.e3;
|
---|
| 791 | _xv(4) = _x_velocity * 1.e3;
|
---|
| 792 | _xv(5) = _y_velocity * 1.e3;
|
---|
| 793 | _xv(6) = _z_velocity * 1.e3;
|
---|
[3659] | 794 | }
|
---|
| 795 |
|
---|
| 796 | // Constructor
|
---|
| 797 | //////////////////////////////////////////////////////////////////////////////
|
---|
[4891] | 798 | t_ephGal::t_ephGal(float rnxVersion, const QStringList& lines) {
|
---|
[3659] | 799 |
|
---|
[4891] | 800 | const int nLines = 8;
|
---|
| 801 |
|
---|
| 802 | if (lines.size() != nLines) {
|
---|
[6518] | 803 | _checkState = bad;
|
---|
[4891] | 804 | return;
|
---|
| 805 | }
|
---|
| 806 |
|
---|
| 807 | // RINEX Format
|
---|
| 808 | // ------------
|
---|
| 809 | int fieldLen = 19;
|
---|
| 810 |
|
---|
| 811 | int pos[4];
|
---|
| 812 | pos[0] = (rnxVersion <= 2.12) ? 3 : 4;
|
---|
| 813 | pos[1] = pos[0] + fieldLen;
|
---|
| 814 | pos[2] = pos[1] + fieldLen;
|
---|
| 815 | pos[3] = pos[2] + fieldLen;
|
---|
| 816 |
|
---|
| 817 | // Read eight lines
|
---|
| 818 | // ----------------
|
---|
| 819 | for (int iLine = 0; iLine < nLines; iLine++) {
|
---|
| 820 | QString line = lines[iLine];
|
---|
| 821 |
|
---|
| 822 | if ( iLine == 0 ) {
|
---|
| 823 | QTextStream in(line.left(pos[1]).toAscii());
|
---|
| 824 |
|
---|
| 825 | int year, month, day, hour, min;
|
---|
| 826 | double sec;
|
---|
| 827 |
|
---|
[5776] | 828 | QString prnStr;
|
---|
| 829 | in >> prnStr >> year >> month >> day >> hour >> min >> sec;
|
---|
| 830 | if (prnStr.at(0) == 'E') {
|
---|
| 831 | _prn.set('E', prnStr.mid(1).toInt());
|
---|
| 832 | }
|
---|
| 833 | else {
|
---|
| 834 | _prn.set('E', prnStr.toInt());
|
---|
| 835 | }
|
---|
[4891] | 836 |
|
---|
| 837 | if (year < 80) {
|
---|
| 838 | year += 2000;
|
---|
| 839 | }
|
---|
| 840 | else if (year < 100) {
|
---|
| 841 | year += 1900;
|
---|
| 842 | }
|
---|
| 843 |
|
---|
| 844 | _TOC.set(year, month, day, hour, min, sec);
|
---|
| 845 |
|
---|
| 846 | if ( readDbl(line, pos[1], fieldLen, _clock_bias ) ||
|
---|
| 847 | readDbl(line, pos[2], fieldLen, _clock_drift ) ||
|
---|
| 848 | readDbl(line, pos[3], fieldLen, _clock_driftrate) ) {
|
---|
[6518] | 849 | _checkState = bad;
|
---|
[4891] | 850 | return;
|
---|
| 851 | }
|
---|
| 852 | }
|
---|
| 853 |
|
---|
| 854 | else if ( iLine == 1 ) {
|
---|
| 855 | if ( readDbl(line, pos[0], fieldLen, _IODnav ) ||
|
---|
| 856 | readDbl(line, pos[1], fieldLen, _Crs ) ||
|
---|
| 857 | readDbl(line, pos[2], fieldLen, _Delta_n) ||
|
---|
| 858 | readDbl(line, pos[3], fieldLen, _M0 ) ) {
|
---|
[6518] | 859 | _checkState = bad;
|
---|
[4891] | 860 | return;
|
---|
| 861 | }
|
---|
| 862 | }
|
---|
| 863 |
|
---|
| 864 | else if ( iLine == 2 ) {
|
---|
| 865 | if ( readDbl(line, pos[0], fieldLen, _Cuc ) ||
|
---|
| 866 | readDbl(line, pos[1], fieldLen, _e ) ||
|
---|
| 867 | readDbl(line, pos[2], fieldLen, _Cus ) ||
|
---|
| 868 | readDbl(line, pos[3], fieldLen, _sqrt_A) ) {
|
---|
[6518] | 869 | _checkState = bad;
|
---|
[4891] | 870 | return;
|
---|
| 871 | }
|
---|
| 872 | }
|
---|
| 873 |
|
---|
| 874 | else if ( iLine == 3 ) {
|
---|
| 875 | if ( readDbl(line, pos[0], fieldLen, _TOEsec) ||
|
---|
| 876 | readDbl(line, pos[1], fieldLen, _Cic ) ||
|
---|
| 877 | readDbl(line, pos[2], fieldLen, _OMEGA0) ||
|
---|
| 878 | readDbl(line, pos[3], fieldLen, _Cis ) ) {
|
---|
[6518] | 879 | _checkState = bad;
|
---|
[4891] | 880 | return;
|
---|
| 881 | }
|
---|
| 882 | }
|
---|
| 883 |
|
---|
| 884 | else if ( iLine == 4 ) {
|
---|
| 885 | if ( readDbl(line, pos[0], fieldLen, _i0 ) ||
|
---|
| 886 | readDbl(line, pos[1], fieldLen, _Crc ) ||
|
---|
| 887 | readDbl(line, pos[2], fieldLen, _omega ) ||
|
---|
| 888 | readDbl(line, pos[3], fieldLen, _OMEGADOT) ) {
|
---|
[6518] | 889 | _checkState = bad;
|
---|
[4891] | 890 | return;
|
---|
| 891 | }
|
---|
| 892 | }
|
---|
| 893 |
|
---|
| 894 | else if ( iLine == 5 ) {
|
---|
| 895 | if ( readDbl(line, pos[0], fieldLen, _IDOT ) ||
|
---|
| 896 | readDbl(line, pos[2], fieldLen, _TOEweek) ) {
|
---|
[6518] | 897 | _checkState = bad;
|
---|
[4891] | 898 | return;
|
---|
| 899 | }
|
---|
| 900 | }
|
---|
| 901 |
|
---|
| 902 | else if ( iLine == 6 ) {
|
---|
| 903 | if ( readDbl(line, pos[0], fieldLen, _SISA ) ||
|
---|
| 904 | readDbl(line, pos[1], fieldLen, _E5aHS ) ||
|
---|
| 905 | readDbl(line, pos[2], fieldLen, _BGD_1_5A) ||
|
---|
| 906 | readDbl(line, pos[3], fieldLen, _BGD_1_5B) ) {
|
---|
[6518] | 907 | _checkState = bad;
|
---|
[4891] | 908 | return;
|
---|
| 909 | }
|
---|
| 910 | }
|
---|
| 911 |
|
---|
| 912 | else if ( iLine == 7 ) {
|
---|
| 913 | if ( readDbl(line, pos[0], fieldLen, _TOT) ) {
|
---|
[6518] | 914 | _checkState = bad;
|
---|
[4891] | 915 | return;
|
---|
| 916 | }
|
---|
| 917 | }
|
---|
| 918 | }
|
---|
[3659] | 919 | }
|
---|
[4013] | 920 |
|
---|
[4021] | 921 | //
|
---|
[4013] | 922 | //////////////////////////////////////////////////////////////////////////////
|
---|
[5776] | 923 | QString t_eph::rinexDateStr(const bncTime& tt, const t_prn& prn, double version) {
|
---|
| 924 | QString prnStr(prn.toString().c_str());
|
---|
| 925 | return rinexDateStr(tt, prnStr, version);
|
---|
| 926 | }
|
---|
[4013] | 927 |
|
---|
[5776] | 928 | //
|
---|
| 929 | //////////////////////////////////////////////////////////////////////////////
|
---|
| 930 | QString t_eph::rinexDateStr(const bncTime& tt, const QString& prnStr, double version) {
|
---|
| 931 |
|
---|
[4021] | 932 | QString datStr;
|
---|
[4013] | 933 |
|
---|
| 934 | unsigned year, month, day, hour, min;
|
---|
[4018] | 935 | double sec;
|
---|
[4029] | 936 | tt.civil_date(year, month, day);
|
---|
| 937 | tt.civil_time(hour, min, sec);
|
---|
[4013] | 938 |
|
---|
[4021] | 939 | QTextStream out(&datStr);
|
---|
[4013] | 940 |
|
---|
| 941 | if (version < 3.0) {
|
---|
[5776] | 942 | QString prnHlp = prnStr.mid(1,2); if (prnHlp[0] == '0') prnHlp[0] = ' ';
|
---|
[4017] | 943 | out << prnHlp << QString(" %1 %2 %3 %4 %5%6")
|
---|
[4013] | 944 | .arg(year % 100, 2, 10, QChar('0'))
|
---|
| 945 | .arg(month, 2)
|
---|
| 946 | .arg(day, 2)
|
---|
| 947 | .arg(hour, 2)
|
---|
| 948 | .arg(min, 2)
|
---|
[4016] | 949 | .arg(sec, 5, 'f',1);
|
---|
[4013] | 950 | }
|
---|
| 951 | else {
|
---|
[5776] | 952 | out << prnStr << QString(" %1 %2 %3 %4 %5 %6")
|
---|
[4013] | 953 | .arg(year, 4)
|
---|
| 954 | .arg(month, 2, 10, QChar('0'))
|
---|
| 955 | .arg(day, 2, 10, QChar('0'))
|
---|
| 956 | .arg(hour, 2, 10, QChar('0'))
|
---|
| 957 | .arg(min, 2, 10, QChar('0'))
|
---|
| 958 | .arg(int(sec), 2, 10, QChar('0'));
|
---|
| 959 | }
|
---|
[4021] | 960 |
|
---|
| 961 | return datStr;
|
---|
| 962 | }
|
---|
| 963 |
|
---|
| 964 | // RINEX Format String
|
---|
| 965 | //////////////////////////////////////////////////////////////////////////////
|
---|
| 966 | QString t_ephGPS::toString(double version) const {
|
---|
| 967 |
|
---|
[4029] | 968 | QString rnxStr = rinexDateStr(_TOC, _prn, version);
|
---|
[4013] | 969 |
|
---|
[4021] | 970 | QTextStream out(&rnxStr);
|
---|
| 971 |
|
---|
[4013] | 972 | out << QString("%1%2%3\n")
|
---|
| 973 | .arg(_clock_bias, 19, 'e', 12)
|
---|
| 974 | .arg(_clock_drift, 19, 'e', 12)
|
---|
| 975 | .arg(_clock_driftrate, 19, 'e', 12);
|
---|
| 976 |
|
---|
[4015] | 977 | QString fmt = version < 3.0 ? " %1%2%3%4\n" : " %1%2%3%4\n";
|
---|
| 978 |
|
---|
| 979 | out << QString(fmt)
|
---|
[4013] | 980 | .arg(_IODE, 19, 'e', 12)
|
---|
| 981 | .arg(_Crs, 19, 'e', 12)
|
---|
| 982 | .arg(_Delta_n, 19, 'e', 12)
|
---|
| 983 | .arg(_M0, 19, 'e', 12);
|
---|
| 984 |
|
---|
[4015] | 985 | out << QString(fmt)
|
---|
[4013] | 986 | .arg(_Cuc, 19, 'e', 12)
|
---|
| 987 | .arg(_e, 19, 'e', 12)
|
---|
| 988 | .arg(_Cus, 19, 'e', 12)
|
---|
| 989 | .arg(_sqrt_A, 19, 'e', 12);
|
---|
| 990 |
|
---|
[4015] | 991 | out << QString(fmt)
|
---|
[4018] | 992 | .arg(_TOEsec, 19, 'e', 12)
|
---|
[4013] | 993 | .arg(_Cic, 19, 'e', 12)
|
---|
| 994 | .arg(_OMEGA0, 19, 'e', 12)
|
---|
| 995 | .arg(_Cis, 19, 'e', 12);
|
---|
| 996 |
|
---|
[4015] | 997 | out << QString(fmt)
|
---|
[4013] | 998 | .arg(_i0, 19, 'e', 12)
|
---|
| 999 | .arg(_Crc, 19, 'e', 12)
|
---|
| 1000 | .arg(_omega, 19, 'e', 12)
|
---|
| 1001 | .arg(_OMEGADOT, 19, 'e', 12);
|
---|
| 1002 |
|
---|
[4015] | 1003 | out << QString(fmt)
|
---|
[4018] | 1004 | .arg(_IDOT, 19, 'e', 12)
|
---|
| 1005 | .arg(_L2Codes, 19, 'e', 12)
|
---|
| 1006 | .arg(_TOEweek, 19, 'e', 12)
|
---|
| 1007 | .arg(_L2PFlag, 19, 'e', 12);
|
---|
[4013] | 1008 |
|
---|
[4015] | 1009 | out << QString(fmt)
|
---|
[4018] | 1010 | .arg(_ura, 19, 'e', 12)
|
---|
[4013] | 1011 | .arg(_health, 19, 'e', 12)
|
---|
| 1012 | .arg(_TGD, 19, 'e', 12)
|
---|
| 1013 | .arg(_IODC, 19, 'e', 12);
|
---|
| 1014 |
|
---|
[4015] | 1015 | out << QString(fmt)
|
---|
[4018] | 1016 | .arg(_TOT, 19, 'e', 12)
|
---|
| 1017 | .arg(_fitInterval, 19, 'e', 12)
|
---|
[4024] | 1018 | .arg("", 19, QChar(' '))
|
---|
| 1019 | .arg("", 19, QChar(' '));
|
---|
[4013] | 1020 |
|
---|
| 1021 | return rnxStr;
|
---|
| 1022 | }
|
---|
[4023] | 1023 |
|
---|
| 1024 | // RINEX Format String
|
---|
| 1025 | //////////////////////////////////////////////////////////////////////////////
|
---|
| 1026 | QString t_ephGlo::toString(double version) const {
|
---|
| 1027 |
|
---|
[4029] | 1028 | QString rnxStr = rinexDateStr(_TOC-_gps_utc, _prn, version);
|
---|
[4023] | 1029 |
|
---|
| 1030 | QTextStream out(&rnxStr);
|
---|
| 1031 |
|
---|
| 1032 | out << QString("%1%2%3\n")
|
---|
| 1033 | .arg(-_tau, 19, 'e', 12)
|
---|
| 1034 | .arg(_gamma, 19, 'e', 12)
|
---|
| 1035 | .arg(_tki, 19, 'e', 12);
|
---|
| 1036 |
|
---|
| 1037 | QString fmt = version < 3.0 ? " %1%2%3%4\n" : " %1%2%3%4\n";
|
---|
| 1038 |
|
---|
| 1039 | out << QString(fmt)
|
---|
| 1040 | .arg(_x_pos, 19, 'e', 12)
|
---|
| 1041 | .arg(_x_velocity, 19, 'e', 12)
|
---|
| 1042 | .arg(_x_acceleration, 19, 'e', 12)
|
---|
| 1043 | .arg(_health, 19, 'e', 12);
|
---|
| 1044 |
|
---|
| 1045 | out << QString(fmt)
|
---|
| 1046 | .arg(_y_pos, 19, 'e', 12)
|
---|
| 1047 | .arg(_y_velocity, 19, 'e', 12)
|
---|
| 1048 | .arg(_y_acceleration, 19, 'e', 12)
|
---|
| 1049 | .arg(_frequency_number, 19, 'e', 12);
|
---|
| 1050 |
|
---|
| 1051 | out << QString(fmt)
|
---|
| 1052 | .arg(_z_pos, 19, 'e', 12)
|
---|
| 1053 | .arg(_z_velocity, 19, 'e', 12)
|
---|
| 1054 | .arg(_z_acceleration, 19, 'e', 12)
|
---|
| 1055 | .arg(_E, 19, 'e', 12);
|
---|
| 1056 |
|
---|
| 1057 | return rnxStr;
|
---|
| 1058 | }
|
---|
| 1059 |
|
---|
| 1060 | // RINEX Format String
|
---|
| 1061 | //////////////////////////////////////////////////////////////////////////////
|
---|
| 1062 | QString t_ephGal::toString(double version) const {
|
---|
| 1063 |
|
---|
[4029] | 1064 | QString rnxStr = rinexDateStr(_TOC, _prn, version);
|
---|
[4023] | 1065 |
|
---|
| 1066 | QTextStream out(&rnxStr);
|
---|
| 1067 |
|
---|
| 1068 | out << QString("%1%2%3\n")
|
---|
| 1069 | .arg(_clock_bias, 19, 'e', 12)
|
---|
| 1070 | .arg(_clock_drift, 19, 'e', 12)
|
---|
| 1071 | .arg(_clock_driftrate, 19, 'e', 12);
|
---|
| 1072 |
|
---|
| 1073 | QString fmt = version < 3.0 ? " %1%2%3%4\n" : " %1%2%3%4\n";
|
---|
| 1074 |
|
---|
| 1075 | out << QString(fmt)
|
---|
| 1076 | .arg(_IODnav, 19, 'e', 12)
|
---|
| 1077 | .arg(_Crs, 19, 'e', 12)
|
---|
| 1078 | .arg(_Delta_n, 19, 'e', 12)
|
---|
| 1079 | .arg(_M0, 19, 'e', 12);
|
---|
| 1080 |
|
---|
| 1081 | out << QString(fmt)
|
---|
| 1082 | .arg(_Cuc, 19, 'e', 12)
|
---|
| 1083 | .arg(_e, 19, 'e', 12)
|
---|
| 1084 | .arg(_Cus, 19, 'e', 12)
|
---|
| 1085 | .arg(_sqrt_A, 19, 'e', 12);
|
---|
| 1086 |
|
---|
| 1087 | out << QString(fmt)
|
---|
| 1088 | .arg(_TOEsec, 19, 'e', 12)
|
---|
| 1089 | .arg(_Cic, 19, 'e', 12)
|
---|
| 1090 | .arg(_OMEGA0, 19, 'e', 12)
|
---|
| 1091 | .arg(_Cis, 19, 'e', 12);
|
---|
| 1092 |
|
---|
| 1093 | out << QString(fmt)
|
---|
| 1094 | .arg(_i0, 19, 'e', 12)
|
---|
| 1095 | .arg(_Crc, 19, 'e', 12)
|
---|
| 1096 | .arg(_omega, 19, 'e', 12)
|
---|
| 1097 | .arg(_OMEGADOT, 19, 'e', 12);
|
---|
| 1098 |
|
---|
[5532] | 1099 | int dataSource = 0;
|
---|
[5542] | 1100 | double HS = 0.0;
|
---|
[5539] | 1101 | if ( (_flags & GALEPHF_INAV) == GALEPHF_INAV ) {
|
---|
| 1102 | dataSource |= (1<<0);
|
---|
[5540] | 1103 | dataSource |= (1<<9);
|
---|
[5542] | 1104 | HS = _E5bHS;
|
---|
[5539] | 1105 | }
|
---|
| 1106 | else if ( (_flags & GALEPHF_FNAV) == GALEPHF_FNAV ) {
|
---|
| 1107 | dataSource |= (1<<1);
|
---|
[5540] | 1108 | dataSource |= (1<<8);
|
---|
[5542] | 1109 | HS = _E5aHS;
|
---|
[5539] | 1110 | }
|
---|
[4023] | 1111 | out << QString(fmt)
|
---|
[5532] | 1112 | .arg(_IDOT, 19, 'e', 12)
|
---|
| 1113 | .arg(double(dataSource), 19, 'e', 12)
|
---|
| 1114 | .arg(_TOEweek, 19, 'e', 12)
|
---|
| 1115 | .arg(0.0, 19, 'e', 12);
|
---|
[4023] | 1116 |
|
---|
| 1117 | out << QString(fmt)
|
---|
| 1118 | .arg(_SISA, 19, 'e', 12)
|
---|
[5542] | 1119 | .arg(HS, 19, 'e', 12)
|
---|
[4023] | 1120 | .arg(_BGD_1_5A, 19, 'e', 12)
|
---|
| 1121 | .arg(_BGD_1_5B, 19, 'e', 12);
|
---|
| 1122 |
|
---|
| 1123 | out << QString(fmt)
|
---|
| 1124 | .arg(_TOT, 19, 'e', 12)
|
---|
[4024] | 1125 | .arg("", 19, QChar(' '))
|
---|
| 1126 | .arg("", 19, QChar(' '))
|
---|
| 1127 | .arg("", 19, QChar(' '));
|
---|
[4023] | 1128 |
|
---|
| 1129 | return rnxStr;
|
---|
| 1130 | }
|
---|
| 1131 |
|
---|
[6385] | 1132 | // Constructor
|
---|
| 1133 | //////////////////////////////////////////////////////////////////////////////
|
---|
[6390] | 1134 | t_ephSBAS::t_ephSBAS(float rnxVersion, const QStringList& lines) {
|
---|
| 1135 |
|
---|
| 1136 | const int nLines = 4;
|
---|
| 1137 |
|
---|
| 1138 | if (lines.size() != nLines) {
|
---|
[6518] | 1139 | _checkState = bad;
|
---|
[6390] | 1140 | return;
|
---|
| 1141 | }
|
---|
| 1142 |
|
---|
| 1143 | // RINEX Format
|
---|
| 1144 | // ------------
|
---|
| 1145 | int fieldLen = 19;
|
---|
| 1146 |
|
---|
| 1147 | int pos[4];
|
---|
| 1148 | pos[0] = (rnxVersion <= 2.12) ? 3 : 4;
|
---|
| 1149 | pos[1] = pos[0] + fieldLen;
|
---|
| 1150 | pos[2] = pos[1] + fieldLen;
|
---|
| 1151 | pos[3] = pos[2] + fieldLen;
|
---|
| 1152 |
|
---|
| 1153 | // Read four lines
|
---|
| 1154 | // ---------------
|
---|
| 1155 | for (int iLine = 0; iLine < nLines; iLine++) {
|
---|
| 1156 | QString line = lines[iLine];
|
---|
| 1157 |
|
---|
| 1158 | if ( iLine == 0 ) {
|
---|
| 1159 | QTextStream in(line.left(pos[1]).toAscii());
|
---|
| 1160 |
|
---|
| 1161 | int year, month, day, hour, min;
|
---|
| 1162 | double sec;
|
---|
| 1163 |
|
---|
| 1164 | QString prnStr;
|
---|
| 1165 | in >> prnStr >> year >> month >> day >> hour >> min >> sec;
|
---|
| 1166 | if (prnStr.at(0) == 'S') {
|
---|
| 1167 | _prn.set('S', prnStr.mid(1).toInt());
|
---|
| 1168 | }
|
---|
| 1169 | else {
|
---|
| 1170 | _prn.set('S', prnStr.toInt());
|
---|
| 1171 | }
|
---|
| 1172 |
|
---|
| 1173 | if (year < 80) {
|
---|
| 1174 | year += 2000;
|
---|
| 1175 | }
|
---|
| 1176 | else if (year < 100) {
|
---|
| 1177 | year += 1900;
|
---|
| 1178 | }
|
---|
| 1179 |
|
---|
| 1180 | _TOC.set(year, month, day, hour, min, sec);
|
---|
| 1181 |
|
---|
| 1182 | if ( readDbl(line, pos[1], fieldLen, _agf0 ) ||
|
---|
| 1183 | readDbl(line, pos[2], fieldLen, _agf1 ) ||
|
---|
| 1184 | readDbl(line, pos[3], fieldLen, _TOW ) ) {
|
---|
[6518] | 1185 | _checkState = bad;
|
---|
[6390] | 1186 | return;
|
---|
| 1187 | }
|
---|
| 1188 | }
|
---|
| 1189 |
|
---|
| 1190 | else if ( iLine == 1 ) {
|
---|
| 1191 | if ( readDbl(line, pos[0], fieldLen, _x_pos ) ||
|
---|
| 1192 | readDbl(line, pos[1], fieldLen, _x_velocity ) ||
|
---|
| 1193 | readDbl(line, pos[2], fieldLen, _x_acceleration) ||
|
---|
| 1194 | readDbl(line, pos[3], fieldLen, _health ) ) {
|
---|
[6518] | 1195 | _checkState = bad;
|
---|
[6390] | 1196 | return;
|
---|
| 1197 | }
|
---|
| 1198 | }
|
---|
| 1199 |
|
---|
| 1200 | else if ( iLine == 2 ) {
|
---|
| 1201 | if ( readDbl(line, pos[0], fieldLen, _y_pos ) ||
|
---|
| 1202 | readDbl(line, pos[1], fieldLen, _y_velocity ) ||
|
---|
| 1203 | readDbl(line, pos[2], fieldLen, _y_acceleration ) ||
|
---|
| 1204 | readDbl(line, pos[3], fieldLen, _ura ) ) {
|
---|
[6518] | 1205 | _checkState = bad;
|
---|
[6390] | 1206 | return;
|
---|
| 1207 | }
|
---|
| 1208 | }
|
---|
| 1209 |
|
---|
| 1210 | else if ( iLine == 3 ) {
|
---|
[6536] | 1211 | double iodn;
|
---|
[6390] | 1212 | if ( readDbl(line, pos[0], fieldLen, _z_pos ) ||
|
---|
| 1213 | readDbl(line, pos[1], fieldLen, _z_velocity ) ||
|
---|
| 1214 | readDbl(line, pos[2], fieldLen, _z_acceleration) ||
|
---|
[6536] | 1215 | readDbl(line, pos[3], fieldLen, iodn ) ) {
|
---|
[6518] | 1216 | _checkState = bad;
|
---|
[6390] | 1217 | return;
|
---|
[6536] | 1218 | _IODN = int(iodn);
|
---|
[6390] | 1219 | }
|
---|
| 1220 | }
|
---|
| 1221 | }
|
---|
| 1222 |
|
---|
| 1223 | _x_pos *= 1.e3;
|
---|
| 1224 | _y_pos *= 1.e3;
|
---|
| 1225 | _z_pos *= 1.e3;
|
---|
| 1226 | _x_velocity *= 1.e3;
|
---|
| 1227 | _y_velocity *= 1.e3;
|
---|
| 1228 | _z_velocity *= 1.e3;
|
---|
| 1229 | _x_acceleration *= 1.e3;
|
---|
| 1230 | _y_acceleration *= 1.e3;
|
---|
| 1231 | _z_acceleration *= 1.e3;
|
---|
[6385] | 1232 | }
|
---|
| 1233 |
|
---|
| 1234 | // Set SBAS Satellite Position
|
---|
| 1235 | ////////////////////////////////////////////////////////////////////////////
|
---|
| 1236 | void t_ephSBAS::set(const sbasephemeris* ee) {
|
---|
[6386] | 1237 |
|
---|
[6389] | 1238 | _prn.set('S', ee->satellite - PRN_SBAS_START + 20);
|
---|
[6386] | 1239 | _TOC.set(ee->GPSweek_TOE, double(ee->TOE));
|
---|
| 1240 |
|
---|
| 1241 | _IODN = ee->IODN;
|
---|
| 1242 | _TOW = ee->TOW;
|
---|
| 1243 |
|
---|
| 1244 | _agf0 = ee->agf0;
|
---|
| 1245 | _agf1 = ee->agf1;
|
---|
| 1246 |
|
---|
[6389] | 1247 | _x_pos = ee->x_pos;
|
---|
| 1248 | _x_velocity = ee->x_velocity;
|
---|
| 1249 | _x_acceleration = ee->x_acceleration;
|
---|
[6386] | 1250 |
|
---|
[6389] | 1251 | _y_pos = ee->y_pos;
|
---|
| 1252 | _y_velocity = ee->y_velocity;
|
---|
| 1253 | _y_acceleration = ee->y_acceleration;
|
---|
[6386] | 1254 |
|
---|
[6389] | 1255 | _z_pos = ee->z_pos;
|
---|
| 1256 | _z_velocity = ee->z_velocity;
|
---|
| 1257 | _z_acceleration = ee->z_acceleration;
|
---|
[6386] | 1258 |
|
---|
| 1259 | _ura = ee->URA;
|
---|
[6390] | 1260 |
|
---|
| 1261 | _health = 0;
|
---|
[6385] | 1262 | }
|
---|
| 1263 |
|
---|
| 1264 | // Compute SBAS Satellite Position (virtual)
|
---|
| 1265 | ////////////////////////////////////////////////////////////////////////////
|
---|
| 1266 | t_irc t_ephSBAS::position(int GPSweek, double GPSweeks, double* xc, double* vv) const {
|
---|
[6386] | 1267 |
|
---|
[6518] | 1268 | if (_checkState == bad) {
|
---|
| 1269 | return failure;
|
---|
| 1270 | }
|
---|
| 1271 |
|
---|
[6386] | 1272 | bncTime tt(GPSweek, GPSweeks);
|
---|
| 1273 | double dt = tt - _TOC;
|
---|
| 1274 |
|
---|
| 1275 | xc[0] = _x_pos + _x_velocity * dt + _x_acceleration * dt * dt / 2.0;
|
---|
| 1276 | xc[1] = _y_pos + _y_velocity * dt + _y_acceleration * dt * dt / 2.0;
|
---|
| 1277 | xc[2] = _z_pos + _z_velocity * dt + _z_acceleration * dt * dt / 2.0;
|
---|
| 1278 |
|
---|
| 1279 | vv[0] = _x_velocity + _x_acceleration * dt;
|
---|
| 1280 | vv[1] = _y_velocity + _y_acceleration * dt;
|
---|
| 1281 | vv[2] = _z_velocity + _z_acceleration * dt;
|
---|
| 1282 |
|
---|
| 1283 | xc[3] = _agf0 + _agf1 * dt;
|
---|
| 1284 |
|
---|
| 1285 | return success;
|
---|
[6385] | 1286 | }
|
---|
| 1287 |
|
---|
| 1288 | // RINEX Format String
|
---|
| 1289 | //////////////////////////////////////////////////////////////////////////////
|
---|
[6388] | 1290 | QString t_ephSBAS::toString(double version) const {
|
---|
| 1291 |
|
---|
| 1292 | QString rnxStr = rinexDateStr(_TOC, _prn, version);
|
---|
| 1293 |
|
---|
| 1294 | QTextStream out(&rnxStr);
|
---|
| 1295 |
|
---|
| 1296 | out << QString("%1%2%3\n")
|
---|
[6390] | 1297 | .arg(_agf0, 19, 'e', 12)
|
---|
| 1298 | .arg(_agf1, 19, 'e', 12)
|
---|
| 1299 | .arg(_TOW, 19, 'e', 12);
|
---|
[6388] | 1300 |
|
---|
| 1301 | QString fmt = version < 3.0 ? " %1%2%3%4\n" : " %1%2%3%4\n";
|
---|
| 1302 |
|
---|
| 1303 | out << QString(fmt)
|
---|
| 1304 | .arg(1.e-3*_x_pos, 19, 'e', 12)
|
---|
| 1305 | .arg(1.e-3*_x_velocity, 19, 'e', 12)
|
---|
| 1306 | .arg(1.e-3*_x_acceleration, 19, 'e', 12)
|
---|
[6390] | 1307 | .arg(_health, 19, 'e', 12);
|
---|
[6388] | 1308 |
|
---|
| 1309 | out << QString(fmt)
|
---|
| 1310 | .arg(1.e-3*_y_pos, 19, 'e', 12)
|
---|
| 1311 | .arg(1.e-3*_y_velocity, 19, 'e', 12)
|
---|
| 1312 | .arg(1.e-3*_y_acceleration, 19, 'e', 12)
|
---|
[6390] | 1313 | .arg(_ura, 19, 'e', 12);
|
---|
[6388] | 1314 |
|
---|
| 1315 | out << QString(fmt)
|
---|
| 1316 | .arg(1.e-3*_z_pos, 19, 'e', 12)
|
---|
| 1317 | .arg(1.e-3*_z_velocity, 19, 'e', 12)
|
---|
| 1318 | .arg(1.e-3*_z_acceleration, 19, 'e', 12)
|
---|
[6536] | 1319 | .arg(double(_IODN), 19, 'e', 12);
|
---|
[6388] | 1320 |
|
---|
| 1321 | return rnxStr;
|
---|
[6385] | 1322 | }
|
---|
[6400] | 1323 |
|
---|
| 1324 | // Constructor
|
---|
| 1325 | //////////////////////////////////////////////////////////////////////////////
|
---|
[6600] | 1326 | t_ephBDS::t_ephBDS(float rnxVersion, const QStringList& lines) {
|
---|
[6400] | 1327 |
|
---|
| 1328 | const int nLines = 8;
|
---|
| 1329 |
|
---|
| 1330 | if (lines.size() != nLines) {
|
---|
[6518] | 1331 | _checkState = bad;
|
---|
[6400] | 1332 | return;
|
---|
| 1333 | }
|
---|
| 1334 |
|
---|
| 1335 | // RINEX Format
|
---|
| 1336 | // ------------
|
---|
| 1337 | int fieldLen = 19;
|
---|
| 1338 |
|
---|
| 1339 | int pos[4];
|
---|
| 1340 | pos[0] = (rnxVersion <= 2.12) ? 3 : 4;
|
---|
| 1341 | pos[1] = pos[0] + fieldLen;
|
---|
| 1342 | pos[2] = pos[1] + fieldLen;
|
---|
| 1343 | pos[3] = pos[2] + fieldLen;
|
---|
| 1344 |
|
---|
| 1345 | double TOTs;
|
---|
| 1346 | double TOEs;
|
---|
| 1347 | double TOEw;
|
---|
| 1348 |
|
---|
| 1349 | // Read eight lines
|
---|
| 1350 | // ----------------
|
---|
| 1351 | for (int iLine = 0; iLine < nLines; iLine++) {
|
---|
| 1352 | QString line = lines[iLine];
|
---|
| 1353 |
|
---|
| 1354 | if ( iLine == 0 ) {
|
---|
| 1355 | QTextStream in(line.left(pos[1]).toAscii());
|
---|
| 1356 |
|
---|
| 1357 | int year, month, day, hour, min;
|
---|
| 1358 | double sec;
|
---|
| 1359 |
|
---|
| 1360 | QString prnStr;
|
---|
| 1361 | in >> prnStr >> year >> month >> day >> hour >> min >> sec;
|
---|
| 1362 | if (prnStr.at(0) == 'C') {
|
---|
| 1363 | _prn.set('C', prnStr.mid(1).toInt());
|
---|
| 1364 | }
|
---|
| 1365 | else {
|
---|
| 1366 | _prn.set('C', prnStr.toInt());
|
---|
| 1367 | }
|
---|
| 1368 |
|
---|
| 1369 | if (year < 80) {
|
---|
| 1370 | year += 2000;
|
---|
| 1371 | }
|
---|
| 1372 | else if (year < 100) {
|
---|
| 1373 | year += 1900;
|
---|
| 1374 | }
|
---|
| 1375 |
|
---|
| 1376 | _TOC_bdt.set(year, month, day, hour, min, sec);
|
---|
| 1377 |
|
---|
| 1378 | if ( readDbl(line, pos[1], fieldLen, _clock_bias ) ||
|
---|
| 1379 | readDbl(line, pos[2], fieldLen, _clock_drift ) ||
|
---|
| 1380 | readDbl(line, pos[3], fieldLen, _clock_driftrate) ) {
|
---|
[6518] | 1381 | _checkState = bad;
|
---|
[6400] | 1382 | return;
|
---|
| 1383 | }
|
---|
| 1384 | }
|
---|
| 1385 |
|
---|
| 1386 | else if ( iLine == 1 ) {
|
---|
| 1387 | double aode;
|
---|
| 1388 | if ( readDbl(line, pos[0], fieldLen, aode ) ||
|
---|
| 1389 | readDbl(line, pos[1], fieldLen, _Crs ) ||
|
---|
| 1390 | readDbl(line, pos[2], fieldLen, _Delta_n) ||
|
---|
| 1391 | readDbl(line, pos[3], fieldLen, _M0 ) ) {
|
---|
[6518] | 1392 | _checkState = bad;
|
---|
[6400] | 1393 | return;
|
---|
| 1394 | }
|
---|
| 1395 | _AODE = int(aode);
|
---|
| 1396 | }
|
---|
| 1397 |
|
---|
| 1398 | else if ( iLine == 2 ) {
|
---|
| 1399 | if ( readDbl(line, pos[0], fieldLen, _Cuc ) ||
|
---|
| 1400 | readDbl(line, pos[1], fieldLen, _e ) ||
|
---|
| 1401 | readDbl(line, pos[2], fieldLen, _Cus ) ||
|
---|
| 1402 | readDbl(line, pos[3], fieldLen, _sqrt_A) ) {
|
---|
[6518] | 1403 | _checkState = bad;
|
---|
[6400] | 1404 | return;
|
---|
| 1405 | }
|
---|
| 1406 | }
|
---|
| 1407 |
|
---|
| 1408 | else if ( iLine == 3 ) {
|
---|
| 1409 | if ( readDbl(line, pos[0], fieldLen, TOEs ) ||
|
---|
| 1410 | readDbl(line, pos[1], fieldLen, _Cic ) ||
|
---|
| 1411 | readDbl(line, pos[2], fieldLen, _OMEGA0) ||
|
---|
| 1412 | readDbl(line, pos[3], fieldLen, _Cis ) ) {
|
---|
[6518] | 1413 | _checkState = bad;
|
---|
[6400] | 1414 | return;
|
---|
| 1415 | }
|
---|
| 1416 | }
|
---|
| 1417 |
|
---|
| 1418 | else if ( iLine == 4 ) {
|
---|
| 1419 | if ( readDbl(line, pos[0], fieldLen, _i0 ) ||
|
---|
| 1420 | readDbl(line, pos[1], fieldLen, _Crc ) ||
|
---|
| 1421 | readDbl(line, pos[2], fieldLen, _omega ) ||
|
---|
| 1422 | readDbl(line, pos[3], fieldLen, _OMEGADOT) ) {
|
---|
[6518] | 1423 | _checkState = bad;
|
---|
[6400] | 1424 | return;
|
---|
| 1425 | }
|
---|
| 1426 | }
|
---|
| 1427 |
|
---|
| 1428 | else if ( iLine == 5 ) {
|
---|
| 1429 | if ( readDbl(line, pos[0], fieldLen, _IDOT ) ||
|
---|
| 1430 | readDbl(line, pos[2], fieldLen, TOEw) ) {
|
---|
[6518] | 1431 | _checkState = bad;
|
---|
[6400] | 1432 | return;
|
---|
| 1433 | }
|
---|
| 1434 | }
|
---|
| 1435 |
|
---|
| 1436 | else if ( iLine == 6 ) {
|
---|
| 1437 | double SatH1;
|
---|
| 1438 | if ( readDbl(line, pos[1], fieldLen, SatH1) ||
|
---|
| 1439 | readDbl(line, pos[2], fieldLen, _TGD1) ||
|
---|
| 1440 | readDbl(line, pos[3], fieldLen, _TGD2) ) {
|
---|
[6518] | 1441 | _checkState = bad;
|
---|
[6400] | 1442 | return;
|
---|
| 1443 | }
|
---|
| 1444 | _SatH1 = int(SatH1);
|
---|
| 1445 | }
|
---|
| 1446 |
|
---|
| 1447 | else if ( iLine == 7 ) {
|
---|
| 1448 | double aodc;
|
---|
| 1449 | if ( readDbl(line, pos[0], fieldLen, TOTs) ||
|
---|
| 1450 | readDbl(line, pos[1], fieldLen, aodc) ) {
|
---|
[6518] | 1451 | _checkState = bad;
|
---|
[6400] | 1452 | return;
|
---|
| 1453 | }
|
---|
| 1454 | if (TOTs == 0.9999e9) { // 0.9999e9 means not known (RINEX standard)
|
---|
| 1455 | TOTs = TOEs;
|
---|
| 1456 | }
|
---|
| 1457 | _AODC = int(aodc);
|
---|
| 1458 | }
|
---|
| 1459 | }
|
---|
| 1460 |
|
---|
| 1461 | TOEw += 1356; // BDT -> GPS week number
|
---|
[6537] | 1462 | _TOE_bdt.set(int(TOEw), TOEs);
|
---|
[6400] | 1463 |
|
---|
| 1464 | // GPS->BDT
|
---|
| 1465 | // --------
|
---|
| 1466 | _TOC = _TOC_bdt + 14.0;
|
---|
| 1467 | _TOE = _TOE_bdt + 14.0;
|
---|
| 1468 |
|
---|
| 1469 | // remark: actually should be computed from second_tot
|
---|
| 1470 | // but it seems to be unreliable in RINEX files
|
---|
| 1471 | _TOT = _TOC;
|
---|
| 1472 | }
|
---|
| 1473 |
|
---|
[6601] | 1474 | // Set BDS Satellite Position
|
---|
| 1475 | ////////////////////////////////////////////////////////////////////////////
|
---|
| 1476 | void t_ephBDS::set(const bdsephemeris* ee) {
|
---|
| 1477 |
|
---|
| 1478 | _receptDateTime = currentDateAndTimeGPS();
|
---|
| 1479 |
|
---|
[6616] | 1480 | _prn.set('C', ee->satellite - PRN_BDS_START + 1);
|
---|
[6601] | 1481 |
|
---|
[6616] | 1482 | _TOE_bdt.set(1356 + ee->BDSweek, ee->TOE);
|
---|
| 1483 | _TOE = _TOE_bdt + 14.0;
|
---|
[6601] | 1484 |
|
---|
[6616] | 1485 | _TOC_bdt.set(1356 + ee->BDSweek, ee->TOC);
|
---|
| 1486 | _TOC = _TOC_bdt + 14.0;
|
---|
[6603] | 1487 |
|
---|
[6616] | 1488 | _AODE = ee->AODE;
|
---|
| 1489 | _AODC = ee->AODC;
|
---|
[6603] | 1490 |
|
---|
[6601] | 1491 | _clock_bias = ee->clock_bias;
|
---|
| 1492 | _clock_drift = ee->clock_drift;
|
---|
| 1493 | _clock_driftrate = ee->clock_driftrate;
|
---|
| 1494 |
|
---|
| 1495 | _Crs = ee->Crs;
|
---|
| 1496 | _Delta_n = ee->Delta_n;
|
---|
| 1497 | _M0 = ee->M0;
|
---|
| 1498 |
|
---|
| 1499 | _Cuc = ee->Cuc;
|
---|
| 1500 | _e = ee->e;
|
---|
| 1501 | _Cus = ee->Cus;
|
---|
| 1502 | _sqrt_A = ee->sqrt_A;
|
---|
| 1503 |
|
---|
| 1504 | _Cic = ee->Cic;
|
---|
| 1505 | _OMEGA0 = ee->OMEGA0;
|
---|
| 1506 | _Cis = ee->Cis;
|
---|
| 1507 |
|
---|
| 1508 | _i0 = ee->i0;
|
---|
| 1509 | _Crc = ee->Crc;
|
---|
| 1510 | _omega = ee->omega;
|
---|
| 1511 | _OMEGADOT = ee->OMEGADOT;
|
---|
| 1512 | _IDOT = ee->IDOT;
|
---|
| 1513 |
|
---|
| 1514 | _TGD1 = ee->TGD_B1_B3;
|
---|
| 1515 | _TGD2 = ee->TGD_B2_B3;
|
---|
| 1516 |
|
---|
[6620] | 1517 | _URAI = ee->URAI;
|
---|
[6621] | 1518 | _SatH1 = (ee->flags & BDSEPHF_SATH1) ? 1: 0;
|
---|
[6601] | 1519 |
|
---|
| 1520 | }
|
---|
| 1521 |
|
---|
| 1522 | // Compute BDS Satellite Position (virtual)
|
---|
[6400] | 1523 | //////////////////////////////////////////////////////////////////////////////
|
---|
[6600] | 1524 | t_irc t_ephBDS::position(int GPSweek, double GPSweeks, double* xc, double* vv) const {
|
---|
[6400] | 1525 |
|
---|
[6518] | 1526 | if (_checkState == bad) {
|
---|
| 1527 | return failure;
|
---|
| 1528 | }
|
---|
| 1529 |
|
---|
[6602] | 1530 | static const double gmBDS = 398.6004418e12;
|
---|
| 1531 | static const double omegaBDS = 7292115.0000e-11;
|
---|
[6400] | 1532 |
|
---|
| 1533 | xc[0] = xc[1] = xc[2] = xc[3] = 0.0;
|
---|
| 1534 | vv[0] = vv[1] = vv[2] = 0.0;
|
---|
| 1535 |
|
---|
| 1536 | bncTime tt(GPSweek, GPSweeks);
|
---|
| 1537 |
|
---|
| 1538 | if (_sqrt_A == 0) {
|
---|
| 1539 | return failure;
|
---|
| 1540 | }
|
---|
| 1541 | double a0 = _sqrt_A * _sqrt_A;
|
---|
| 1542 |
|
---|
[6602] | 1543 | double n0 = sqrt(gmBDS/(a0*a0*a0));
|
---|
[6400] | 1544 | double tk = tt - _TOE;
|
---|
| 1545 | double n = n0 + _Delta_n;
|
---|
| 1546 | double M = _M0 + n*tk;
|
---|
| 1547 | double E = M;
|
---|
| 1548 | double E_last;
|
---|
| 1549 | int nLoop = 0;
|
---|
| 1550 | do {
|
---|
| 1551 | E_last = E;
|
---|
| 1552 | E = M + _e*sin(E);
|
---|
| 1553 |
|
---|
| 1554 | if (++nLoop == 100) {
|
---|
| 1555 | return failure;
|
---|
| 1556 | }
|
---|
| 1557 | } while ( fabs(E-E_last)*a0 > 0.001 );
|
---|
| 1558 |
|
---|
| 1559 | double v = atan2(sqrt(1-_e*_e) * sin(E), cos(E) - _e);
|
---|
| 1560 | double u0 = v + _omega;
|
---|
| 1561 | double sin2u0 = sin(2*u0);
|
---|
| 1562 | double cos2u0 = cos(2*u0);
|
---|
| 1563 | double r = a0*(1 - _e*cos(E)) + _Crc*cos2u0 + _Crs*sin2u0;
|
---|
| 1564 | double i = _i0 + _IDOT*tk + _Cic*cos2u0 + _Cis*sin2u0;
|
---|
| 1565 | double u = u0 + _Cuc*cos2u0 + _Cus*sin2u0;
|
---|
| 1566 | double xp = r*cos(u);
|
---|
| 1567 | double yp = r*sin(u);
|
---|
| 1568 | double toesec = (_TOE.gpssec() - 14.0);
|
---|
| 1569 |
|
---|
| 1570 | double sinom = 0;
|
---|
| 1571 | double cosom = 0;
|
---|
| 1572 | double sini = 0;
|
---|
| 1573 | double cosi = 0;
|
---|
| 1574 |
|
---|
| 1575 | const double iMaxGEO = 10.0 / 180.0 * M_PI;
|
---|
| 1576 |
|
---|
| 1577 | // MEO/IGSO satellite
|
---|
| 1578 | // ------------------
|
---|
| 1579 | if (_i0 > iMaxGEO) {
|
---|
[6602] | 1580 | double OM = _OMEGA0 + (_OMEGADOT - omegaBDS)*tk - omegaBDS*toesec;
|
---|
[6400] | 1581 |
|
---|
| 1582 | sinom = sin(OM);
|
---|
| 1583 | cosom = cos(OM);
|
---|
| 1584 | sini = sin(i);
|
---|
| 1585 | cosi = cos(i);
|
---|
| 1586 |
|
---|
| 1587 | xc[0] = xp*cosom - yp*cosi*sinom;
|
---|
| 1588 | xc[1] = xp*sinom + yp*cosi*cosom;
|
---|
| 1589 | xc[2] = yp*sini;
|
---|
| 1590 | }
|
---|
| 1591 |
|
---|
| 1592 | // GEO satellite
|
---|
| 1593 | // -------------
|
---|
| 1594 | else {
|
---|
[6602] | 1595 | double OM = _OMEGA0 + _OMEGADOT*tk - omegaBDS*toesec;
|
---|
| 1596 | double ll = omegaBDS*tk;
|
---|
[6400] | 1597 |
|
---|
| 1598 | sinom = sin(OM);
|
---|
| 1599 | cosom = cos(OM);
|
---|
| 1600 | sini = sin(i);
|
---|
| 1601 | cosi = cos(i);
|
---|
| 1602 |
|
---|
| 1603 | double xx = xp*cosom - yp*cosi*sinom;
|
---|
| 1604 | double yy = xp*sinom + yp*cosi*cosom;
|
---|
| 1605 | double zz = yp*sini;
|
---|
| 1606 |
|
---|
| 1607 | Matrix R1 = BNC_PPP::t_astro::rotX(-5.0 / 180.0 * M_PI);
|
---|
| 1608 | Matrix R2 = BNC_PPP::t_astro::rotZ(ll);
|
---|
| 1609 |
|
---|
| 1610 | ColumnVector X1(3); X1 << xx << yy << zz;
|
---|
| 1611 | ColumnVector X2 = R2*R1*X1;
|
---|
| 1612 |
|
---|
| 1613 | xc[0] = X2(1);
|
---|
| 1614 | xc[1] = X2(2);
|
---|
| 1615 | xc[2] = X2(3);
|
---|
| 1616 | }
|
---|
| 1617 |
|
---|
| 1618 | double tc = tt - _TOC;
|
---|
| 1619 | xc[3] = _clock_bias + _clock_drift*tc + _clock_driftrate*tc*tc
|
---|
| 1620 | - 4.442807633e-10 * _e * sqrt(a0) *sin(E);
|
---|
| 1621 |
|
---|
| 1622 | // Velocity
|
---|
| 1623 | // --------
|
---|
| 1624 | double tanv2 = tan(v/2);
|
---|
| 1625 | double dEdM = 1 / (1 - _e*cos(E));
|
---|
| 1626 | double dotv = sqrt((1.0 + _e)/(1.0 - _e)) / cos(E/2)/cos(E/2)
|
---|
| 1627 | / (1 + tanv2*tanv2) * dEdM * n;
|
---|
| 1628 | double dotu = dotv + (-_Cuc*sin2u0 + _Cus*cos2u0)*2*dotv;
|
---|
| 1629 | double dotom = _OMEGADOT - t_CST::omega;
|
---|
| 1630 | double doti = _IDOT + (-_Cic*sin2u0 + _Cis*cos2u0)*2*dotv;
|
---|
| 1631 | double dotr = a0 * _e*sin(E) * dEdM * n
|
---|
| 1632 | + (-_Crc*sin2u0 + _Crs*cos2u0)*2*dotv;
|
---|
| 1633 | double dotx = dotr*cos(u) - r*sin(u)*dotu;
|
---|
| 1634 | double doty = dotr*sin(u) + r*cos(u)*dotu;
|
---|
| 1635 |
|
---|
| 1636 | vv[0] = cosom *dotx - cosi*sinom *doty // dX / dr
|
---|
| 1637 | - xp*sinom*dotom - yp*cosi*cosom*dotom // dX / dOMEGA
|
---|
| 1638 | + yp*sini*sinom*doti; // dX / di
|
---|
| 1639 |
|
---|
| 1640 | vv[1] = sinom *dotx + cosi*cosom *doty
|
---|
| 1641 | + xp*cosom*dotom - yp*cosi*sinom*dotom
|
---|
| 1642 | - yp*sini*cosom*doti;
|
---|
| 1643 |
|
---|
| 1644 | vv[2] = sini *doty + yp*cosi *doti;
|
---|
| 1645 |
|
---|
| 1646 | // dotC = _clock_drift + _clock_driftrate*tc
|
---|
| 1647 | // - 4.442807633e-10*_e*sqrt(a0)*cos(E) * dEdM * n;
|
---|
| 1648 |
|
---|
| 1649 | return success;
|
---|
| 1650 | }
|
---|
| 1651 |
|
---|
| 1652 | // RINEX Format String
|
---|
| 1653 | //////////////////////////////////////////////////////////////////////////////
|
---|
[6600] | 1654 | QString t_ephBDS::toString(double version) const {
|
---|
[6400] | 1655 |
|
---|
| 1656 | QString rnxStr = rinexDateStr(_TOC_bdt, _prn, version);
|
---|
| 1657 |
|
---|
| 1658 | QTextStream out(&rnxStr);
|
---|
| 1659 |
|
---|
| 1660 | out << QString("%1%2%3\n")
|
---|
| 1661 | .arg(_clock_bias, 19, 'e', 12)
|
---|
| 1662 | .arg(_clock_drift, 19, 'e', 12)
|
---|
| 1663 | .arg(_clock_driftrate, 19, 'e', 12);
|
---|
| 1664 |
|
---|
| 1665 | QString fmt = version < 3.0 ? " %1%2%3%4\n" : " %1%2%3%4\n";
|
---|
| 1666 |
|
---|
| 1667 | out << QString(fmt)
|
---|
| 1668 | .arg(double(_AODE), 19, 'e', 12)
|
---|
| 1669 | .arg(_Crs, 19, 'e', 12)
|
---|
| 1670 | .arg(_Delta_n, 19, 'e', 12)
|
---|
| 1671 | .arg(_M0, 19, 'e', 12);
|
---|
| 1672 |
|
---|
| 1673 | out << QString(fmt)
|
---|
| 1674 | .arg(_Cuc, 19, 'e', 12)
|
---|
| 1675 | .arg(_e, 19, 'e', 12)
|
---|
| 1676 | .arg(_Cus, 19, 'e', 12)
|
---|
| 1677 | .arg(_sqrt_A, 19, 'e', 12);
|
---|
| 1678 |
|
---|
| 1679 | out << QString(fmt)
|
---|
| 1680 | .arg(_TOE_bdt.gpssec(), 19, 'e', 12)
|
---|
| 1681 | .arg(_Cic, 19, 'e', 12)
|
---|
| 1682 | .arg(_OMEGA0, 19, 'e', 12)
|
---|
| 1683 | .arg(_Cis, 19, 'e', 12);
|
---|
| 1684 |
|
---|
| 1685 | out << QString(fmt)
|
---|
| 1686 | .arg(_i0, 19, 'e', 12)
|
---|
| 1687 | .arg(_Crc, 19, 'e', 12)
|
---|
| 1688 | .arg(_omega, 19, 'e', 12)
|
---|
| 1689 | .arg(_OMEGADOT, 19, 'e', 12);
|
---|
| 1690 |
|
---|
| 1691 | out << QString(fmt)
|
---|
[6618] | 1692 | .arg(_IDOT, 19, 'e', 12)
|
---|
| 1693 | .arg(0.0, 19, 'e', 12)
|
---|
| 1694 | .arg(double(_TOE_bdt.gpsw() - 1356.0), 19, 'e', 12)
|
---|
| 1695 | .arg(0.0, 19, 'e', 12);
|
---|
[6400] | 1696 |
|
---|
[6620] | 1697 | double ura = 0.0;
|
---|
| 1698 | if ((_URAI < 6) && (_URAI >= 0)) {
|
---|
| 1699 | ura = ceil(10.0 * pow(2.0, ((double)_URAI/2.0) + 1.0)) / 10.0;
|
---|
| 1700 | }
|
---|
| 1701 | if ((_URAI >= 6) && (_URAI < 15)) {
|
---|
| 1702 | ura = ceil(10.0 * pow(2.0, ((double)_URAI/2.0) )) / 10.0;
|
---|
| 1703 | }
|
---|
| 1704 |
|
---|
[6400] | 1705 | out << QString(fmt)
|
---|
[6620] | 1706 | .arg(ura, 19, 'e', 12)
|
---|
[6400] | 1707 | .arg(double(_SatH1), 19, 'e', 12)
|
---|
| 1708 | .arg(_TGD1, 19, 'e', 12)
|
---|
| 1709 | .arg(_TGD2, 19, 'e', 12);
|
---|
| 1710 |
|
---|
| 1711 | out << QString(fmt)
|
---|
| 1712 | .arg(_TOE_bdt.gpssec(), 19, 'e', 12)
|
---|
[6616] | 1713 | .arg(double(_AODC), 19, 'e', 12)
|
---|
| 1714 | .arg("", 19, QChar(' '))
|
---|
| 1715 | .arg("", 19, QChar(' '));
|
---|
[6400] | 1716 | return rnxStr;
|
---|
| 1717 | }
|
---|
| 1718 |
|
---|