Changeset 6702 in ntrip for trunk


Ignore:
Timestamp:
Mar 23, 2015, 10:25:37 AM (9 years ago)
Author:
weber
Message:

Documentation completed

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/bncwindow.cpp

    r6701 r6702  
    996996  _reqcObsFileChooser = new qtFileChooser(0, qtFileChooser::Files);
    997997  _reqcObsFileChooser->setFileName(settings.value("reqcObsFile").toString());
    998   _reqcObsFileChooser->setWhatsThis(tr("Specify the full path to an observation file in RINEX v2 or v3 format."));
     998  _reqcObsFileChooser->setWhatsThis(tr("<p>Specify the full path to an observation file in RINEX v2 or v3 format.</p><p>Specifying at least one RINEX observation file is mandatory.</p>"));
    999999
    10001000  _reqcNavFileChooser = new qtFileChooser(0, qtFileChooser::Files);
    10011001  _reqcNavFileChooser->setFileName(settings.value("reqcNavFile").toString());
    1002   _reqcNavFileChooser->setWhatsThis(tr("Specify the full path to a RINEX v2 or v3 navigation file."));
     1002  _reqcNavFileChooser->setWhatsThis(tr("<p>Specify the full path to a RINEX v2 or v3 navigation file.</p><p>Specifying at least one RINEX navigation file is mandatory.</p>"));
    10031003
    10041004  _reqcOutObsLineEdit = new QLineEdit(settings.value("reqcOutObsFile").toString());
    1005   _reqcOutObsLineEdit->setWhatsThis(tr("Specify the full path to a RINEX observation output file."));
     1005  _reqcOutObsLineEdit->setWhatsThis(tr("<p>Specify the full path to a RINEX observation output file.</p><p>Default is an empty option field, meaning that no RINEX observation output file will be produced.</p>"));
    10061006
    10071007  _reqcOutNavLineEdit = new QLineEdit(settings.value("reqcOutNavFile").toString());
    1008   _reqcOutNavLineEdit->setWhatsThis(tr("Specify the full path to a RINEX navigation output file."));
     1008  _reqcOutNavLineEdit->setWhatsThis(tr("<p>Specify the full path to a RINEX navigation output file.</p><p>Default is an empty option field, meaning that no RINEX navigation output file will be produced.</p>"));
    10091009
    10101010  _reqcOutLogLineEdit = new QLineEdit(settings.value("reqcOutLogFile").toString());
    1011   _reqcOutLogLineEdit->setWhatsThis(tr("Specify the full path to a logfile."));
     1011  _reqcOutLogLineEdit->setWhatsThis(tr("<p>Specify the full path to a logfile.</p><p>Default is an empty option field, meaning that no 'RINEX Editing & QC' logfile will be produced.</p>"));
    10121012
    10131013  _reqcPlotDirLineEdit = new QLineEdit(settings.value("reqcPlotDir").toString());
    1014   _reqcPlotDirLineEdit->setWhatsThis(tr("Specify the directory name for saving plots in PNG format."));
     1014  _reqcPlotDirLineEdit->setWhatsThis(tr("<p>Specify a directory for saving plots in PNG format.</p><p>Default is an empty option field, meaning that plots will not be saved on disk.</p>"));
    10151015
    10161016  _reqcSkyPlotSignals = new QLineEdit(settings.value("reqcSkyPlotSignals").toString());
    1017   _reqcSkyPlotSignals->setWhatsThis(tr("<p>BNC can produce plots for multipath, signal-to-noise ratio, satellite availability, satellite elevation, and PDOP values. The 'Plots for signals' option lets you exactly specify the observation signals to be used for that. You can specify the navigation system, the frequency, and the tracking mode or channel as defined in RINEX Version 3. Specifications for fequency and tracking mode or channel must be seperated by ampersand character '&'. Specifications for each navigation systems must be seperated by blank character ' '.</p><p>Examples for 'Plots for signals' option:<ul><li> G:1&2 R:1&2 J:1&2 E:1&7 C:1&6 S:1<br>(Plots will be based on GPS observations on 1st and 2nd frequency, GLONASS observations on 1st and 2nd frequency, QZSS observations on 1st and 2nd frequency, Galileo observations on 1st and 7th frequency, BeiDou observations on 1st and 6th frequency, SBAS observations on 1st frequency.)</li><li>G:1C&5X<br>(Plots will be based on GPS observations on 1st frequency in C tracking mode and GPS observations on 5th frequency in X tracking mode.)</li><li>C:6I&7I<br>(Plots will be based on BeiDou observations on 6th frequency in I tracking mode and BeiDou observations on 7th frequency in I tracking mode.)<li></ul></p>"));
     1017  _reqcSkyPlotSignals->setWhatsThis(tr("<p>BNC can produce plots for multipath, signal-to-noise ratio, satellite availability, satellite elevation, and PDOP values. The 'Plots for signals' option lets you exactly specify the observation signals to be used for that. You can specify the navigation system, the frequency, and the tracking mode or channel as defined in RINEX Version 3. Specifications for fequency and tracking mode or channel must be seperated by ampersand character '&'. Specifications for each navigation systems must be seperated by blank character ' '.</p><p>Examples for 'Plots for signals' option:<ul><li> G:1&2 R:1&2 J:1&2 E:1&7 C:1&6 S:1<br>(Plots will be based on GPS observations on 1st and 2nd frequency, GLONASS observations on 1st and 2nd frequency, QZSS observations on 1st and 2nd frequency, Galileo observations on 1st and 7th frequency, BeiDou observations on 1st and 6th frequency, SBAS observations on 1st frequency.)</li><li>G:1C&5X<br>(Plots will be based on GPS observations on 1st frequency in C tracking mode and GPS observations on 5th frequency in X tracking mode.)</li><li>C:6I&7I<br>(Plots will be based on BeiDou observations on 6th frequency in I tracking mode and BeiDou observations on 7th frequency in I tracking mode.)<li></ul></p><p>Default is an empty option field, meaning that BNC will not produces.</p>"));
    10181018 
    10191019  connect(_reqcSkyPlotSignals, SIGNAL(textChanged(const QString &)),
Note: See TracChangeset for help on using the changeset viewer.