| 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 | #ifndef BNCANTEX_H
|
|---|
| 26 | #define BNCANTEX_H
|
|---|
| 27 |
|
|---|
| 28 | #include <QtCore>
|
|---|
| 29 | #include <QString>
|
|---|
| 30 | #include <string>
|
|---|
| 31 | #include <newmat.h>
|
|---|
| 32 | #include "bncconst.h"
|
|---|
| 33 | #include "bnctime.h"
|
|---|
| 34 |
|
|---|
| 35 | class bncAntex {
|
|---|
| 36 | public:
|
|---|
| 37 | bncAntex(const char* fileName);
|
|---|
| 38 | bncAntex();
|
|---|
| 39 | ~bncAntex();
|
|---|
| 40 | t_irc readFile(const QString& fileName);
|
|---|
| 41 | void print() const;
|
|---|
| 42 | QString pcoSinexString(const std::string& antName, t_frequency::type frqType);
|
|---|
| 43 | double satCorr(const QString& prn, t_frequency::type frqType,
|
|---|
| 44 | double eleSat, double azSat, bool& found) const;
|
|---|
| 45 | double rcvCorr(const std::string& antName, t_frequency::type frqType,
|
|---|
| 46 | double eleSat, double azSat, bool& found) const;
|
|---|
| 47 | t_irc satCoMcorrection(const QString& prn, double Mjd,
|
|---|
| 48 | const ColumnVector& xSat, ColumnVector& dx);
|
|---|
| 49 |
|
|---|
| 50 | private:
|
|---|
| 51 | class t_frqMap {
|
|---|
| 52 | public:
|
|---|
| 53 | t_frqMap() {
|
|---|
| 54 | for (unsigned ii = 0; ii < 3; ii++) {
|
|---|
| 55 | neu[ii] = 0.0;
|
|---|
| 56 | }
|
|---|
| 57 | }
|
|---|
| 58 | double neu[3];
|
|---|
| 59 | ColumnVector pattern;
|
|---|
| 60 | };
|
|---|
| 61 |
|
|---|
| 62 | class t_antMap {
|
|---|
| 63 | public:
|
|---|
| 64 | t_antMap() {
|
|---|
| 65 | zen1 = 0.0;
|
|---|
| 66 | zen2 = 0.0;
|
|---|
| 67 | dZen = 0.0;
|
|---|
| 68 | }
|
|---|
| 69 | ~t_antMap() {
|
|---|
| 70 | QMapIterator<t_frequency::type, t_frqMap*> it(frqMap);
|
|---|
| 71 | while (it.hasNext()) {
|
|---|
| 72 | it.next();
|
|---|
| 73 | delete it.value();
|
|---|
| 74 | }
|
|---|
| 75 | }
|
|---|
| 76 | QString antName;
|
|---|
| 77 | double zen1;
|
|---|
| 78 | double zen2;
|
|---|
| 79 | double dZen;
|
|---|
| 80 | QMap<t_frequency::type, t_frqMap*> frqMap;
|
|---|
| 81 | bncTime validFrom;
|
|---|
| 82 | bncTime validTo;
|
|---|
| 83 | };
|
|---|
| 84 |
|
|---|
| 85 | QMap<QString, t_antMap*> _maps;
|
|---|
| 86 | };
|
|---|
| 87 |
|
|---|
| 88 | #endif
|
|---|