source: ntrip/trunk/BNC/src/bncsp3.h@ 10650

Last change on this file since 10650 was 10650, checked in by stuerze, 39 hours ago

minor changes

File size: 1.5 KB
Line 
1#ifndef BNCSP3_H
2#define BNCSP3_H
3
4#include <fstream>
5#include <newmat.h>
6#include <QtCore>
7#include <sstream>
8
9#include "bncoutf.h"
10#include "bnctime.h"
11#include "t_prn.h"
12
13class bncSP3 : public bncoutf {
14 public:
15
16 class t_sp3Sat {
17 public:
18 t_sp3Sat() {
19 _xyz.ReSize(3);
20 _xyz = 0.0;
21 _clk = 0.0;
22 _clkValid = false;
23 }
24 ~t_sp3Sat() {}
25 t_prn _prn;
26 ColumnVector _xyz;
27 double _clk;
28 bool _clkValid;
29 };
30
31 class t_sp3Epoch {
32 public:
33 t_sp3Epoch() {}
34 ~t_sp3Epoch() {
35 for (int ii = 0; ii < _sp3Sat.size(); ii++) {
36 delete _sp3Sat[ii];
37 }
38 }
39 bncTime _tt;
40 QVector<t_sp3Sat*> _sp3Sat;
41 };
42
43 bncSP3(const QString& fileName); // input
44 bncSP3(const QString& sklFileName, const QString& intr, int sampl); // output
45 virtual ~bncSP3();
46 t_irc write(int GPSweek, double GPSweeks, const QString& prn,
47 const ColumnVector& xCoM, double sp3Clk,
48 const ColumnVector& v, double sp3ClkRate);
49 const t_sp3Epoch* nextEpoch();
50 const t_sp3Epoch* currEpoch() const {return _currEpoch;}
51 const t_sp3Epoch* prevEpoch() const {return _prevEpoch;}
52
53 private:
54 enum e_inpOut {input, output};
55
56 virtual void writeHeader(const QDateTime& datTim);
57 virtual void closeFile();
58
59 e_inpOut _inpOut;
60 bncTime _lastEpoTime;
61 std::ifstream _stream;
62 std::string _lastLine;
63 t_sp3Epoch* _currEpoch;
64 t_sp3Epoch* _prevEpoch;
65 std::ostringstream _oStr;
66};
67
68#endif
Note: See TracBrowser for help on using the repository browser.