Changeset 405 in ntrip


Ignore:
Timestamp:
Feb 16, 2007, 2:48:31 PM (17 years ago)
Author:
weber
Message:

* empty log message *

Location:
trunk/BNC
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bnchelp.html

    r404 r405  
    452452&nbsp; &nbsp; &nbsp; F - 2.2 RTCM <a href=#rtcm3> Version 3</a><br>
    453453F - 3. <a href=#rtigs>RTIGS</a><br>
    454 &nbsp; &nbsp; &nbsp; F - 3.1 <a href=#soc>SOC</a>
     454&nbsp; &nbsp; &nbsp; F - 3.1 <a href=#soc>SOC</a><br>
     455F - 4. <a href=#config>Config File</a>
    455456</p>
    456457<br>
     
    634635<p>
    635636</p>
    636 
     637<p><a name="config"><h4>F - 4. Config File</h4></p>
     638<p>
     639The following is an example for the contents of a Unix/Linux configuration file ${HOME}/.config/BKG/BKG_NTRIP_Client.conf. It enables the retrieval of stream HOE20 form www.euref-ip.net and GOPE0 from www.igs-ip.net for the generation of 15 min RINEX files. RINEX files are uploaded to an archive using script 'up2archive' :
     640<pre>
     641[General]
     642casterHost=
     643casterPassword=
     644casterPort=
     645casterUser=
     646font="Sans Serif,8,-1,5,50,0,0,0,0,0"
     647logFile=${HOME}/bnc.log
     648mountPoints=//user:password@www.euref-ip.net:80/HOE20 RTCM_3.0 54.76 8.29 RS, //user:password@www.igs-ip.net:80/GOPE0 RTCM_2.2 49.91 14.79 RS
     649outFile=
     650outPort=
     651proxyHost=proxy.bkg.de
     652proxyPort=8000
     653rnxAppend=2
     654rnxIntr=15 min
     655rnxPath=${HOME}/rinex
     656rnxSampl=0
     657rnxScript=${HOME}/up2archive
     658rnxSkel=SKL
     659waitTime=5
     660</pre>
     661</p>
     662
  • trunk/BNC/bncwindow.cpp

    r404 r405  
    169169  _rnxIntrComboBox->setMaximumWidth(9*ww);
    170170  _rnxIntrComboBox->setEditable(false);
    171   _rnxIntrComboBox->addItems(QString("5 min,10 min,15 min,30 min,1 hour,1 day").split(","));
     171  _rnxIntrComboBox->addItems(QString("1 min,2 min,5 min,10 min,15 min,30 min,1 hour,1 day").split(","));
    172172  int ii = _rnxIntrComboBox->findText(settings.value("rnxIntr").toString());
    173173  if (ii != -1) {
Note: See TracChangeset for help on using the changeset viewer.