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 |
|
---|
44 | using namespace BNC_PPP;
|
---|
45 | using namespace std;
|
---|
46 |
|
---|
47 | // Constructor
|
---|
48 | //////////////////////////////////////////////////////////////////////////////
|
---|
49 | t_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 | //////////////////////////////////////////////////////////////////////////////
|
---|
58 | t_pppOptions::~t_pppOptions() {
|
---|
59 | }
|
---|
60 |
|
---|
61 |
|
---|
62 | //
|
---|
63 | //////////////////////////////////////////////////////////////////////////////
|
---|
64 | const std::vector<t_lc::type>& t_pppOptions::LCs(char system) const {
|
---|
65 | if (system == 'R') {
|
---|
66 | return _LCsGLONASS;
|
---|
67 | }
|
---|
68 | else if (system == 'E') {
|
---|
69 | return _LCsGalileo;
|
---|
70 | }
|
---|
71 | else {
|
---|
72 | return _LCsGPS;
|
---|
73 | }
|
---|
74 | }
|
---|
75 |
|
---|
76 | //
|
---|
77 | //////////////////////////////////////////////////////////////////////////////
|
---|
78 | bool t_pppOptions::dualFreqRequired(char system) const {
|
---|
79 | const std::vector<t_lc::type>& lcs = LCs(system);
|
---|
80 | for (unsigned ii = 0; ii < lcs.size(); ii++) {
|
---|
81 | if (t_lc::need2ndFreq(lcs[ii])) {
|
---|
82 | return true;
|
---|
83 | }
|
---|
84 | }
|
---|
85 | return false;
|
---|
86 | }
|
---|
87 |
|
---|
88 | //
|
---|
89 | //////////////////////////////////////////////////////////////////////////////
|
---|
90 | bool t_pppOptions::useOrbClkCorr() const {
|
---|
91 | if (_realTime) {
|
---|
92 | return !_corrMount.empty();
|
---|
93 | }
|
---|
94 | else {
|
---|
95 | return !_corrFile.empty();
|
---|
96 | }
|
---|
97 | }
|
---|
98 |
|
---|
99 | // Processed satellite systems
|
---|
100 | /////////////////////////////////////////////////////////////////////////////
|
---|
101 | vector<char> t_pppOptions::systems() const {
|
---|
102 | vector<char> answ;
|
---|
103 | if (_LCsGPS.size() > 0) answ.push_back('G');
|
---|
104 | if (_LCsGLONASS.size() > 0) answ.push_back('R');
|
---|
105 | return answ;
|
---|
106 | }
|
---|
107 |
|
---|
108 | //
|
---|
109 | /////////////////////////////////////////////////////////////////////////////
|
---|
110 | vector<t_lc::type> t_pppOptions::ambLCs(char system) const {
|
---|
111 |
|
---|
112 | const vector<t_lc::type>& allLCs = LCs(system);
|
---|
113 | vector<t_lc::type> phaseLCs;
|
---|
114 | for (unsigned ii = 0; ii < allLCs.size(); ii++) {
|
---|
115 | if (t_lc::includesPhase(allLCs[ii])) {
|
---|
116 | phaseLCs.push_back(allLCs[ii]);
|
---|
117 | }
|
---|
118 | }
|
---|
119 |
|
---|
120 | vector<t_lc::type> answ;
|
---|
121 | if (phaseLCs.size() == 1) {
|
---|
122 | answ.push_back(phaseLCs[0]);
|
---|
123 | }
|
---|
124 | else if (phaseLCs.size() > 1) {
|
---|
125 | answ.push_back(t_lc::l1);
|
---|
126 | answ.push_back(t_lc::l2);
|
---|
127 | }
|
---|
128 |
|
---|
129 | return answ;
|
---|
130 | }
|
---|