Line | |
---|
1 |
|
---|
2 | #ifndef BNSUTILS_H
|
---|
3 | #define BNSUTILS_H
|
---|
4 |
|
---|
5 | #include <newmat.h>
|
---|
6 |
|
---|
7 | #include <QString>
|
---|
8 | #include <QDateTime>
|
---|
9 |
|
---|
10 | class gpsEph;
|
---|
11 |
|
---|
12 | void expandEnvVar(QString& str);
|
---|
13 |
|
---|
14 | QDateTime dateAndTimeFromGPSweek(int GPSWeek, double GPSWeeks);
|
---|
15 |
|
---|
16 | void GPSweekFromDateAndTime(const QDateTime& dateTime,
|
---|
17 | int& GPSWeek, double& GPSWeeks);
|
---|
18 |
|
---|
19 | void currentGPSWeeks(int& week, double& sec);
|
---|
20 |
|
---|
21 | void satellitePosition(int GPSweek, double GPSweeks, const gpsEph* ep,
|
---|
22 | double& X, double& Y, double& Z, double&,
|
---|
23 | double& vX, double& vY, double& vZ);
|
---|
24 |
|
---|
25 | void 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.