Changeset 8404 in ntrip for branches/BNC_2.12


Ignore:
Timestamp:
Jul 5, 2018, 12:52:20 PM (6 years ago)
Author:
stuerze
Message:

additional changes to allow 10 Hz observation data processing

Location:
branches/BNC_2.12/src
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • branches/BNC_2.12/src/bncmain.cpp

    r8398 r8404  
    206206      "   PPP/snxtroPath  {Directory for SINEX troposphere output files [character string]}\n"
    207207      "   PPP/snxtroIntr  {SINEX troposphere file interval [character string: 1 min|2 min|5 min|10 min|15 min|30 min|1 hour|1 day]}\n"
    208       "   PPP/snxtroSampl {SINEX troposphere file sampling rate [integer number of seconds: 0|30|60|90|120|150|180|210|240|270|300]}\n"
     208      "   PPP/snxtroSampl {SINEX troposphere file sampling rate [character string: 1 sec|5 sec|10 sec|30 sec|60 sec|300 sec]}\n"
    209209      "   PPP/snxtroAc    {SINEX troposphere Analysis Center [character string]}\n"
    210210      "   PPP/snxtroSol   {SINEX troposphere solution ID [character string]}\n"
  • branches/BNC_2.12/src/bncsinextro.cpp

    r8135 r8404  
    3232
    3333  _opt       = opt;
    34   (!sampl) ? _sampl = 1 : _sampl =  sampl;
     34  _sampl =  sampl;
    3535
    3636  _antex = 0;
  • branches/BNC_2.12/src/bncwindow.cpp

    r8400 r8404  
    13261326  _pppWidgets._snxtroPath->setWhatsThis(tr("<p>Specify a directory for saving SINEX Troposphere files. If the specified directory does not exist, BNC will not create such files.</p><p>Default is an empty option field, meaning that no SINEX Troposphere files shall be produced.</p>"));
    13271327  _pppWidgets._snxtroIntr->setWhatsThis(tr("<p>Select a length for SINEX Troposphere files.</p><p>Default 'SNX TRO interval' for saving SINEX Troposphere files on disk is '1 hour'.</p>"));
    1328   _pppWidgets._snxtroSampl->setWhatsThis(tr("<p>Select a 'Sampling' rate for saving troposphere parameters.</p><p>Default 'SNX TRO sampling' rate is '0', meaning that all troposphere estimates will be saved on disk.</p>"));
     1328  _pppWidgets._snxtroSampl->setWhatsThis(tr("<p>Select a 'Sampling' rate for saving troposphere parameters.</p>"));
    13291329  _pppWidgets._snxtroAc->setWhatsThis(tr("<p>Specify a 3-character abbreviation describing you as the generating Analysis Center (AC) in your SINEX troposphere files.</p>"));
    13301330  _pppWidgets._snxtroSol->setWhatsThis(tr("<p>Specify a 4-character solution ID to allow a distingtion between different solutions per AC.</p>"));
  • branches/BNC_2.12/src/pppRun.cpp

    r8321 r8404  
    225225      snxtroFileSkl = snxtroFileSkl + ID4 + "${GPSWD}" + distStr + ".tro";
    226226    }
    227     sampl = settings.value("PPP/snxtroSampl").toInt();
     227    sampl = settings.value("PPP/snxtroSampl").toString().split("sec").first().toInt();
    228228    intr  = settings.value("PPP/snxtroIntr").toString();
    229229    _snxtroFile = new bncSinexTro(_opt, snxtroFileSkl, intr, sampl);
  • branches/BNC_2.12/src/pppWidgets.cpp

    r7945 r8404  
    6262  _nmeaPath     = new QLineEdit();     _nmeaPath    ->setObjectName("PPP/nmeaPath");     _widgets << _nmeaPath;
    6363  _snxtroPath   = new QLineEdit();     _snxtroPath  ->setObjectName("PPP/snxtroPath");   _widgets << _snxtroPath;
    64   _snxtroSampl  = new QSpinBox();      _snxtroSampl ->setObjectName("PPP/snxtroSampl");  _widgets << _snxtroSampl;
     64  _snxtroSampl  = new QComboBox();      _snxtroSampl->setObjectName("PPP/snxtroSampl");  _widgets << _snxtroSampl;
    6565  _snxtroIntr   = new QComboBox();     _snxtroIntr  ->setObjectName("PPP/snxtroIntr");   _widgets << _snxtroIntr;
    6666  _snxtroAc     = new QLineEdit();     _snxtroAc    ->setObjectName("PPP/snxtroAc");     _widgets << _snxtroAc;
     
    141141#endif
    142142
    143   _snxtroSampl->setMinimum(0);
    144   _snxtroSampl->setMaximum(300);
    145   _snxtroSampl->setSingleStep(30);
    146   _snxtroSampl->setSuffix(" sec");
     143 _snxtroSampl->setEditable(false);
     144  _snxtroSampl->addItems(QString("1 sec,5 sec,10 sec,30 sec,60 sec,300 sec").split(","));
    147145
    148146  _snxtroIntr->setEditable(false);
  • branches/BNC_2.12/src/pppWidgets.h

    r7764 r8404  
    4848  QLineEdit*     _nmeaPath;
    4949  QLineEdit*     _snxtroPath;
    50   QSpinBox*      _snxtroSampl;
     50  QComboBox*     _snxtroSampl;
    5151  QComboBox*     _snxtroIntr;
    5252  QLineEdit*     _snxtroAc;
Note: See TracChangeset for help on using the changeset viewer.