[2880] | 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: bncAntex
|
---|
| 30 | *
|
---|
| 31 | * Purpose: Antenna Phase Centers and Variations from ANTEX File
|
---|
| 32 | *
|
---|
| 33 | * Author: L. Mervart
|
---|
| 34 | *
|
---|
| 35 | * Created: 26-Jan-2011
|
---|
| 36 | *
|
---|
[7521] | 37 | * Changes:
|
---|
[2880] | 38 | *
|
---|
| 39 | * -----------------------------------------------------------------------*/
|
---|
| 40 |
|
---|
| 41 | #include <iostream>
|
---|
[2890] | 42 | #include <newmatio.h>
|
---|
[2880] | 43 |
|
---|
| 44 | #include "bncantex.h"
|
---|
[6041] | 45 | #include "pppModel.h"
|
---|
[2880] | 46 |
|
---|
| 47 | using namespace std;
|
---|
| 48 |
|
---|
| 49 | // Constructor
|
---|
| 50 | ////////////////////////////////////////////////////////////////////////////
|
---|
| 51 | bncAntex::bncAntex() {
|
---|
| 52 | }
|
---|
| 53 |
|
---|
[5754] | 54 | // Constructor
|
---|
| 55 | ////////////////////////////////////////////////////////////////////////////
|
---|
| 56 | bncAntex::bncAntex(const char* fileName) {
|
---|
| 57 | readFile(QString(fileName));
|
---|
| 58 | }
|
---|
| 59 |
|
---|
[2880] | 60 | // Destructor
|
---|
| 61 | ////////////////////////////////////////////////////////////////////////////
|
---|
| 62 | bncAntex::~bncAntex() {
|
---|
[2882] | 63 | QMapIterator<QString, t_antMap*> it(_maps);
|
---|
| 64 | while (it.hasNext()) {
|
---|
| 65 | it.next();
|
---|
| 66 | delete it.value();
|
---|
| 67 | }
|
---|
[2880] | 68 | }
|
---|
| 69 |
|
---|
[7521] | 70 | // Print
|
---|
[2880] | 71 | ////////////////////////////////////////////////////////////////////////////
|
---|
[2887] | 72 | void bncAntex::print() const {
|
---|
[6405] | 73 | QMapIterator<QString, t_antMap*> itAnt(_maps);
|
---|
| 74 | while (itAnt.hasNext()) {
|
---|
| 75 | itAnt.next();
|
---|
| 76 | t_antMap* map = itAnt.value();
|
---|
[2887] | 77 | cout << map->antName.toAscii().data() << endl;
|
---|
[2890] | 78 | cout << " " << map->zen1 << " " << map->zen2 << " " << map->dZen << endl;
|
---|
[6405] | 79 | QMapIterator<t_frequency::type, t_frqMap*> itFrq(map->frqMap);
|
---|
| 80 | while (itFrq.hasNext()) {
|
---|
| 81 | itFrq.next();
|
---|
| 82 | const t_frqMap* frqMap = itFrq.value();
|
---|
| 83 | cout << " " << frqMap->neu[0] << " "
|
---|
| 84 | << frqMap->neu[1] << " "
|
---|
| 85 | << frqMap->neu[2] << endl;
|
---|
| 86 | cout << " " << frqMap->pattern.t();
|
---|
[2890] | 87 | }
|
---|
| 88 | cout << endl;
|
---|
[2887] | 89 | }
|
---|
| 90 | }
|
---|
| 91 |
|
---|
[7521] | 92 | // Print
|
---|
| 93 | ////////////////////////////////////////////////////////////////////////////
|
---|
| 94 | QString bncAntex::pcoSinexString(const std::string& antName, t_frequency::type frqType) {
|
---|
| 95 |
|
---|
| 96 | if (antName.find("NULLANTENNA") != string::npos) {
|
---|
[7848] | 97 | return QString(" ------ ------ ------");
|
---|
[7521] | 98 | }
|
---|
| 99 |
|
---|
| 100 | QString antNameQ = antName.c_str();
|
---|
| 101 | if (_maps.find(antNameQ) == _maps.end()) {
|
---|
[7848] | 102 | return QString(" ------ ------ ------");
|
---|
[7521] | 103 | }
|
---|
| 104 |
|
---|
| 105 | t_antMap* map = _maps[antNameQ];
|
---|
| 106 | if (map->frqMap.find(frqType) == map->frqMap.end()) {
|
---|
[7848] | 107 | return QString(" ------ ------ ------");
|
---|
[7521] | 108 | }
|
---|
| 109 |
|
---|
| 110 | t_frqMap* frqMap = map->frqMap[frqType];
|
---|
| 111 |
|
---|
[7848] | 112 | QString u, n,e;
|
---|
| 113 | u.sprintf("%+6.4f" ,frqMap->neu[2]); if (u.mid(1,1) == "0") {u.remove(1,1);}
|
---|
| 114 | n.sprintf("%+6.4f" ,frqMap->neu[0]); if (n.mid(1,1) == "0") {n.remove(1,1);}
|
---|
| 115 | e.sprintf("%+6.4f" ,frqMap->neu[1]); if (e.mid(1,1) == "0") {e.remove(1,1);}
|
---|
| 116 |
|
---|
| 117 | return QString(" %1 %2 %3").arg(u).arg(n).arg(e);
|
---|
[7521] | 118 | }
|
---|
| 119 |
|
---|
[2894] | 120 | // Read ANTEX File
|
---|
[2887] | 121 | ////////////////////////////////////////////////////////////////////////////
|
---|
[2882] | 122 | t_irc bncAntex::readFile(const QString& fileName) {
|
---|
[2880] | 123 |
|
---|
[2881] | 124 | QFile inFile(fileName);
|
---|
| 125 | inFile.open(QIODevice::ReadOnly | QIODevice::Text);
|
---|
| 126 |
|
---|
| 127 | QTextStream in(&inFile);
|
---|
| 128 |
|
---|
[2888] | 129 | t_antMap* newAntMap = 0;
|
---|
| 130 | t_frqMap* newFrqMap = 0;
|
---|
| 131 |
|
---|
[2881] | 132 | while ( !in.atEnd() ) {
|
---|
| 133 | QString line = in.readLine();
|
---|
[7521] | 134 |
|
---|
[2883] | 135 | // Start of Antenna
|
---|
| 136 | // ----------------
|
---|
[2882] | 137 | if (line.indexOf("START OF ANTENNA") == 60) {
|
---|
[2883] | 138 | if (newAntMap) {
|
---|
| 139 | delete newAntMap;
|
---|
[2882] | 140 | return failure;
|
---|
| 141 | }
|
---|
| 142 | else {
|
---|
[3295] | 143 | delete newAntMap;
|
---|
[2883] | 144 | newAntMap = new t_antMap();
|
---|
[2882] | 145 | }
|
---|
[7521] | 146 | }
|
---|
[2881] | 147 |
|
---|
[2883] | 148 | // End of Antenna
|
---|
| 149 | // --------------
|
---|
[2882] | 150 | else if (line.indexOf("END OF ANTENNA") == 60) {
|
---|
[2883] | 151 | if (newAntMap) {
|
---|
[3542] | 152 | if (_maps.contains(newAntMap->antName)) {
|
---|
| 153 | delete _maps[newAntMap->antName];
|
---|
| 154 | }
|
---|
[2883] | 155 | _maps[newAntMap->antName] = newAntMap;
|
---|
| 156 | newAntMap = 0;
|
---|
[2882] | 157 | }
|
---|
| 158 | else {
|
---|
[3295] | 159 | delete newAntMap;
|
---|
[2882] | 160 | return failure;
|
---|
| 161 | }
|
---|
| 162 | }
|
---|
[2883] | 163 |
|
---|
| 164 | // Antenna Reading in Progress
|
---|
| 165 | // ---------------------------
|
---|
| 166 | else if (newAntMap) {
|
---|
| 167 | if (line.indexOf("TYPE / SERIAL NO") == 60) {
|
---|
[2889] | 168 | if (line.indexOf("BLOCK I") == 0 ||
|
---|
[7141] | 169 | line.indexOf("GLONASS") == 0 ||
|
---|
| 170 | line.indexOf("QZSS") == 0 ||
|
---|
| 171 | line.indexOf("BEIDOU") == 0 ||
|
---|
| 172 | line.indexOf("GALILEO") == 0 ||
|
---|
| 173 | line.indexOf("IRNSS") == 0 ){
|
---|
[2884] | 174 | newAntMap->antName = line.mid(20,3);
|
---|
| 175 | }
|
---|
| 176 | else {
|
---|
| 177 | newAntMap->antName = line.mid(0,20);
|
---|
| 178 | }
|
---|
[2883] | 179 | }
|
---|
| 180 | else if (line.indexOf("ZEN1 / ZEN2 / DZEN") == 60) {
|
---|
[2884] | 181 | QTextStream inLine(&line, QIODevice::ReadOnly);
|
---|
[7521] | 182 | inLine >> newAntMap->zen1 >> newAntMap->zen2 >> newAntMap->dZen;
|
---|
[2883] | 183 | }
|
---|
| 184 |
|
---|
[2885] | 185 | // Start of Frequency
|
---|
| 186 | // ------------------
|
---|
[2883] | 187 | else if (line.indexOf("START OF FREQUENCY") == 60) {
|
---|
| 188 | if (newFrqMap) {
|
---|
| 189 | delete newFrqMap;
|
---|
| 190 | delete newAntMap;
|
---|
| 191 | return failure;
|
---|
| 192 | }
|
---|
| 193 | else {
|
---|
| 194 | newFrqMap = new t_frqMap();
|
---|
| 195 | }
|
---|
| 196 | }
|
---|
| 197 |
|
---|
[2885] | 198 | // End of Frequency
|
---|
| 199 | // ----------------
|
---|
[2888] | 200 | else if (line.indexOf("END OF FREQUENCY") == 60) {
|
---|
[2883] | 201 | if (newFrqMap) {
|
---|
[6405] | 202 | t_frequency::type frqType = t_frequency::dummy;
|
---|
| 203 | if (line.indexOf("G01") == 3) {
|
---|
| 204 | frqType = t_frequency::G1;
|
---|
[2883] | 205 | }
|
---|
[6405] | 206 | else if (line.indexOf("G02") == 3) {
|
---|
| 207 | frqType = t_frequency::G2;
|
---|
[2883] | 208 | }
|
---|
[6405] | 209 | else if (line.indexOf("R01") == 3) {
|
---|
| 210 | frqType = t_frequency::R1;
|
---|
| 211 | }
|
---|
| 212 | else if (line.indexOf("R02") == 3) {
|
---|
| 213 | frqType = t_frequency::R2;
|
---|
| 214 | }
|
---|
[7144] | 215 | else if (line.indexOf("E01") == 3) {
|
---|
| 216 | frqType = t_frequency::E1;
|
---|
| 217 | }
|
---|
| 218 | else if (line.indexOf("E05") == 3) {
|
---|
| 219 | frqType = t_frequency::E5;
|
---|
| 220 | }
|
---|
| 221 | else if (line.indexOf("E06") == 3) {
|
---|
| 222 | frqType = t_frequency::E6;
|
---|
| 223 | }
|
---|
| 224 | else if (line.indexOf("E07") == 3) {
|
---|
| 225 | frqType = t_frequency::E7;
|
---|
| 226 | }
|
---|
| 227 | else if (line.indexOf("E08") == 3) {
|
---|
| 228 | frqType = t_frequency::E8;
|
---|
| 229 | }
|
---|
[7145] | 230 | else if (line.indexOf("J01") == 3) {
|
---|
| 231 | frqType = t_frequency::J1;
|
---|
| 232 | }
|
---|
| 233 | else if (line.indexOf("J02") == 3) {
|
---|
| 234 | frqType = t_frequency::J2;
|
---|
| 235 | }
|
---|
| 236 | else if (line.indexOf("J05") == 3) {
|
---|
| 237 | frqType = t_frequency::J5;
|
---|
| 238 | }
|
---|
| 239 | else if (line.indexOf("J06") == 3) {
|
---|
| 240 | frqType = t_frequency::J6;
|
---|
| 241 | }
|
---|
[7144] | 242 | else if (line.indexOf("C02") == 3) {
|
---|
| 243 | frqType = t_frequency::C2;
|
---|
| 244 | }
|
---|
| 245 | else if (line.indexOf("C06") == 3) {
|
---|
| 246 | frqType = t_frequency::C6;
|
---|
| 247 | }
|
---|
| 248 | else if (line.indexOf("C07") == 3) {
|
---|
| 249 | frqType = t_frequency::C7;
|
---|
| 250 | }
|
---|
[6405] | 251 | if (frqType != t_frequency::dummy) {
|
---|
| 252 | if (newAntMap->frqMap.find(frqType) != newAntMap->frqMap.end()) {
|
---|
| 253 | delete newAntMap->frqMap[frqType];
|
---|
| 254 | }
|
---|
| 255 | newAntMap->frqMap[frqType] = newFrqMap;
|
---|
| 256 | }
|
---|
[2883] | 257 | else {
|
---|
| 258 | delete newFrqMap;
|
---|
| 259 | }
|
---|
| 260 | newFrqMap = 0;
|
---|
| 261 | }
|
---|
| 262 | else {
|
---|
| 263 | delete newAntMap;
|
---|
| 264 | return failure;
|
---|
| 265 | }
|
---|
| 266 | }
|
---|
| 267 |
|
---|
[2885] | 268 | // Frequency Reading in Progress
|
---|
| 269 | // -----------------------------
|
---|
[2883] | 270 | else if (newFrqMap) {
|
---|
[2891] | 271 | if (line.indexOf("NORTH / EAST / UP") == 60) {
|
---|
[2885] | 272 | QTextStream inLine(&line, QIODevice::ReadOnly);
|
---|
| 273 | inLine >> newFrqMap->neu[0] >> newFrqMap->neu[1] >> newFrqMap->neu[2];
|
---|
[2894] | 274 | newFrqMap->neu[0] *= 1e-3;
|
---|
| 275 | newFrqMap->neu[1] *= 1e-3;
|
---|
| 276 | newFrqMap->neu[2] *= 1e-3;
|
---|
[2883] | 277 | }
|
---|
[2884] | 278 | else if (line.indexOf("NOAZI") == 3) {
|
---|
[2885] | 279 | QTextStream inLine(&line, QIODevice::ReadOnly);
|
---|
[2886] | 280 | int nPat = int((newAntMap->zen2-newAntMap->zen1)/newAntMap->dZen) + 1;
|
---|
| 281 | newFrqMap->pattern.ReSize(nPat);
|
---|
| 282 | QString dummy;
|
---|
| 283 | inLine >> dummy;
|
---|
| 284 | for (int ii = 0; ii < nPat; ii++) {
|
---|
| 285 | inLine >> newFrqMap->pattern[ii];
|
---|
| 286 | }
|
---|
[2894] | 287 | newFrqMap->pattern *= 1e-3;
|
---|
[2884] | 288 | }
|
---|
[2883] | 289 | }
|
---|
| 290 | }
|
---|
[2881] | 291 | }
|
---|
[7865] | 292 | inFile.close();
|
---|
[3034] | 293 | delete newFrqMap;
|
---|
| 294 | delete newAntMap;
|
---|
| 295 |
|
---|
[2882] | 296 | return success;
|
---|
[2880] | 297 | }
|
---|
[2894] | 298 |
|
---|
[3052] | 299 | // Satellite Antenna Offset
|
---|
| 300 | ////////////////////////////////////////////////////////////////////////////
|
---|
[7521] | 301 | t_irc bncAntex::satCoMcorrection(const QString& prn, double Mjd,
|
---|
[3055] | 302 | const ColumnVector& xSat, ColumnVector& dx) {
|
---|
| 303 |
|
---|
[6405] | 304 | t_frequency::type frqType = t_frequency::dummy;
|
---|
[7145] | 305 |
|
---|
[6405] | 306 | if (prn[0] == 'G') {
|
---|
| 307 | frqType = t_frequency::G1;
|
---|
| 308 | }
|
---|
| 309 | else if (prn[0] == 'R') {
|
---|
| 310 | frqType = t_frequency::R1;
|
---|
| 311 | }
|
---|
| 312 |
|
---|
[6971] | 313 | QMap<QString, t_antMap*>::const_iterator it = _maps.find(prn.mid(0,3));
|
---|
[3052] | 314 | if (it != _maps.end()) {
|
---|
| 315 | t_antMap* map = it.value();
|
---|
[6405] | 316 | if (map->frqMap.find(frqType) != map->frqMap.end()) {
|
---|
[3055] | 317 |
|
---|
[6405] | 318 | double* neu = map->frqMap[frqType]->neu;
|
---|
[3055] | 319 |
|
---|
[6405] | 320 | // Unit Vectors sz, sy, sx
|
---|
| 321 | // -----------------------
|
---|
| 322 | ColumnVector sz = -xSat;
|
---|
| 323 | sz /= sqrt(DotProduct(sz,sz));
|
---|
| 324 |
|
---|
| 325 | ColumnVector xSun = BNC_PPP::t_astro::Sun(Mjd);
|
---|
| 326 | xSun /= sqrt(DotProduct(xSun,xSun));
|
---|
[7521] | 327 |
|
---|
[6405] | 328 | ColumnVector sy = crossproduct(sz, xSun);
|
---|
| 329 | sy /= sqrt(DotProduct(sy,sy));
|
---|
[7521] | 330 |
|
---|
[6405] | 331 | ColumnVector sx = crossproduct(sy, sz);
|
---|
[3055] | 332 |
|
---|
[6405] | 333 | dx[0] = sx[0] * neu[0] + sy[0] * neu[1] + sz[0] * neu[2];
|
---|
| 334 | dx[1] = sx[1] * neu[0] + sy[1] * neu[1] + sz[1] * neu[2];
|
---|
| 335 | dx[2] = sx[2] * neu[0] + sy[2] * neu[1] + sz[2] * neu[2];
|
---|
[3055] | 336 |
|
---|
[6405] | 337 | return success;
|
---|
| 338 | }
|
---|
[3052] | 339 | }
|
---|
[6405] | 340 |
|
---|
| 341 | return failure;
|
---|
[3052] | 342 | }
|
---|
| 343 |
|
---|
[7521] | 344 | //
|
---|
[2894] | 345 | ////////////////////////////////////////////////////////////////////////////
|
---|
[6405] | 346 | double bncAntex::rcvCorr(const string& antName, t_frequency::type frqType,
|
---|
[6694] | 347 | double eleSat, double azSat, bool& found) const {
|
---|
[2894] | 348 |
|
---|
[6405] | 349 | if (antName.find("NULLANTENNA") != string::npos) {
|
---|
[2938] | 350 | found = true;
|
---|
[6405] | 351 | return 0.0;
|
---|
[2894] | 352 | }
|
---|
[6405] | 353 |
|
---|
| 354 | QString antNameQ = antName.c_str();
|
---|
| 355 |
|
---|
| 356 | if (_maps.find(antNameQ) == _maps.end()) {
|
---|
[2938] | 357 | found = false;
|
---|
[6405] | 358 | return 0.0;
|
---|
[2938] | 359 | }
|
---|
[2894] | 360 |
|
---|
[6405] | 361 | t_antMap* map = _maps[antNameQ];
|
---|
| 362 | if (map->frqMap.find(frqType) == map->frqMap.end()) {
|
---|
| 363 | found = false;
|
---|
| 364 | return 0.0;
|
---|
| 365 | }
|
---|
| 366 |
|
---|
| 367 | t_frqMap* frqMap = map->frqMap[frqType];
|
---|
| 368 |
|
---|
| 369 | double var = 0.0;
|
---|
| 370 | if (frqMap->pattern.ncols() > 0) {
|
---|
| 371 | double zenDiff = 999.999;
|
---|
| 372 | double zenSat = 90.0 - eleSat * 180.0 / M_PI;
|
---|
| 373 | unsigned iZen = 0;
|
---|
| 374 | for (double zen = map->zen1; zen <= map->zen2; zen += map->dZen) {
|
---|
| 375 | iZen += 1;
|
---|
| 376 | double newZenDiff = fabs(zen - zenSat);
|
---|
| 377 | if (newZenDiff < zenDiff) {
|
---|
| 378 | zenDiff = newZenDiff;
|
---|
| 379 | var = frqMap->pattern(iZen);
|
---|
| 380 | }
|
---|
| 381 | }
|
---|
| 382 | }
|
---|
| 383 |
|
---|
| 384 | found = true;
|
---|
[6694] | 385 | return var - frqMap->neu[0] * cos(azSat)*cos(eleSat)
|
---|
| 386 | - frqMap->neu[1] * sin(azSat)*cos(eleSat)
|
---|
| 387 | - frqMap->neu[2] * sin(eleSat);
|
---|
| 388 |
|
---|
[5755] | 389 | }
|
---|