Changeset 8560 in ntrip for trunk


Ignore:
Timestamp:
Dec 12, 2018, 3:46:49 PM (5 years ago)
Author:
mervart
Message:

Analyze more than two signals

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/rinex/reqcanalyze.cpp

    r8558 r8560  
    534534void t_reqcAnalyze::preparePlotData(const t_rnxObsFile* obsFile) {
    535535
     536  if (!BNC_CORE->GUIenabled()) {
     537    return ;
     538  }
     539
    536540  QVector<t_skyPlotData> skyPlotDataMP;
    537541  QVector<t_skyPlotData> skyPlotDataSN;
     
    572576  // Show the plots
    573577  // --------------
    574   if (BNC_CORE->GUIenabled()) {
    575     QFileInfo  fileInfo(obsFile->fileName());
    576     QByteArray title = fileInfo.fileName().toLatin1();
    577     emit dspSkyPlot(obsFile->fileName(), skyPlotDataMP, "Meters",  2.0);
    578     emit dspSkyPlot(obsFile->fileName(), skyPlotDataSN, "dbHz",   54.0);
    579     emit dspAvailPlot(obsFile->fileName(), title);
    580   }
     578  QFileInfo  fileInfo(obsFile->fileName());
     579  QByteArray title = fileInfo.fileName().toLatin1();
     580  emit dspSkyPlot(obsFile->fileName(), skyPlotDataMP, "Meters",  2.0);
     581  emit dspSkyPlot(obsFile->fileName(), skyPlotDataSN, "dbHz",   54.0);
     582  emit dspAvailPlot(obsFile->fileName(), title);
    581583}
    582584
Note: See TracChangeset for help on using the changeset viewer.