Changeset 7506 in ntrip for trunk/BNC/src/bncwindow.cpp


Ignore:
Timestamp:
Oct 13, 2015, 3:19:43 PM (9 years ago)
Author:
stuerze
Message:

automatic file name generation for ppp output files is added

File:
1 edited

Legend:

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

    r7497 r7506  
    865865  _pppWidgets._crdFile->setMaximumWidth(35*ww);
    866866  _pppWidgets._antexFile->setMaximumWidth(35*ww);
    867   _pppWidgets._snxtroFile->setMaximumWidth(35*ww);
     867  _pppWidgets._snxtroPath->setMaximumWidth(35*ww);
    868868  _pppWidgets._snxtroIntr->setMaximumWidth(15*ww);
    869869
     
    887887  pppLayout1->addWidget(new QLabel("Coordinates"),           ir, 0);
    888888  pppLayout1->addWidget(_pppWidgets._crdFile,                ir, 1);
    889   pppLayout1->addWidget(new QLabel("   Logfile"),            ir, 3);
    890   pppLayout1->addWidget(_pppWidgets._logFile,                ir, 4, 1, 3);
     889  pppLayout1->addWidget(new QLabel("   Logfile Directory"),  ir, 3);
     890  pppLayout1->addWidget(_pppWidgets._logPath,                ir, 4, 1, 3);
    891891  ++ir;
    892892  pppLayout1->addWidget(new QLabel("ANTEX file"),            ir, 0);
    893893  pppLayout1->addWidget(_pppWidgets._antexFile,              ir, 1);
    894894
    895   pppLayout1->addWidget(new QLabel("   NMEA file"),          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);
     895  pppLayout1->addWidget(new QLabel("   NMEA Directory"),     ir, 3);
     896  pppLayout1->addWidget(_pppWidgets._nmeaPath,               ir, 4, 1, 3);
     897
     898  ++ir;
     899  pppLayout1->addWidget(new QLabel("SNX TRO directory"),     ir, 0);
     900  pppLayout1->addWidget(_pppWidgets._snxtroPath,             ir, 1);
    901901  pppLayout1->addWidget(new QLabel("   SNX TRO interval"),   ir, 3);
    902902  pppLayout1->addWidget(_pppWidgets._snxtroIntr,             ir, 4);
    903903  pppLayout1->addWidget(new QLabel("   SNX TRO sampling"),   ir, 5, Qt::AlignRight);
    904904  pppLayout1->addWidget(_pppWidgets._snxtroSampl,            ir, 6, Qt::AlignRight);
     905  ++ir;
     906  pppLayout1->addWidget(new QLabel("Version 3 filenames"),   ir, 0);
     907  pppLayout1->addWidget(_pppWidgets._v3filenames,            ir, 1);
    905908
    906909  ++ir;
     
    924927  _pppWidgets._corrFile->setWhatsThis(tr("<p>Specify the Broadcast Ephemeris Corrections file as saved beforehand using BNC.</p><p>If you don't specify corrections through this option, BNC will fall back to Single Point Positioning (SPP, positioning from RINEX Obs and RINEX Nav files only) instead of doing PPP.</p>"));
    925928
    926   _pppWidgets._logFile->setWhatsThis(tr("<p>Specify the path to daily PPP logfiles using e.g. the following syntax (example):</p><p> ./PPP_${STATION}_${DATE}.log</p><p>BNC will produce one daily PPP logfile per station. Variable ${STATION} stands for the affected station and ${DATE} stands for the date.</p>"));
    927 
    928   _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>"));
    929 
    930   _pppWidgets._snxtroFile->setWhatsThis(tr("<p>Specify a path for saving SINEX Troposphere files on disk 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>"));
     929  _pppWidgets._logPath->setWhatsThis(tr("<p>Specify the path to daily PPP logfiles using e.g. the following syntax (example):</p><p> ./PPP_${STATION}_${DATE}.log</p><p>BNC will produce one daily PPP logfile per station. Variable ${STATION} stands for the affected station and ${DATE} stands for the date.</p>"));
     930
     931  _pppWidgets._nmeaPath->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>"));
     932
     933  _pppWidgets._snxtroPath->setWhatsThis(tr("<p>Specify a path for saving SINEX Troposphere files on disk 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>"));
    931934
    932935  _pppWidgets._snxtroSampl->setWhatsThis(tr("<p>Select a 'Sampling' rate for saving troposphere paramers.</p><p>Default 'Sampling' rate is '0', meaning that all troposphere estimates will be saved on disk.</p>"));
Note: See TracChangeset for help on using the changeset viewer.