source: ntrip/trunk/BNS/bnsutils.h@ 930

Last change on this file since 930 was 930, checked in by weber, 16 years ago

* empty log message *

File size: 865 bytes
Line 
1
2#ifndef BNSUTILS_H
3#define BNSUTILS_H
4
5#include <newmat.h>
6
7#include <QString>
8#include <QDateTime>
9#include <QTcpSocket>
10
11class gpsEph;
12
13enum t_irc {failure = -1, success}; // return code
14
15void expandEnvVar(QString& str);
16
17QDateTime dateAndTimeFromGPSweek(int GPSWeek, double GPSWeeks);
18
19void GPSweekFromDateAndTime(const QDateTime& dateTime,
20 int& GPSWeek, double& GPSWeeks);
21
22void mjdFromDateAndTime(const QDateTime& dateTime, int& mjd, double& dayfrac);
23
24void currentGPSWeeks(int& week, double& sec);
25
26void XYZ_to_RSW(const ColumnVector& rr, const ColumnVector& vv,
27 const ColumnVector& xyz, ColumnVector& rsw);
28
29ColumnVector rungeKutta4(double xi, const ColumnVector& yi, double dx,
30 ColumnVector (*der)(double x, const ColumnVector& y));
31
32QByteArray waitForLine(QTcpSocket* socket);
33
34#endif
Note: See TracBrowser for help on using the repository browser.