source: ntrip/branches/BNC_2.12/src/bncclockrinex.cpp@ 9147

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

bug fixed in clock rinex file header

File size: 3.9 KB
RevLine 
[3175]1
2/* -------------------------------------------------------------------------
3 * BKG NTRIP Server
4 * -------------------------------------------------------------------------
5 *
6 * Class: bncClockRinex
7 *
8 * Purpose: writes RINEX Clock files
9 *
10 * Author: L. Mervart
11 *
12 * Created: 29-Mar-2011
13 *
[7570]14 * Changes:
[3175]15 *
16 * -----------------------------------------------------------------------*/
17
18#include <math.h>
19#include <iomanip>
20
21#include "bncclockrinex.h"
22#include "bncsettings.h"
[7570]23#include "bncversion.h"
[3175]24
25using namespace std;
26
27// Constructor
28////////////////////////////////////////////////////////////////////////////
[7570]29bncClockRinex::bncClockRinex(const QString& sklFileName, const QString& intr,
30 int sampl)
[3184]31 : bncoutf(sklFileName, intr, sampl) {
[3175]32 bncSettings settings;
33}
34
35// Destructor
36////////////////////////////////////////////////////////////////////////////
37bncClockRinex::~bncClockRinex() {
[8836]38 bncoutf::closeFile();
[3175]39}
40
41// Write One Epoch
42////////////////////////////////////////////////////////////////////////////
[7570]43t_irc bncClockRinex::write(int GPSweek, double GPSweeks, const QString& prn,
[8484]44 double clkRnx, double clkRnxRate, double clkRnxAcc,
45 double clkRnxSig, double clkRnxRateSig, double clkRnxAccSig) {
[3175]46
[3184]47 if (reopen(GPSweek, GPSweeks) == success) {
[3175]48
49 QDateTime datTim = dateAndTimeFromGPSweek(GPSweek, GPSweeks);
50 double sec = fmod(GPSweeks, 60.0);
[7570]51
[8484]52 int numValues = 1;
53 if (clkRnxSig && clkRnxRate && clkRnxRateSig) {
54 numValues += 3;
55 }
56 if (clkRnxAcc && clkRnxAccSig) {
57 numValues += 2;
58 }
59
60 _out << "AS " << prn.toLatin1().data()
61 << datTim.toString(" yyyy MM dd hh mm").toLatin1().data()
[7570]62 << fixed << setw(10) << setprecision(6) << sec
[8484]63 << " " << numValues << " "
64 << fortranFormat(clkRnx, 19, 12).toLatin1().data();
[3175]65
[8484]66 if (numValues >=2) {
67 _out << " " << fortranFormat(clkRnxSig, 19, 12).toLatin1().data() << endl;
68 }
69 if (numValues == 4) {
70 _out << fortranFormat(clkRnxRate, 19, 12).toLatin1().data() << " ";
71 _out << fortranFormat(clkRnxRateSig, 19, 12).toLatin1().data() << " ";
72 }
73 if (numValues == 6) {
74 _out << fortranFormat(clkRnxAcc, 19, 12).toLatin1().data() << " ";
75 _out << " " << fortranFormat(clkRnxAccSig, 19, 12).toLatin1().data();
76 }
77 _out << endl;
[9139]78
[3175]79 return success;
80 }
81 else {
82 return failure;
83 }
84}
85
86// Write Header
87////////////////////////////////////////////////////////////////////////////
88void bncClockRinex::writeHeader(const QDateTime& datTim) {
89
[9147]90 _out << " 3.00 C " << "RINEX VERSION / TYPE" << endl;
91 ;
92 _out << QString("BNC v%1").arg(BNCVERSION).leftJustified(40, ' ', true).toAscii().data()
[3175]93 << datTim.toString("yyyyMMdd hhmmss").leftJustified(20, ' ', true).toAscii().data()
94 << "PGM / RUN BY / DATE" << endl;
95
96 _out << " 1 AS "
97 << "# / TYPES OF DATA" << endl;
98
[4253]99 _out << "unknown "
100 << "ANALYSIS CENTER" << endl;
101
102 _out << " 54 "
103 << "# OF SOLN SATS" << endl;
104
105 _out << "G01 G02 G03 G04 G05 G06 G07 G08 G09 G10 G11 G12 G13 G14 G15 "
106 << "PRN LIST" << endl;
107
108 _out << "G16 G17 G18 G19 G20 G21 G22 G23 G25 G26 G27 G28 G29 G30 G31 "
109 << "PRN LIST" << endl;
110
111 _out << "G32 R01 R02 R03 R05 R06 R07 R08 R09 R10 R11 R12 R13 R14 R15 "
112 << "PRN LIST" << endl;
113
114 _out << "R16 R17 R18 R19 R20 R21 R22 R23 R24 "
115 << "PRN LIST" << endl;
116
[8089]117 _out << " 0 IGS14 "
[4253]118 << "# OF SOLN STA / TRF" << endl;
119
[3175]120 _out << " "
121 << "END OF HEADER" << endl;
122}
123
Note: See TracBrowser for help on using the repository browser.