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

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

* empty log message *

File size: 711 bytes
Line 
1
2#ifndef BNSUTILS_H
3#define BNSUTILS_H
4
5#include <newmat.h>
6
7#include <QString>
8#include <QDateTime>
9
10class gpsEph;
11
12void expandEnvVar(QString& str);
13
14QDateTime dateAndTimeFromGPSweek(int GPSWeek, double GPSWeeks);
15
16void GPSweekFromDateAndTime(const QDateTime& dateTime,
17 int& GPSWeek, double& GPSWeeks);
18
19void currentGPSWeeks(int& week, double& sec);
20
21void satellitePosition(int GPSweek, double GPSweeks, const gpsEph* ep,
22 double& X, double& Y, double& Z, double&,
23 double& vX, double& vY, double& vZ);
24
25void XYZ_to_RSW(const ColumnVector& rr, const ColumnVector& vv,
26 const ColumnVector& xyz, ColumnVector& rsw);
27#endif
Note: See TracBrowser for help on using the repository browser.