source: ntrip/trunk/BNC/src/satObs.cpp@ 6455

Last change on this file since 6455 was 6455, checked in by mervart, 9 years ago
File size: 1.3 KB
Line 
1#include <iostream>
2#include <iomanip>
3#include <sstream>
4
5#include "satObs.h"
6
7using namespace std;
8
9//
10////////////////////////////////////////////////////////////////////////////
11void t_clkCorr::reset() {
12 _prn.set(' ', 0);
13 _time.reset();
14 _iod = 0;
15 _dClk = 0.0;
16 _dotDClk = 0.0;
17 _dotDotDClk = 0.0;
18 _clkPartial = 0.0;
19}
20
21//
22////////////////////////////////////////////////////////////////////////////
23void t_clkCorr::writeEpoch(std::ostream* out, const QList<t_clkCorr>& corrList) {
24 *out << "CLOCK CORRECTIONS: " << corrList.size() << endl;
25}
26
27//
28////////////////////////////////////////////////////////////////////////////
29void t_clkCorr::readEpoch(std::istream* in, QList<t_clkCorr>& corrList) {
30}
31
32//
33////////////////////////////////////////////////////////////////////////////
34void t_orbCorr::reset() {
35 _prn.set(' ', 0);
36 _time.reset();
37 _xr.ReSize(3); _xr = 0.0;
38 _dotXr.ReSize(3); _dotXr = 0.0;
39 _iod = 0;
40 _system = 'R';
41}
42
43//
44////////////////////////////////////////////////////////////////////////////
45void t_orbCorr::writeEpoch(std::ostream* out, const QList<t_orbCorr>& corrList) {
46 *out << "ORB CORRECTIONS: " << corrList.size() << endl;
47}
48
49//
50////////////////////////////////////////////////////////////////////////////
51void t_orbCorr::readEpoch(std::istream* in, QList<t_orbCorr>& corrList) {
52}
Note: See TracBrowser for help on using the repository browser.