source: ntrip/trunk/BNC/src/pppOptions.cpp@ 8102

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

a method for code LC determination is added

File size: 4.0 KB
RevLine 
[5708]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 *
[5810]29 * Class: t_pppOptions
[5708]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>
[5810]42#include "pppOptions.h"
[5708]43
[5814]44using namespace BNC_PPP;
[5708]45using namespace std;
46
47// Constructor
48//////////////////////////////////////////////////////////////////////////////
[5810]49t_pppOptions::t_pppOptions() {
[5790]50 _xyzAprRover.ReSize(3); _xyzAprRover = 0.0;
51 _neuEccRover.ReSize(3); _neuEccRover = 0.0;
[5912]52 _aprSigCrd.ReSize(3); _aprSigCrd = 0.0;
53 _noiseCrd.ReSize(3); _noiseCrd = 0.0;
[5708]54}
55
[5736]56// Destructor
57//////////////////////////////////////////////////////////////////////////////
[5810]58t_pppOptions::~t_pppOptions() {
[5736]59}
60
[5757]61//
62//////////////////////////////////////////////////////////////////////////////
[5912]63const std::vector<t_lc::type>& t_pppOptions::LCs(char system) const {
[6965]64
[5912]65 if (system == 'R') {
66 return _LCsGLONASS;
67 }
68 else if (system == 'E') {
69 return _LCsGalileo;
70 }
[6965]71 else if (system == 'C') {
72 return _LCsBDS;
73 }
[5912]74 else {
75 return _LCsGPS;
76 }
[5757]77}
78
79//
80//////////////////////////////////////////////////////////////////////////////
[5912]81bool t_pppOptions::useOrbClkCorr() const {
82 if (_realTime) {
83 return !_corrMount.empty();
[5837]84 }
85 else {
[5912]86 return !_corrFile.empty();
[5837]87 }
[5789]88}
89
[5912]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');
[6035]96 if (_LCsGalileo.size() > 0) answ.push_back('E');
[6965]97 if (_LCsBDS.size() > 0) answ.push_back('C');
[5912]98 return answ;
[5757]99}
100
101//
[5912]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]);
[5797]110 }
[5757]111 }
[5797]112
[5912]113 vector<t_lc::type> answ;
114 if (phaseLCs.size() == 1) {
115 answ.push_back(phaseLCs[0]);
[5757]116 }
[5912]117 else if (phaseLCs.size() > 1) {
118 answ.push_back(t_lc::l1);
119 answ.push_back(t_lc::l2);
120 }
[5797]121
[5912]122 return answ;
[5757]123}
[7048]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.