Changeset 9671 in ntrip for branches/BNC_2.12
- Timestamp:
- Apr 4, 2022, 2:16:06 PM (3 years ago)
- 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 1 6 -------------------------------------------------------------------------------- 2 7 BNC VERSION 2.12.18 (28.09.2021) -
branches/BNC_2.12/Example_Configs/03_BrdcCorr.bnc
r9426 r9671 168 168 sigmaGIM=4.0 169 169 sigmaL1=0.01 170 sigmaTz0=0.10171 170 snxtroAc= 172 171 snxtroIntr=1 hour -
branches/BNC_2.12/src/bncmain.cpp
r9235 r9671 247 247 " cmbMethodFilter {Combination approach [character string: Single-Epoch|Filter]\n" 248 248 " 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" 250 250 " cmbUseGlonass {Use GLONASS in combination [integer number: 0=no,2=yes]\n" 251 251 "\n" -
branches/BNC_2.12/src/bncversion.h
r9476 r9671 3 3 #define BNCVERSION_H 4 4 5 #define BNCVERSION "2.12.1 8"5 #define BNCVERSION "2.12.19" 6 6 #define BNCPGMNAME "BNC " BNCVERSION 7 7 -
branches/BNC_2.12/src/bncwindow.cpp
r9281 r9671 450 450 451 451 _cmbSamplSpinBox = new QSpinBox; 452 _cmbSamplSpinBox->setMinimum( 10);452 _cmbSamplSpinBox->setMinimum(0); 453 453 _cmbSamplSpinBox->setMaximum(60); 454 454 _cmbSamplSpinBox->setSingleStep(10); … … 1357 1357 _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>")); 1358 1358 _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>")); 1360 1360 _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>")); 1361 1361 -
branches/BNC_2.12/src/combination/bnccomb.cpp
r9269 r9671 142 142 _cmbSampl = settings.value("cmbSampl").toInt(); 143 143 if (_cmbSampl <= 0) { 144 _cmbSampl = 10;144 _cmbSampl = 5; 145 145 } 146 146 … … 180 180 _ssrCorr = new SsrCorrIgs(); 181 181 } 182 182 183 183 _rtnetDecoder = 0; 184 184 … … 410 410 else { 411 411 QMap<t_prn, t_orbCorr>& storage = _orbCorrections[acName]; 412 if (!storage.contains(clkCorr._prn) || 412 if (!storage.contains(clkCorr._prn) || 413 413 storage[clkCorr._prn]._iod != newCorr->_iod) { 414 414 delete newCorr;
Note:
See TracChangeset
for help on using the changeset viewer.