source: ntrip/branches/BNC_2.12/src/pppOptions.cpp@ 8142

Last change on this file since 8142 was 7048, checked in by stuerze, 9 years ago

a method for code LC determination is added

File size: 4.0 KB
Line 
1// Part of BNC, a utility for retrieving decoding and
2// converting GNSS data streams from NTRIP broadcasters.
3//
4// Copyright (C) 2007
5// German Federal Agency for Cartography and Geodesy (BKG)
6// http://www.bkg.bund.de
7// Czech Technical University Prague, Department of Geodesy
8// http://www.fsv.cvut.cz
9//
10// Email: euref-ip@bkg.bund.de
11//
12// This program is free software; you can redistribute it and/or
13// modify it under the terms of the GNU General Public License
14// as published by the Free Software Foundation, version 2.
15//
16// This program is distributed in the hope that it will be useful,
17// but WITHOUT ANY WARRANTY; without even the implied warranty of
18// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19// GNU General Public License for more details.
20//
21// You should have received a copy of the GNU General Public License
22// along with this program; if not, write to the Free Software
23// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
24
25/* -------------------------------------------------------------------------
26 * BKG NTRIP Client
27 * -------------------------------------------------------------------------
28 *
29 * Class: t_pppOptions
30 *
31 * Purpose: Options for PPP client
32 *
33 * Author: L. Mervart
34 *
35 * Created: 29-Jul-2014
36 *
37 * Changes:
38 *
39 * -----------------------------------------------------------------------*/
40
41#include <newmatio.h>
42#include "pppOptions.h"
43
44using namespace BNC_PPP;
45using namespace std;
46
47// Constructor
48//////////////////////////////////////////////////////////////////////////////
49t_pppOptions::t_pppOptions() {
50 _xyzAprRover.ReSize(3); _xyzAprRover = 0.0;
51 _neuEccRover.ReSize(3); _neuEccRover = 0.0;
52 _aprSigCrd.ReSize(3); _aprSigCrd = 0.0;
53 _noiseCrd.ReSize(3); _noiseCrd = 0.0;
54}
55
56// Destructor
57//////////////////////////////////////////////////////////////////////////////
58t_pppOptions::~t_pppOptions() {
59}
60
61//
62//////////////////////////////////////////////////////////////////////////////
63const std::vector<t_lc::type>& t_pppOptions::LCs(char system) const {
64
65 if (system == 'R') {
66 return _LCsGLONASS;
67 }
68 else if (system == 'E') {
69 return _LCsGalileo;
70 }
71 else if (system == 'C') {
72 return _LCsBDS;
73 }
74 else {
75 return _LCsGPS;
76 }
77}
78
79//
80//////////////////////////////////////////////////////////////////////////////
81bool t_pppOptions::useOrbClkCorr() const {
82 if (_realTime) {
83 return !_corrMount.empty();
84 }
85 else {
86 return !_corrFile.empty();
87 }
88}
89
90// Processed satellite systems
91/////////////////////////////////////////////////////////////////////////////
92vector<char> t_pppOptions::systems() const {
93 vector<char> answ;
94 if (_LCsGPS.size() > 0) answ.push_back('G');
95 if (_LCsGLONASS.size() > 0) answ.push_back('R');
96 if (_LCsGalileo.size() > 0) answ.push_back('E');
97 if (_LCsBDS.size() > 0) answ.push_back('C');
98 return answ;
99}
100
101//
102/////////////////////////////////////////////////////////////////////////////
103vector<t_lc::type> t_pppOptions::ambLCs(char system) const {
104
105 const vector<t_lc::type>& allLCs = LCs(system);
106 vector<t_lc::type> phaseLCs;
107 for (unsigned ii = 0; ii < allLCs.size(); ii++) {
108 if (t_lc::includesPhase(allLCs[ii])) {
109 phaseLCs.push_back(allLCs[ii]);
110 }
111 }
112
113 vector<t_lc::type> answ;
114 if (phaseLCs.size() == 1) {
115 answ.push_back(phaseLCs[0]);
116 }
117 else if (phaseLCs.size() > 1) {
118 answ.push_back(t_lc::l1);
119 answ.push_back(t_lc::l2);
120 }
121
122 return answ;
123}
124
125//
126/////////////////////////////////////////////////////////////////////////////
127vector<t_lc::type> t_pppOptions::codeLCs(char system) const {
128
129 const vector<t_lc::type>& allLCs = LCs(system);
130 vector<t_lc::type> codeLCs;
131 for (unsigned ii = 0; ii < allLCs.size(); ii++) {
132 if (t_lc::includesCode(allLCs[ii])) {
133 codeLCs.push_back(allLCs[ii]);
134 }
135 }
136
137 vector<t_lc::type> answ;
138 if (codeLCs.size() == 1) {
139 answ.push_back(codeLCs[0]);
140 }
141 else if (codeLCs.size() > 1) {
142 answ.push_back(t_lc::c1);
143 answ.push_back(t_lc::c2);
144 }
145
146 return answ;
147}
Note: See TracBrowser for help on using the repository browser.