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

Last change on this file since 2339 was 1197, checked in by mervart, 15 years ago

* empty log message *

File size: 1006 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 GPSweekFromYMDhms(int year, int month, int day, int hour, int min,
23 double sec, int& GPSWeek, double& GPSWeeks);
24
25void mjdFromDateAndTime(const QDateTime& dateTime, int& mjd, double& dayfrac);
26
27void currentGPSWeeks(int& week, double& sec);
28
29void XYZ_to_RSW(const ColumnVector& rr, const ColumnVector& vv,
30 const ColumnVector& xyz, ColumnVector& rsw);
31
32ColumnVector rungeKutta4(double xi, const ColumnVector& yi, double dx,
33 ColumnVector (*der)(double x, const ColumnVector& y));
34
35QByteArray waitForLine(QTcpSocket* socket);
36
37#endif
Note: See TracBrowser for help on using the repository browser.