Changeset 9671 in ntrip for branches/BNC_2.12


Ignore:
Timestamp:
Apr 4, 2022, 2:16:06 PM (2 years ago)
Author:
stuerze
Message:

minor changes to allow combination sampling iterval of 5 seconds

Location:
branches/BNC_2.12
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • branches/BNC_2.12/ChangeLog.txt

    r9505 r9671  
     1--------------------------------------------------------------------------------
     2 BNC VERSION 2.12.19 (04.04.2022)
     3--------------------------------------------------------------------------------
     4  CHANGED    (04.04.2022): Minimum combination sampling interval
     5
    16--------------------------------------------------------------------------------
    27 BNC VERSION 2.12.18 (28.09.2021)
  • branches/BNC_2.12/Example_Configs/03_BrdcCorr.bnc

    r9426 r9671  
    168168sigmaGIM=4.0
    169169sigmaL1=0.01
    170 sigmaTz0=0.10
    171170snxtroAc=
    172171snxtroIntr=1 hour
  • branches/BNC_2.12/src/bncmain.cpp

    r9235 r9671  
    247247      "   cmbMethodFilter {Combination approach [character string: Single-Epoch|Filter]\n"
    248248      "   cmbMaxres       {Clock outlier residuum threshold in meters [floating-point number]\n"
    249       "   cmbSampl        {Clock sampling rate [integer number of seconds: 10|20|30|40|50|60]}\n"
     249      "   cmbSampl        {Clock sampling rate [integer number of seconds: 0|10|20|30|40|50|60]}\n"
    250250      "   cmbUseGlonass   {Use GLONASS in combination [integer number: 0=no,2=yes]\n"
    251251      "\n"
  • branches/BNC_2.12/src/bncversion.h

    r9476 r9671  
    33#define BNCVERSION_H
    44
    5 #define BNCVERSION "2.12.18"
     5#define BNCVERSION "2.12.19"
    66#define BNCPGMNAME "BNC " BNCVERSION
    77
  • branches/BNC_2.12/src/bncwindow.cpp

    r9281 r9671  
    450450
    451451  _cmbSamplSpinBox = new QSpinBox;
    452   _cmbSamplSpinBox->setMinimum(10);
     452  _cmbSamplSpinBox->setMinimum(0);
    453453  _cmbSamplSpinBox->setMaximum(60);
    454454  _cmbSamplSpinBox->setSingleStep(10);
     
    13571357  _cmbMethodComboBox->setWhatsThis(tr("<p>Select a clock combination approach. Options are 'Single-Epoch' and Kalman 'Filter'.</p><p>It is suggested to use the Kalman filter approach for the purpose of Precise Point Positioning.</p>"));
    13581358  _cmbMaxresLineEdit->setWhatsThis(tr("<p>BNC combines all incoming clocks according to specified weights. Individual clock estimates that differ by more than 'Maximal residuum' meters from the average of all clocks will be ignored.<p></p>It is suggested to specify a value of about 0.2 m for the Kalman filter combination approach and a value of about 3.0 meters for the Single-Epoch combination approach.</p><p>Default is a value of '999.0'.</p>"));
    1359   _cmbSamplSpinBox->setWhatsThis(tr("<p>Select a combination Sampling interval for the clocks. Clock corrections will be produced following that interval.</p><p>A value of 10 sec may be an appropriate choice.</p>"));
     1359  _cmbSamplSpinBox->setWhatsThis(tr("<p>Select a combination Sampling interval for the clocks. Clock corrections will be produced following that interval.</p><p>A value of 10 sec may be an appropriate choice. A value of zero '0' tells BNC to use all available samples.</p>"));
    13601360  _cmbUseGlonass->setWhatsThis(tr("<p>In case the incoming orbit and clock correction stream(s) support GLONASS, you can tick 'Use GLONASS' to produce a GPS plus GLONASS combination solution.</p><p>Default is a GPS-only combination.</p>"));
    13611361
  • branches/BNC_2.12/src/combination/bnccomb.cpp

    r9269 r9671  
    142142  _cmbSampl = settings.value("cmbSampl").toInt();
    143143  if (_cmbSampl <= 0) {
    144     _cmbSampl = 10;
     144    _cmbSampl = 5;
    145145  }
    146146
     
    180180    _ssrCorr = new SsrCorrIgs();
    181181  }
    182  
     182
    183183  _rtnetDecoder = 0;
    184184
     
    410410    else {
    411411      QMap<t_prn, t_orbCorr>& storage = _orbCorrections[acName];
    412       if (!storage.contains(clkCorr._prn)  || 
     412      if (!storage.contains(clkCorr._prn)  ||
    413413           storage[clkCorr._prn]._iod != newCorr->_iod) {
    414414        delete newCorr;
Note: See TracChangeset for help on using the changeset viewer.