source: ntrip/trunk/BNC/src/bncsp3.cpp@ 9178

Last change on this file since 9178 was 9178, checked in by stuerze, 4 years ago

small bug fixed

File size: 6.8 KB
RevLine 
[3176]1
2/* -------------------------------------------------------------------------
3 * BKG NTRIP Server
4 * -------------------------------------------------------------------------
5 *
6 * Class: bncSP3
7 *
8 * Purpose: writes SP3 files
9 *
10 * Author: L. Mervart
11 *
12 * Created: 25-Apr-2008
13 *
[8084]14 * Changes:
[3176]15 *
16 * -----------------------------------------------------------------------*/
17
18#include <iomanip>
[6331]19#include <sstream>
[9178]20#include <iostream>
[3176]21#include <math.h>
22
23#include "bncsp3.h"
24#include "bncutils.h"
25
26using namespace std;
27
28// Constructor
29////////////////////////////////////////////////////////////////////////////
[6331]30bncSP3::bncSP3(const QString& fileName) : bncoutf(QString(), QString(), 0) {
31 _inpOut = input;
32 _currEpoch = 0;
33 _prevEpoch = 0;
34
[8204]35 _stream.open(fileName.toLatin1().data());
[6331]36 if (!_stream.good()) {
37 throw "t_sp3File: cannot open file " + fileName;
[8084]38 }
[6331]39
40 while (_stream.good()) {
41 getline(_stream, _lastLine);
42 if (_lastLine[0] == '*') {
43 break;
44 }
45 }
46}
47
48// Constructor
49////////////////////////////////////////////////////////////////////////////
[8084]50bncSP3::bncSP3(const QString& sklFileName, const QString& intr, int sampl)
[3184]51 : bncoutf(sklFileName, intr, sampl) {
[6331]52 _inpOut = output;
53 _currEpoch = 0;
54 _prevEpoch = 0;
[3176]55}
56
57// Destructor
58////////////////////////////////////////////////////////////////////////////
59bncSP3::~bncSP3() {
[6331]60 delete _currEpoch;
61 delete _prevEpoch;
[3176]62}
63
64// Write One Epoch
65////////////////////////////////////////////////////////////////////////////
[8084]66t_irc bncSP3::write(int GPSweek, double GPSweeks, const QString& prn,
[8483]67 const ColumnVector& xCoM, double sp3Clk,
68 const ColumnVector& v, double sp3ClkRate) {
[3176]69
[3184]70 if (reopen(GPSweek, GPSweeks) == success) {
[3176]71
[4296]72 bncTime epoTime(GPSweek, GPSweeks);
73
74 if (epoTime != _lastEpoTime) {
75
76 // Check the sampling interval (print empty epochs)
77 // ------------------------------------------------
[4298]78 if (_lastEpoTime.valid() && _sampl > 0) {
[4296]79 for (bncTime ep = _lastEpoTime +_sampl; ep < epoTime; ep = ep +_sampl) {
[4297]80 _out << "* " << ep.datestr(' ') << ' ' << ep.timestr(8, ' ') << endl;
[4296]81 }
82 }
83
[8084]84 // Print the new epoch
[4296]85 // -------------------
[4297]86 _out << "* " << epoTime.datestr(' ') << ' ' << epoTime.timestr(8, ' ') << endl;
[4296]87
88 _lastEpoTime = epoTime;
[3176]89 }
[4296]90
[8204]91 _out << "P" << prn.toLatin1().data()
[8483]92 << setw(14) << setprecision(6) << xCoM(1) / 1000.0 // [km]
93 << setw(14) << setprecision(6) << xCoM(2) / 1000.0 // [km]
94 << setw(14) << setprecision(6) << xCoM(3) / 1000.0 // [km]
95 << setw(14) << setprecision(6) << sp3Clk * 1e6 // microseconds
96 << endl;
[8084]97
[8483]98 if (sp3ClkRate) {
99 _out << "V" << prn.toLatin1().data()
100 << setw(14) << setprecision(6) << v(1) * 10.0 // [dm/s]
101 << setw(14) << setprecision(6) << v(2) * 10.0 // [dm/s]
102 << setw(14) << setprecision(6) << v(3) * 10.0 // [dm/s]
103 << setw(14) << setprecision(6) << sp3ClkRate * 1e2 // 10^⁻4 microseconds/sec
104 << endl;
105 }
[3176]106 return success;
107 }
108 else {
109 return failure;
110 }
111}
112
113// Close File (write last line)
114////////////////////////////////////////////////////////////////////////////
115void bncSP3::closeFile() {
116 _out << "EOF" << endl;
117 bncoutf::closeFile();
118}
119
120// Write Header
121////////////////////////////////////////////////////////////////////////////
122void bncSP3::writeHeader(const QDateTime& datTim) {
123
124 int GPSWeek;
125 double GPSWeeks;
126 GPSweekFromDateAndTime(datTim, GPSWeek, GPSWeeks);
127
128 double sec = fmod(GPSWeeks, 60.0);
129
130 int mjd;
131 double dayfrac;
132 mjdFromDateAndTime(datTim, mjd, dayfrac);
[8084]133
[4382]134 int numEpo = _numSec;
135 if (_sampl > 0) {
136 numEpo /= _sampl;
137 }
[3176]138
[8204]139 _out << "#aP" << datTim.toString("yyyy MM dd hh mm").toLatin1().data()
[3176]140 << setw(12) << setprecision(8) << sec
[8084]141 << " " << setw(7) << numEpo << " ORBIT IGS14 HLM IGS" << endl;
[3176]142
[8084]143 _out << "## "
[3176]144 << setw(4) << GPSWeek
145 << setw(16) << setprecision(8) << GPSWeeks
146 << setw(15) << setprecision(8) << double(_sampl)
147 << setw(6) << mjd
148 << setw(16) << setprecision(13) << dayfrac << endl;
149
[3714]150 _out << "+ 56 G01G02G03G04G05G06G07G08G09G10G11G12G13G14G15G16G17\n"
151 << "+ G18G19G20G21G22G23G24G25G26G27G28G29G30G31G32R01R02\n"
152 << "+ R03R04R05R06R07R08R09R10R11R12R13R14R15R16R17R18R19\n"
153 << "+ R20R21R22R23R24 0 0 0 0 0 0 0 0 0 0 0 0\n"
[3176]154 << "+ 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0\n"
155 << "++ 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0\n"
156 << "++ 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0\n"
157 << "++ 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0\n"
158 << "++ 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0\n"
159 << "++ 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0\n"
160 << "%c cc cc ccc ccc cccc cccc cccc cccc ccccc ccccc ccccc ccccc\n"
161 << "%c cc cc ccc ccc cccc cccc cccc cccc ccccc ccccc ccccc ccccc\n"
162 << "%f 0.0000000 0.000000000 0.00000000000 0.000000000000000\n"
163 << "%f 0.0000000 0.000000000 0.00000000000 0.000000000000000\n"
164 << "%i 0 0 0 0 0 0 0 0 0\n"
165 << "%i 0 0 0 0 0 0 0 0 0\n"
166 << "/* \n"
167 << "/* \n"
168 << "/* \n"
169 << "/* \n";
170}
171
[6331]172// Read Next Epoch
173////////////////////////////////////////////////////////////////////////////
174const bncSP3::t_sp3Epoch* bncSP3::nextEpoch() {
175
176 delete _prevEpoch; _prevEpoch = _currEpoch; _currEpoch = 0;
177
[6354]178 if (_lastLine[0] == '*') {
179 _currEpoch = new t_sp3Epoch();
180 istringstream in(_lastLine.substr(1).c_str());
181 int YY, MM, DD, hh, mm;
182 double ss;
183 in >> YY >> MM >> DD >> hh >> mm >> ss;
184 _currEpoch->_tt.set(YY, MM, DD, hh, mm, ss);
185 }
186
[6440]187 while (_stream.good()) {
[6331]188 getline(_stream, _lastLine);
189 if (_stream.eof() || _lastLine.find("EOF") == 0) {
[6440]190 _stream.close();
[6331]191 break;
192 }
193 if (_lastLine[0] == '*') {
194 break;
195 }
196
197 t_sp3Sat* sp3Sat = new t_sp3Sat();
198 istringstream in(_lastLine.substr(1).c_str());
[8084]199 in >> sp3Sat->_prn >> sp3Sat->_xyz(1) >> sp3Sat->_xyz(2) >> sp3Sat->_xyz(3) >> sp3Sat->_clk;
[6331]200
[8902]201 if (sp3Sat->_xyz.NormFrobenius() == 0.0) {
[6533]202 delete sp3Sat;
203 continue;
204 }
205
[6331]206 sp3Sat->_xyz *= 1.e3;
[6351]207 if (sp3Sat->_clk == 999999.999999) {
208 sp3Sat->_clkValid = false;
209 sp3Sat->_clk = 0.0;
210 }
211 else {
212 sp3Sat->_clkValid = true;
213 sp3Sat->_clk *= t_CST::c * 1.e-6;
214 }
[6331]215
216 _currEpoch->_sp3Sat.push_back(sp3Sat);
217 }
218
219 return _currEpoch;
220}
Note: See TracBrowser for help on using the repository browser.