Changeset 6275 in ntrip for trunk/BNC/src/rinex/reqcanalyze.cpp
- Timestamp:
- Oct 31, 2014, 6:33:17 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/rinex/reqcanalyze.cpp
r6272 r6275 68 68 _obsFileNames = settings.value("reqcObsFile").toString().split(",", QString::SkipEmptyParts); 69 69 _navFileNames = settings.value("reqcNavFile").toString().split(",", QString::SkipEmptyParts); 70 71 connect(this, SIGNAL(dspSkyPlot(const QString&, const QByteArray&, QVector<t_polarPoint*>*, 72 const QByteArray&, QVector<t_polarPoint*>*, 73 const QByteArray&, double)), 74 this, SLOT(slotDspSkyPlot(const QString&, const QByteArray&, QVector<t_polarPoint*>*, 75 const QByteArray&, QVector<t_polarPoint*>*, 76 const QByteArray&, double))); 77 78 connect(this, SIGNAL(dspAvailPlot(const QString&, const QByteArray&)), 79 this, SLOT(slotDspAvailPlot(const QString&, const QByteArray&))); 70 80 } 71 81 … … 551 561 QFileInfo fileInfo(obsFile->fileName()); 552 562 QByteArray title = fileInfo.fileName().toAscii(); 553 dspSkyPlot(obsFile->fileName(), "MP1", dataMP1, "MP2", dataMP2, "Meters", 2.0);554 dspSkyPlot(obsFile->fileName(), "SNR1", dataSNR1, "SNR2", dataSNR2, "dbHz", 54.0);555 dspAvailPlot(obsFile->fileName(), title);563 emit dspSkyPlot(obsFile->fileName(), "MP1", dataMP1, "MP2", dataMP2, "Meters", 2.0); 564 emit dspSkyPlot(obsFile->fileName(), "SNR1", dataSNR1, "SNR2", dataSNR2, "dbHz", 54.0); 565 emit dspAvailPlot(obsFile->fileName(), title); 556 566 } 557 567 else { … … 577 587 // 578 588 //////////////////////////////////////////////////////////////////////////// 579 void t_reqcAnalyze:: dspSkyPlot(const QString& fileName, const QByteArray& title1,580 QVector<t_polarPoint*>* data1, const QByteArray& title2,581 QVector<t_polarPoint*>* data2, const QByteArray& scaleTitle,582 double maxValue) {589 void t_reqcAnalyze::slotDspSkyPlot(const QString& fileName, const QByteArray& title1, 590 QVector<t_polarPoint*>* data1, const QByteArray& title2, 591 QVector<t_polarPoint*>* data2, const QByteArray& scaleTitle, 592 double maxValue) { 583 593 584 594 if (BNC_CORE->GUIenabled()) { … … 635 645 // 636 646 //////////////////////////////////////////////////////////////////////////// 637 void t_reqcAnalyze:: dspAvailPlot(const QString& fileName, const QByteArray& title) {647 void t_reqcAnalyze::slotDspAvailPlot(const QString& fileName, const QByteArray& title) { 638 648 639 649 QMap<t_prn, t_plotData> plotData;
Note:
See TracChangeset
for help on using the changeset viewer.