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

Last change on this file since 6160 was 6160, checked in by mervart, 10 years ago
File size: 990 bytes
Line 
1
2#include "satObs.h"
3using namespace std;
4
5//
6////////////////////////////////////////////////////////////////////////////
7t_clkCorr::t_clkCorr() {
8 _iod = 0;
9 _dClk = 0.0;
10 _dotDClk = 0.0;
11 _dotDotDClk = 0.0;
12 _clkPartial = 0.0;
13}
14
15//
16////////////////////////////////////////////////////////////////////////////
17t_clkCorr::t_clkCorr(const string& str) {
18}
19
20//
21////////////////////////////////////////////////////////////////////////////
22string t_clkCorr::toString() const {
23 return "CLK";
24}
25
26//
27////////////////////////////////////////////////////////////////////////////
28t_orbCorr::t_orbCorr() {
29 _xr.ReSize(3); _xr = 0.0;
30 _dotXr.ReSize(3); _dotXr = 0.0;
31 _iod = 0;
32 _system = 'R';
33}
34
35//
36////////////////////////////////////////////////////////////////////////////
37t_orbCorr::t_orbCorr(const string& str) {
38}
39
40//
41////////////////////////////////////////////////////////////////////////////
42string t_orbCorr::toString() const {
43 return "ORB";
44}
45
Note: See TracBrowser for help on using the repository browser.