source: ntrip/trunk/BNS/bnsutils.cpp@ 802

Last change on this file since 802 was 802, checked in by mervart, 16 years ago

* empty log message *

File size: 5.0 KB
Line 
1/* -------------------------------------------------------------------------
2 * BKG NTRIP Server
3 * -------------------------------------------------------------------------
4 *
5 * Class: bncutils
6 *
7 * Purpose: Auxiliary Functions
8 *
9 * Author: L. Mervart
10 *
11 * Created: 08-Apr-2008
12 *
13 * Changes:
14 *
15 * -----------------------------------------------------------------------*/
16
17#include <iostream>
18#include <ctime>
19#include <math.h>
20
21#include <QRegExp>
22#include <QStringList>
23#include <QDateTime>
24
25#include "bnsutils.h"
26#include "bnseph.h"
27
28using namespace std;
29
30//
31////////////////////////////////////////////////////////////////////////////
32void expandEnvVar(QString& str) {
33
34 QRegExp rx("(\\$\\{.+\\})");
35
36 if (rx.indexIn(str) != -1) {
37 QStringListIterator it(rx.capturedTexts());
38 if (it.hasNext()) {
39 QString rxStr = it.next();
40 QString envVar = rxStr.mid(2,rxStr.length()-3);
41 str.replace(rxStr, qgetenv(envVar.toAscii()));
42 }
43 }
44
45}
46
47//
48////////////////////////////////////////////////////////////////////////////
49QDateTime dateAndTimeFromGPSweek(int GPSWeek, double GPSWeeks) {
50
51 static const QDate zeroEpoch(1980, 1, 6);
52
53 QDate date(zeroEpoch);
54 QTime time(0,0,0,0);
55
56 int weekDays = int(GPSWeeks) / 86400;
57 date = date.addDays( GPSWeek * 7 + weekDays );
58 time = time.addMSecs( int( (GPSWeeks - 86400 * weekDays) * 1e3 ) );
59
60 return QDateTime(date,time);
61}
62
63//
64////////////////////////////////////////////////////////////////////////////
65void GPSweekFromDateAndTime(const QDateTime& dateTime,
66 int& GPSWeek, double& GPSWeeks) {
67
68 static const QDateTime zeroEpoch(QDate(1980, 1, 6));
69
70 GPSWeek = zeroEpoch.daysTo(dateTime) / 7;
71
72 int weekDay = dateTime.date().dayOfWeek() + 1; // Qt: Monday = 1
73 if (weekDay > 7) weekDay = 1;
74
75 GPSWeeks = (weekDay - 1) * 86400.0
76 - dateTime.time().msecsTo(QTime()) / 1e3;
77}
78
79//
80////////////////////////////////////////////////////////////////////////////
81void currentGPSWeeks(int& week, double& sec) {
82
83 QDateTime currDateTime = QDateTime::currentDateTime().toUTC();
84 QDate currDate = currDateTime.date();
85 QTime currTime = currDateTime.time();
86
87 week = int( (double(currDate.toJulianDay()) - 2444244.5) / 7 );
88
89 sec = (currDate.dayOfWeek() % 7) * 24.0 * 3600.0 +
90 currTime.hour() * 3600.0 +
91 currTime.minute() * 60.0 +
92 currTime.second() +
93 currTime.msec() / 1000.0;
94}
95
96//
97////////////////////////////////////////////////////////////////////////////
98void satellitePosition(double GPSweeks, const gpsEph* ep,
99 double& X, double& Y, double& Z, double& dt,
100 double& vX, double& vY, double& vZ) {
101
102 const static double omegaEarth = 7292115.1467e-11;
103 const static double gmWGS = 398.6005e12;
104
105 X = Y = Z = dt = 0.0;
106
107 double a0 = ep->sqrt_A * ep->sqrt_A;
108 if (a0 == 0) {
109 return;
110 }
111
112 double n0 = sqrt(gmWGS/(a0*a0*a0));
113 double tk = GPSweeks - ep->TOE;
114 double n = n0 + ep->Delta_n;
115 double M = ep->M0 + n*tk;
116 double E = M;
117 double E_last;
118 do {
119 E_last = E;
120 E = M + ep->e*sin(E);
121 } while ( fabs(E-E_last)*a0 > 0.001 );
122 double v = 2.0*atan( sqrt( (1.0 + ep->e)/(1.0 - ep->e) )*tan( E/2 ) );
123 double u0 = v + ep->omega;
124 double sin2u0 = sin(2*u0);
125 double cos2u0 = cos(2*u0);
126 double r = a0*(1 - ep->e*cos(E)) + ep->Crc*cos2u0 + ep->Crs*sin2u0;
127 double i = ep->i0 + ep->IDOT*tk + ep->Cic*cos2u0 + ep->Cis*sin2u0;
128 double u = u0 + ep->Cuc*cos2u0 + ep->Cus*sin2u0;
129 double xp = r*cos(u);
130 double yp = r*sin(u);
131 double OM = ep->OMEGA0 + (ep->OMEGADOT - omegaEarth)*tk -
132 omegaEarth*ep->TOE;
133
134 double sinom = sin(OM);
135 double cosom = cos(OM);
136 double sini = sin(i);
137 double cosi = cos(i);
138 X = xp*cosom - yp*cosi*sinom;
139 Y = xp*sinom + yp*cosi*cosom;
140 Z = yp*sini;
141
142 double tc = GPSweeks - ep->TOC;
143 dt = ep->clock_bias + ep->clock_drift*tc + ep->clock_driftrate*tc*tc
144 - 4.442807633e-10 * ep->e * sqrt(a0) *sin(E);
145
146 // Velocity
147 // --------
148 double tanv2 = tan(v/2);
149 double dEdM = 1 / (1 - ep->e*cos(E));
150 double dotv = sqrt((1.0 + ep->e)/(1.0 - ep->e)) / cos(E/2)/cos(E/2) / (1 + tanv2*tanv2)
151 * dEdM * n;
152 double dotu = dotv + (-ep->Cuc*sin2u0 + ep->Cus*cos2u0)*2*dotv;
153 double dotom = ep->OMEGADOT - omegaEarth;
154 double doti = ep->IDOT + (-ep->Cic*sin2u0 + ep->Cis*cos2u0)*2*dotv;
155 double dotr = a0 * ep->e*sin(E) * dEdM * n
156 + (-ep->Crc*sin2u0 + ep->Crs*cos2u0)*2*dotv;
157 double dotx = dotr*cos(u) - r*sin(u)*dotu;
158 double doty = dotr*sin(u) + r*cos(u)*dotu;
159
160 vX = cosom *dotx - cosi*sinom *doty // dX / dr
161 - xp*sinom*dotom - yp*cosi*cosom*dotom // dX / dOMEGA
162 + yp*sini*sinom*doti; // dX / di
163
164 vY = sinom *dotx + cosi*cosom *doty
165 + xp*cosom*dotom - yp*cosi*sinom*dotom
166 - yp*sini*cosom*doti;
167
168 vZ = sini *doty + yp*cosi *doti;
169}
Note: See TracBrowser for help on using the repository browser.