Changeset 7492 in ntrip for trunk


Ignore:
Timestamp:
Oct 12, 2015, 10:21:38 AM (9 years ago)
Author:
weber
Message:

SNX TRO interval documentation completed

File:
1 edited

Legend:

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

    r7488 r7492  
    863863  _pppWidgets._corrMount->setMaximumWidth(20*ww);
    864864
     865  _pppWidgets._crdFile->setMaximumWidth(35*ww);
     866  _pppWidgets._antexFile->setMaximumWidth(35*ww);
     867  _pppWidgets._snxtroFile->setMaximumWidth(35*ww);
     868  _pppWidgets._snxtroIntr->setMaximumWidth(15*ww);
     869
    865870  QGridLayout* pppLayout1 = new QGridLayout();
    866871  int ir = 0;
     
    869874  pppLayout1->addWidget(new QLabel("Data source"),           ir, 0);
    870875  pppLayout1->addWidget(_pppWidgets._dataSource,             ir, 1);
    871   pppLayout1->addItem(new QSpacerItem(4*ww, 0),              ir, 2);
    872876  pppLayout1->addWidget(new QLabel("   RINEX Obs file"),     ir, 3);
    873   pppLayout1->addWidget(_pppWidgets._rinexObs,               ir, 4);
     877  pppLayout1->addWidget(_pppWidgets._rinexObs,               ir, 4, 1, 3);
    874878  ++ir;
    875879  pppLayout1->addWidget(new QLabel("   RINEX Nav file"),     ir, 3);
    876   pppLayout1->addWidget(_pppWidgets._rinexNav,               ir, 4);
     880  pppLayout1->addWidget(_pppWidgets._rinexNav,               ir, 4, 1, 3);
    877881  ++ir;
    878882  pppLayout1->addWidget(new QLabel("Corrections stream"),    ir, 0);
    879883  pppLayout1->addWidget(_pppWidgets._corrMount,              ir, 1);
    880884  pppLayout1->addWidget(new QLabel("   Correction file"),    ir, 3);
    881   pppLayout1->addWidget(_pppWidgets._corrFile,               ir, 4);
     885  pppLayout1->addWidget(_pppWidgets._corrFile,               ir, 4, 1, 3);
    882886  ++ir;
    883887  pppLayout1->addWidget(new QLabel("Coordinates"),           ir, 0);
    884888  pppLayout1->addWidget(_pppWidgets._crdFile,                ir, 1);
    885889  pppLayout1->addWidget(new QLabel("   Logfile"),            ir, 3);
    886   pppLayout1->addWidget(_pppWidgets._logFile,                ir, 4);
     890  pppLayout1->addWidget(_pppWidgets._logFile,                ir, 4, 1, 3);
    887891  ++ir;
    888892  pppLayout1->addWidget(new QLabel("ANTEX file"),            ir, 0);
     
    890894
    891895  pppLayout1->addWidget(new QLabel("   NMEA file"),          ir, 3);
    892   pppLayout1->addWidget(_pppWidgets._nmeaFile,               ir, 4);
    893   ++ir;
    894   pppLayout1->addWidget(new QLabel("   SNX TRO file"),       ir, 3);
    895   pppLayout1->addWidget(_pppWidgets._snxtroFile,             ir, 4);
    896   ++ir;
    897   pppLayout1->addWidget(new QLabel("   SNX Interval"),       ir, 3);
     896  pppLayout1->addWidget(_pppWidgets._nmeaFile,               ir, 4, 1, 3);
     897
     898  ++ir;
     899  pppLayout1->addWidget(new QLabel("SNX TRO file"),          ir, 0);
     900  pppLayout1->addWidget(_pppWidgets._snxtroFile,             ir, 1);
     901  pppLayout1->addWidget(new QLabel("   SNX TRO interval"),   ir, 3);
    898902  pppLayout1->addWidget(_pppWidgets._snxtroIntr,             ir, 4);
    899   pppLayout1->addWidget(new QLabel("Sampling"),              ir, 5);
    900   pppLayout1->addWidget(_pppWidgets._snxtroSampl,            ir, 6);
     903  pppLayout1->addWidget(new QLabel("   SNX TRO sampling"),   ir, 5, Qt::AlignRight);
     904  pppLayout1->addWidget(_pppWidgets._snxtroSampl,            ir, 6, Qt::AlignRight);
     905
    901906  ++ir;
    902907  pppLayout1->setRowStretch(ir, 999);
     
    923928  _pppWidgets._nmeaFile->setWhatsThis(tr("<p>Specify the path to daily NMEA files using e.g. the following syntax (example):</p><p> ./PPP_${STATION}_${DATE}.nmea</p><p>BNC will produce one daily NMEA file per station, mainly to save NMEA GGA sentences from the PPP solution. Variable ${STATION} stands for the affected station and ${DATE} stands for the date.</p>"));
    924929
    925   _pppWidgets._snxtroFile->setWhatsThis(tr("<p>Specify the path to daily SINEX Troposphere files using e.g. the following syntax (example):</p><p> ./PPP_${STATION}${DOY}.${YY}.zpd</p><p>BNC will produce one daily troposphere file per station to save troposphere parameters from the PPP solution in SINEX Troposphere format. Variable ${STATION} stands for the affected station, ${DOY} stands for the Day Of Year, and ${YY} for the year.</p>"));
     930  _pppWidgets._snxtroFile->setWhatsThis(tr("<p>Specify the path to daily SINEX Troposphere files using e.g. the following syntax (example):</p><p> ./PPP_${STATION}${DOY}.${YY}.zpd</p><p>BNC will produce files per station to save troposphere parameters from the PPP solution in SINEX Troposphere format. Variable ${STATION} stands for the affected station, ${DOY} stands for the Day Of Year, and ${YY} for the year.</p>"));
    926931
    927932  _pppWidgets._snxtroSampl->setWhatsThis(tr("<p>Select a 'Sampling' rate for saving troposphere paramers.</p>"));
     933  _pppWidgets._snxtroIntr->setWhatsThis(tr("<p>Select an 'Interval' for saving troposphere paramers.</p>"));
    928934
    929935  _pppWidgets._sigmaC1->setWhatsThis(tr("<p>Enter a sigma for your GNSS C1 code observations in meters.</p><p>The higher the sigma you enter, the less the contribution of C1 code observations to a PPP solution based on a combination of code and phase data. 2.0 is likely to be an appropriate choice.</p><p>Default is an empty option field, meaning<br>'Sigma C1 = 2.0'</p>"));
Note: See TracChangeset for help on using the changeset viewer.