Last change
on this file since 9976 was 9653, checked in by stuerze, 3 years ago |
Bias SINEX file can be written now during SSR upload
|
File size:
778 bytes
|
Rev | Line | |
---|
[9653] | 1 | /*
|
---|
| 2 | * bncBiasSinex.h
|
---|
| 3 | *
|
---|
| 4 | * Created on: Feb 18, 2022
|
---|
| 5 | * Author: stuerze
|
---|
| 6 | */
|
---|
| 7 |
|
---|
| 8 | #ifndef SRC_BNCBIASSINEX_H_
|
---|
| 9 | #define SRC_BNCBIASSINEX_H_
|
---|
| 10 |
|
---|
| 11 | #include <fstream>
|
---|
| 12 | #include <newmat.h>
|
---|
| 13 | #include <iostream>
|
---|
| 14 |
|
---|
| 15 | #include "bncoutf.h"
|
---|
| 16 | #include "bncversion.h"
|
---|
| 17 | #include "pppOptions.h"
|
---|
| 18 | #include "bncsettings.h"
|
---|
| 19 | #include "bncantex.h"
|
---|
| 20 |
|
---|
| 21 | using namespace BNC_PPP;
|
---|
| 22 |
|
---|
| 23 |
|
---|
| 24 | class bncBiasSinex : public bncoutf {
|
---|
| 25 | public:
|
---|
| 26 | bncBiasSinex(const QString& sklFileName, const QString& intr,
|
---|
| 27 | int sampl);
|
---|
| 28 | virtual ~bncBiasSinex();
|
---|
| 29 | virtual t_irc write(int GPSweek, double GPSweeks, const QString& prn,
|
---|
| 30 | const QString& obsCode, double bias);
|
---|
| 31 |
|
---|
| 32 | private:
|
---|
| 33 | virtual void writeHeader(const QDateTime& datTim);
|
---|
| 34 | int _sampl;
|
---|
| 35 | QString _agency;
|
---|
| 36 | };
|
---|
| 37 |
|
---|
| 38 | #endif /* SRC_BNCBIASSINEX_H_ */
|
---|
| 39 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.