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

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

* empty log message *

File size: 6.3 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 mjdFromDateAndTime(const QDateTime& dateTime, int& mjd, double& dayfrac) {
99
100 double mjddec = dateTime.date().toJulianDay() - 2400000.5 +
101 (dateTime.time().hour() +
102 (dateTime.time().minute() +
103 (dateTime.time().second() +
104 dateTime.time().msec() / 1000.0) / 60.0) / 60.0) / 24.0;
105
106 mjd = int(mjddec);
107 dayfrac = mjddec - mjd;
108}
109
110// Satellite Position computed using broadcast ephemeris
111////////////////////////////////////////////////////////////////////////////
112void satellitePosition(int GPSweek, double GPSweeks, const gpsEph* ep,
113 double& X, double& Y, double& Z, double& dt,
114 double& vX, double& vY, double& vZ) {
115
116 const static double secPerWeek = 7 * 86400.0;
117 const static double omegaEarth = 7292115.1467e-11;
118 const static double gmWGS = 398.6005e12;
119
120 X = Y = Z = dt = 0.0;
121
122 double a0 = ep->sqrt_A * ep->sqrt_A;
123 if (a0 == 0) {
124 return;
125 }
126
127 double n0 = sqrt(gmWGS/(a0*a0*a0));
128 double tk = GPSweeks - ep->TOE;
129 if (GPSweek != ep->GPSweek) {
130 tk += (GPSweek - ep->GPSweek) * secPerWeek;
131 }
132 double n = n0 + ep->Delta_n;
133 double M = ep->M0 + n*tk;
134 double E = M;
135 double E_last;
136 do {
137 E_last = E;
138 E = M + ep->e*sin(E);
139 } while ( fabs(E-E_last)*a0 > 0.001 );
140 double v = 2.0*atan( sqrt( (1.0 + ep->e)/(1.0 - ep->e) )*tan( E/2 ) );
141 double u0 = v + ep->omega;
142 double sin2u0 = sin(2*u0);
143 double cos2u0 = cos(2*u0);
144 double r = a0*(1 - ep->e*cos(E)) + ep->Crc*cos2u0 + ep->Crs*sin2u0;
145 double i = ep->i0 + ep->IDOT*tk + ep->Cic*cos2u0 + ep->Cis*sin2u0;
146 double u = u0 + ep->Cuc*cos2u0 + ep->Cus*sin2u0;
147 double xp = r*cos(u);
148 double yp = r*sin(u);
149 double OM = ep->OMEGA0 + (ep->OMEGADOT - omegaEarth)*tk -
150 omegaEarth*ep->TOE;
151
152 double sinom = sin(OM);
153 double cosom = cos(OM);
154 double sini = sin(i);
155 double cosi = cos(i);
156 X = xp*cosom - yp*cosi*sinom;
157 Y = xp*sinom + yp*cosi*cosom;
158 Z = yp*sini;
159
160 double tc = GPSweeks - ep->TOC;
161 if (GPSweek != ep->GPSweek) {
162 tc += (GPSweek - ep->GPSweek) * secPerWeek;
163 }
164 dt = ep->clock_bias + ep->clock_drift*tc + ep->clock_driftrate*tc*tc
165 - 4.442807633e-10 * ep->e * sqrt(a0) *sin(E);
166
167 // Velocity
168 // --------
169 double tanv2 = tan(v/2);
170 double dEdM = 1 / (1 - ep->e*cos(E));
171 double dotv = sqrt((1.0 + ep->e)/(1.0 - ep->e)) / cos(E/2)/cos(E/2) / (1 + tanv2*tanv2)
172 * dEdM * n;
173 double dotu = dotv + (-ep->Cuc*sin2u0 + ep->Cus*cos2u0)*2*dotv;
174 double dotom = ep->OMEGADOT - omegaEarth;
175 double doti = ep->IDOT + (-ep->Cic*sin2u0 + ep->Cis*cos2u0)*2*dotv;
176 double dotr = a0 * ep->e*sin(E) * dEdM * n
177 + (-ep->Crc*sin2u0 + ep->Crs*cos2u0)*2*dotv;
178 double dotx = dotr*cos(u) - r*sin(u)*dotu;
179 double doty = dotr*sin(u) + r*cos(u)*dotu;
180
181 vX = cosom *dotx - cosi*sinom *doty // dX / dr
182 - xp*sinom*dotom - yp*cosi*cosom*dotom // dX / dOMEGA
183 + yp*sini*sinom*doti; // dX / di
184
185 vY = sinom *dotx + cosi*cosom *doty
186 + xp*cosom*dotom - yp*cosi*sinom*dotom
187 - yp*sini*cosom*doti;
188
189 vZ = sini *doty + yp*cosi *doti;
190}
191
192// Transformation xyz --> radial, along track, out-of-plane
193////////////////////////////////////////////////////////////////////////////
194void XYZ_to_RSW(const ColumnVector& rr, const ColumnVector& vv,
195 const ColumnVector& xyz, ColumnVector& rsw) {
196
197 ColumnVector cross = crossproduct(rr, vv);
198
199 rsw.ReSize(3);
200 rsw(1) = DotProduct(xyz, rr) / rr.norm_Frobenius();
201 rsw(2) = DotProduct(xyz, vv) / vv.norm_Frobenius();
202 rsw(3) = DotProduct(xyz, cross) / cross.norm_Frobenius();
203}
Note: See TracBrowser for help on using the repository browser.