source: ntrip/trunk/BNC/src/bncsinextro.cpp@ 9957

Last change on this file since 9957 was 9889, checked in by stuerze, 17 months ago

minor changes regarrding sinex tro files

  • Property svn:keywords set to Author Date Id Rev URL;svn:eol-style=native
  • Property svn:mime-type set to text/plain
File size: 13.6 KB
RevLine 
[6653]1
2/* -------------------------------------------------------------------------
3 * BKG NTRIP Server
4 * -------------------------------------------------------------------------
5 *
6 * Class: bncSinexTro
7 *
8 * Purpose: writes SINEX TRO files
9 *
10 * Author: A. Stürze
11 *
12 * Created: 19-Feb-2015
13 *
14 * Changes:
15 *
16 * -----------------------------------------------------------------------*/
17
18#include <math.h>
19#include <iomanip>
20
21#include "bncsinextro.h"
22
23using namespace BNC_PPP;
24using namespace std;
25
26// Constructor
27////////////////////////////////////////////////////////////////////////////
28bncSinexTro::bncSinexTro(const t_pppOptions* opt,
29 const QString& sklFileName, const QString& intr,
30 int sampl)
31 : bncoutf(sklFileName, intr, sampl) {
[7521]32
[9889]33 _opt = opt;
[8403]34 _sampl = sampl;
[7521]35
[7862]36 _antex = 0;
[6653]37}
38
39// Destructor
40////////////////////////////////////////////////////////////////////////////
41bncSinexTro::~bncSinexTro() {
42 closeFile();
[7521]43 if (_antex)
44 delete _antex;
[6653]45}
46
47// Write Header
48////////////////////////////////////////////////////////////////////////////
49void bncSinexTro::writeHeader(const QDateTime& datTim) {
50 int GPSWeek;
51 double GPSWeeks;
[7521]52 bncSettings settings;
[6653]53 GPSweekFromDateAndTime(datTim, GPSWeek, GPSWeeks);
54 int daysec = int(fmod(GPSWeeks, 86400.0));
55 int dayOfYear = datTim.date().dayOfYear();
56 QString yy = datTim.toString("yy");
57 QString creationTime = QString("%1:%2:%3").arg(yy)
58 .arg(dayOfYear, 3, 10, QLatin1Char('0'))
59 .arg(daysec , 5, 10, QLatin1Char('0'));
60 QString startTime = creationTime;
[7521]61 QString intStr = settings.value("PPP/snxtroIntr").toString();
62 int intr, indHlp = 0;
63 if ((indHlp = intStr.indexOf("min")) != -1) {
64 intr = intStr.left(indHlp-1).toInt();
65 intr *= 60;
66 }
67 else if ((indHlp = intStr.indexOf("hour")) != -1) {
68 intr = intStr.left(indHlp-1).toInt();
69 intr *= 3600;
70 }
71 else if ((indHlp = intStr.indexOf("day")) != -1) {
72 intr = intStr.left(indHlp-1).toInt();
73 intr *= 86400;
74 }
[7767]75 int nominalStartSec = daysec - (int(fmod(double(daysec), double(intr))));
76 int nominalEndSec = nominalStartSec + intr - _sampl;
77 QString endTime = QString("%1:%2:%3").arg(yy)
78 .arg(dayOfYear , 3, 10, QLatin1Char('0'))
79 .arg(nominalEndSec , 5, 10, QLatin1Char('0'));
80 int numEpochs = ((nominalEndSec - daysec) / _sampl) +1;
81 QString epo = QString("%1").arg(numEpochs, 5, 10, QLatin1Char('0'));
[7788]82 QString ac = QString("%1").arg(settings.value("PPP/snxtroAc").toString(),3,QLatin1Char(' '));
[9889]83 QString sol = QString(" %1").arg(settings.value("PPP/snxtroSol").toString(),1,QLatin1Char(' '));
84 QString corr = "";
85 if (settings.value("PPP/dataSource").toString() == "Real-Time Streams") {
86 corr = settings.value("PPP/corrMount").toString();
87 }
88 else if (settings.value("PPP/dataSource").toString() == "RINEX Files") {
89 corr = settings.value("PPP/corrFile").toString();
90 }
[7767]91
[9889]92 QString signalPriorities = QString::fromStdString(_opt->_signalPriorities);
93 if (!signalPriorities.size()) {
94 signalPriorities = "G:12&CWPSLX R:12&CP E:1&CBX E:5&QIX C:26&IQX";
95 }
96 QStringList priorList = signalPriorities.split(" ", QString::SkipEmptyParts);
97 QStringList frqStrList;
98 for (unsigned iFreq = 1; iFreq < t_frequency::max; iFreq++) {
99 t_frequency::type frqType = static_cast<t_frequency::type>(iFreq);
100 char frqSys = t_frequency::toString(frqType)[0];
101 char frqNum = t_frequency::toString(frqType)[1];
102 QStringList hlp;
103 for (int ii = 0; ii < priorList.size(); ii++) {
104 if (priorList[ii].indexOf(":") != -1) {
105 hlp = priorList[ii].split(":", QString::SkipEmptyParts);
106 if (hlp.size() == 2 && hlp[0].length() == 1 && hlp[0][0] == frqSys) {
107 hlp = hlp[1].split("&", QString::SkipEmptyParts);
108 }
109 if (hlp.size() == 2 && hlp[0].indexOf(frqNum) != -1) {
110 frqStrList.append(QString("%1%2").arg(frqSys).arg(frqNum));
111 }
112 }
113 }
114 }
115
[7764]116 _out << "%=TRO 2.00 " << ac.toStdString() << " "
[7767]117 << creationTime.toStdString() << " " << ac.toStdString() << " "
118 << startTime.toStdString() << " " << endTime.toStdString() << " P "
119 << epo.toStdString() << " 0 " << " T " << endl;
[6653]120
121 _out << "+FILE/REFERENCE" << endl;
122 _out << " DESCRIPTION " << "BNC generated SINEX TRO file" << endl;
123 _out << " OUTPUT " << "Total Troposphere Zenith Path Delay Product" << endl;
[7764]124 _out << " SOFTWARE " << BNCPGMNAME << endl;
[9889]125 _out << " INPUT " << "Observations_: " << _opt->_roverName.substr(0,9)
126 << ", SSR corrections: " << corr.toStdString() << endl;
[6653]127 _out << "-FILE/REFERENCE" << endl << endl;
128
[7764]129 double recEll[3];
130 int lonD, lonM, latD, latM;
131 double lonS, latS;
132 xyz2ell(_opt->_xyzAprRover.data(), recEll);
[7788]133 deg2DMS(recEll[0] * 180.0 / M_PI, latD, latM, latS);
134 deg2DMS(recEll[1] * 180.0 / M_PI, lonD, lonM, lonS);
[7764]135 QString country;
136 QListIterator<QString> it(settings.value("mountPoints").toStringList());
137 while (it.hasNext()) {
138 QStringList hlp = it.next().split(" ");
139 if (hlp.size() < 7)
140 continue;
141 if (hlp.join(" ").indexOf(QString::fromStdString(_opt->_roverName), 0) != -1) {
142 country = hlp[2];
143 }
144 }
[7521]145 _out << "+SITE/ID" << endl;
[9889]146 _out << "*CODE PT DOMES____ T _STATION DESCRIPTION__ APPROX_LON_ APPROX_LAT_ _APP_H_" << endl;
147 _out << " " << _opt->_roverName.substr(0,9) << " A P "
[7764]148 << country.toStdString() << " "
149 << QString(" %1").arg(lonD, 3, 10, QLatin1Char(' ')).toStdString()
150 << QString(" %1").arg(lonM, 2, 10, QLatin1Char(' ')).toStdString()
151 << QString(" %1").arg(lonS, 4, 'f', 1, QLatin1Char(' ')).toStdString()
152 << QString(" %1").arg(latD, 3, 10, QLatin1Char(' ')).toStdString()
153 << QString(" %1").arg(latM, 2, 10, QLatin1Char(' ')).toStdString()
154 << QString(" %1").arg(latS, 4, 'f', 1, QLatin1Char(' ')).toStdString()
155 << QString(" %1").arg(recEll[2], 7, 'f', 1, QLatin1Char(' ')).toStdString()
156 << endl;
[7521]157 _out << "-SITE/ID" << endl << endl;
158
[7523]159 if (!_opt->_recNameRover.empty()) {
160 _out << "+SITE/RECEIVER" << endl;
[9889]161 _out << "*SITE PT SOLN T DATA_START__ DATA_END____ DESCRIPTION_________ S/N__ FIRMWARE___" << endl;
162 _out << " " << _opt->_roverName.substr(0,9) << " A " << sol.toStdString() << " P "
[7788]163 << startTime.toStdString() << " " << endTime.toStdString()
[8134]164 << QString(" %1").arg(_opt->_recNameRover.c_str(), 20,QLatin1Char(' ')).toStdString()
[7788]165 << " -----" << " -----------" << endl;
[7523]166 _out << "-SITE/RECEIVER" << endl << endl;
167 }
[7521]168
169 _out << "+SITE/ANTENNA" << endl;
[9889]170 _out << "*SITE PT SOLN T DATA_START__ DATA_END____ DESCRIPTION_________ S/N__" << endl;
171 _out << " " << _opt->_roverName.substr(0,9) << " A " << sol.toStdString() << " P "
[7788]172 << startTime.toStdString() << " " << endTime.toStdString() << " "
173 << _opt->_antNameRover << " -----" << endl;
[7521]174 _out << "-SITE/ANTENNA" << endl << endl;
175
[7862]176 if (!_opt->_antexFileName.empty()) {
177 _antex = new bncAntex(_opt->_antexFileName.c_str());
[7521]178 if (_opt->_LCsGPS.size()) {
179 _out << "+SITE/GPS_PHASE_CENTER" << endl;
[7766]180 _out << "* UP____ NORTH_ EAST__ UP____ NORTH_ EAST__" << endl;
181 _out << "*DESCRIPTION_________ S/N__ L1->ARP(m)__________ L2->ARP(m)__________ AZ_EL____" << endl;
[7521]182 _out << QString(" %1").arg(_opt->_antNameRover.c_str(), 20,QLatin1Char(' ')).toStdString()
[9889]183 << " -----";
184 for (int i = 0; i < frqStrList.size(); ++i) {
185 if (frqStrList.at(i).contains('G')) {//cout << frqStrList.at(i).toStdString() << endl;
186 _out << _antex->pcoSinexString(_opt->_antNameRover, t_frequency::toInt(frqStrList.at(i).toStdString())).toStdString();
187 }
188 }
189 _out << " ---------" << endl;
[7521]190 _out << "-SITE/GPS_PHASE_CENTER" << endl << endl;
191 }
192 if (_opt->_LCsGLONASS.size()) {
193 _out << "+SITE/GLONASS_PHASE_CENTER" << endl;
[7766]194 _out << "* UP____ NORTH_ EAST__ UP____ NORTH_ EAST__" << endl;
195 _out << "*DESCRIPTION_________ S/N__ L1->ARP(m)__________ L2->ARP(m)__________ AZ_EL____" << endl;
[7521]196 _out << QString(" %1").arg(_opt->_antNameRover.c_str(), 20,QLatin1Char(' ')).toStdString()
[9889]197 << " -----";
198 for (int i = 0; i < frqStrList.size(); ++i) {
199 if (frqStrList.at(i).contains('R')) {//cout << frqStrList.at(i).toStdString() << endl;
200 _out << _antex->pcoSinexString(_opt->_antNameRover, t_frequency::toInt(frqStrList.at(i).toStdString())).toStdString();
201 }
202 }
203 _out << " ---------" << endl;
[7521]204 _out << "-SITE/GLONASS_PHASE_CENTER" << endl << endl;
205 }
206 if (_opt->_LCsGalileo.size()) {
207 _out << "+SITE/GALILEO_PHASE_CENTER" << endl;
[7766]208 _out << "* UP____ NORTH_ EAST__ UP____ NORTH_ EAST__" << endl;
209 _out << "*DESCRIPTION_________ S/N__ L1->ARP(m)__________ L2->ARP(m)__________ AZ_EL____" << endl;
[7521]210 _out << QString(" %1").arg(_opt->_antNameRover.c_str(), 20,QLatin1Char(' ')).toStdString()
[9889]211 << " -----";
212 for (int i = 0; i < frqStrList.size(); ++i) {
213 if (frqStrList.at(i).contains('E')) {//cout << frqStrList.at(i).toStdString() << endl;
214 _out << _antex->pcoSinexString(_opt->_antNameRover, t_frequency::toInt(frqStrList.at(i).toStdString())).toStdString();
215 }
216 }
217 _out << " ---------" << endl;
[7521]218 _out << "-SITE/GALILEO_PHASE_CENTER" << endl << endl;
219 }
220 if (_opt->_LCsBDS.size()) {
221 _out << "+SITE/BEIDOU_PHASE_CENTER" << endl;
[7766]222 _out << "* UP____ NORTH_ EAST__ UP____ NORTH_ EAST__" << endl;
223 _out << "*DESCRIPTION_________ S/N__ L1->ARP(m)__________ L2->ARP(m)__________ AZ_EL____" << endl;
[7521]224 _out << QString(" %1").arg(_opt->_antNameRover.c_str(), 20,QLatin1Char(' ')).toStdString()
[9889]225 << " -----";
226 for (int i = 0; i < frqStrList.size(); ++i) {
227 if (frqStrList.at(i).contains('C')) {//cout << frqStrList.at(i).toStdString() << endl;
228 _out << _antex->pcoSinexString(_opt->_antNameRover, t_frequency::toInt(frqStrList.at(i).toStdString())).toStdString();
229 }
230 }
231 _out << " ---------" << endl;
[7521]232 _out << "-SITE/BEIDOU_PHASE_CENTER" << endl << endl;
233 }
[7862]234 delete _antex;
235 _antex = 0;
[7521]236 }
237
238 _out << "+SITE/ECCENTRICITY" << endl;
239 _out << "* UP______ NORTH___ EAST____" << endl;
[9889]240 _out << "*SITE PT SOLN T DATA_START__ DATA_END____ AXE ARP->BENCHMARK(M)_________" << endl;
241 _out << " " << _opt->_roverName.substr(0,9) << " A " << sol.toStdString() << " P "
[7766]242 << startTime.toStdString() << " " << endTime.toStdString() << " UNE"
[7521]243 << QString("%1").arg(_opt->_neuEccRover(3), 9, 'f', 4, QLatin1Char(' ')).toStdString()
244 << QString("%1").arg(_opt->_neuEccRover(1), 9, 'f', 4, QLatin1Char(' ')).toStdString()
245 << QString("%1").arg(_opt->_neuEccRover(2), 9, 'f', 4, QLatin1Char(' ')).toStdString() << endl;
[7770]246 _out << "-SITE/ECCENTRICITY" << endl << endl;
[7521]247
248 _out << "+TROP/COORDINATES" << endl;
[9889]249 _out << "*SITE PT SOLN T STA_X_______ STA_Y_______ STA_Z_______ SYSTEM REMARK" << endl;
250 _out << " " << _opt->_roverName.substr(0,9) << " A " << sol.toStdString() << " P"
[7766]251 << QString(" %1").arg(_opt->_xyzAprRover(1), 12, 'f', 3, QLatin1Char(' ')).toStdString()
252 << QString(" %1").arg(_opt->_xyzAprRover(2), 12, 'f', 3, QLatin1Char(' ')).toStdString()
253 << QString(" %1").arg(_opt->_xyzAprRover(3), 12, 'f', 3, QLatin1Char(' ')).toStdString()
[9889]254 << " IGS20 " << ac.toStdString() << endl;
[7521]255 _out << "-TROP/COORDINATES"<< endl << endl;
256
[6653]257 _out << "+TROP/DESCRIPTION" << endl;
258 _out << "*KEYWORD______________________ VALUE(S)______________" << endl;
[6658]259 _out << " SAMPLING INTERVAL "
260 << setw(4) << _sampl << endl;
261 _out << " SAMPLING TROP "
262 << setw(4) << _sampl << endl;
263 _out << " ELEVATION CUTOFF ANGLE "
264 << setw(4) << int(_opt->_minEle * 180.0/M_PI) << endl;
[6653]265 _out << " TROP MAPPING FUNCTION " << "Saastamoinen" << endl;
266 _out << " SOLUTION_FIELDS_1 " << "TROTOT STDEV" << endl;
267 _out << "-TROP/DESCRIPTION"<< endl << endl;
268
269 _out << "+TROP/SOLUTION" << endl;
[9889]270 _out << "*SITE EPOCH_______ TROTOT STDEV" << endl;
[6653]271}
272
273// Write One Epoch
274////////////////////////////////////////////////////////////////////////////
275t_irc bncSinexTro::write(QByteArray staID, int GPSWeek, double GPSWeeks,
276 double trotot, double stdev) {
277
278 QDateTime datTim = dateAndTimeFromGPSweek(GPSWeek, GPSWeeks);
279 int daysec = int(fmod(GPSWeeks, 86400.0));
280 int dayOfYear = datTim.date().dayOfYear();
281 QString yy = datTim.toString("yy");
282 QString time = QString("%1:%2:%3").arg(yy)
283 .arg(dayOfYear, 3, 10, QLatin1Char('0'))
284 .arg(daysec , 5, 10, QLatin1Char('0'));
285
286 if ((reopen(GPSWeek, GPSWeeks) == success) &&
287 (fmod(daysec, double(_sampl)) == 0.0)) {
[9889]288 _out << ' ' << staID.left(9).data() << ' ' << time.toStdString() << ' '
[6653]289 << noshowpos << setw(6) << setprecision(1) << trotot * 1000.0
290 << noshowpos << setw(6) << setprecision(1) << stdev * 1000.0 << endl;
291 _out.flush();
292 return success;
293 } else {
294 return failure;
295 }
296}
297
298// Close File (write last lines)
299////////////////////////////////////////////////////////////////////////////
300void bncSinexTro::closeFile() {
301 _out << "-TROP/SOLUTION" << endl;
302 _out << "%=ENDTROP" << endl;
303 bncoutf::closeFile();
304}
305
306
307
308
Note: See TracBrowser for help on using the repository browser.