Changeset 6318 in ntrip for trunk/BNC/src/rinex
- Timestamp:
- Nov 10, 2014, 4:22:47 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/rinex/reqcanalyze.cpp
r6317 r6318 492 492 void t_reqcAnalyze::preparePlotData(const t_rnxObsFile* obsFile) { 493 493 494 QVector<t_polarPoint*>* dataMP1 = new QVector<t_polarPoint*>;495 QVector<t_polarPoint*>* dataMP2 = new QVector<t_polarPoint*>;496 QVector<t_polarPoint*>* dataSNR1 = new QVector<t_polarPoint*>;497 QVector<t_polarPoint*>* dataSNR2 = new QVector<t_polarPoint*>;498 499 494 bncSettings settings; 500 495 QString reqSkyPlotSystems = settings.value("reqcSkyPlotSystems").toString(); … … 511 506 plotGal = true; 512 507 } 513 else {508 else if (reqSkyPlotSystems == "ALL") { 514 509 plotGPS = true; 515 510 plotGlo = true; 516 511 plotGal = true; 517 512 } 513 else { 514 return; 515 } 516 517 QVector<t_polarPoint*>* dataMP1 = new QVector<t_polarPoint*>; 518 QVector<t_polarPoint*>* dataMP2 = new QVector<t_polarPoint*>; 519 QVector<t_polarPoint*>* dataSNR1 = new QVector<t_polarPoint*>; 520 QVector<t_polarPoint*>* dataSNR2 = new QVector<t_polarPoint*>; 518 521 519 522 // Loop over all observations
Note:
See TracChangeset
for help on using the changeset viewer.