Changeset 4468 in ntrip


Ignore:
Timestamp:
Aug 2, 2012, 2:55:58 PM (12 years ago)
Author:
weber
Message:

Documentation completed

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/bnchelp.html

    r4467 r4468  
    155155
    156156<p>
    157 It is obvious that running BNC in interactive mode requires graphics support. However, graphics support is also required when producing plots in batch mode. Windows and Mac systems always support graphics. When using BNC in batch mode on Linux systems for producing plots, you need to make sure that at least a virtual X-Server like 'Xvfb' is installed and the 'DISPLAY' variable defined.
     157Running BNC in interactive mode requires graphics support. This is also required in batch mode when producing plots. Windows and Mac systems always support graphics. However, when using BNC in batch mode on Linux systems for producing plots, you need to make sure that at least a virtual X-Server like 'Xvfb' is installed and the 'DISPLAY' variable defined.
    158158</p>
    159159
     
    665665
    666666<p><img src="IMG/screenshot29.png"/></p>
    667 <p><u>Figure 9:</u> Example for RINEX quality check output with BNC in Post Processing mode. A multi-path analysis is presented in terms of a sky plot.</p>
     667<p><u>Figure 9:</u> Example for RINEX quality check output with BNC in Post Processing mode. A multipath analysis is presented in terms of a sky plot.</p>
    668668
    669669<p><a name="reqcplots"><h4>3.6.5 Directory for Plots - optional if 'Action' is set</h4></p>
     
    695695</p>
    696696
    697 <p>The following Linux command line produces RINEX QC plots offline in 'no window' mode and saves them in directory '/home/user'. Introducing a dummy configuration file /dev/null makes sure that not configuration options previously saved on disc are used.</p>
     697<p>The following Linux command line produces RINEX QC multipath plots offline in 'no window' mode and saves them in directory '/home/user'. Introducing a dummy configuration file /dev/null makes sure that no configuration options previously saved on disc are used:</p>
    698698<p>
    699699/home/user/bnc --conf /dev/null --key reqcAction Analyze --key reqcObsFile CUT02070.12O --key reqcNavFile BRDC2070.12P --key reqcOutLogFile CUT0.txt --key reqcPlotDir /home/user --nw
    700700</p>
    701701<p></p>
    702 <p>The following Linux command line produces the same RINEX QC plots in interactive autoStart mode:</p>
     702<p>The following Linux command line produces the same RINEX QC multipath plots in interactive autoStart mode:</p>
    703703<p>
    704704/home/user/bnc --conf /dev/null --key reqcAction Analyze --key reqcObsFile CUT02070.12O --key reqcNavFile BRDC2070.12P --key reqcOutLogFile CUT0.txt --key --key startTab 4 --key autoStart 2
     
    716716<tr><td>reqcNavFile</td><td>RINEX Navigation input files(s)</td></tr>
    717717<tr><td>reqcOutObsFile</td><td>RINEX Observation output file</td></tr>
    718 <tr><td>reqcPlotDir</td><td>RINEX QC plots directory</td></tr>
     718<tr><td>reqcPlotDir</td><td>RINEX QC multipath plot directory</td></tr>
    719719<tr><td>reqcOutNavFile</td><td>RINEX Navigation output file</td></tr>
    720720<tr><td>reqcOutLogFile</td><td>Logfile</td></tr>
     
    23522352</p>
    23532353<p>
    2354 It is obvious that BNC requires graphics support when started in interactive mode. However, it also requires graphics support when producing plots in batch mode (option -nw). Windows and Mac systems always support graphics. For producing plots in batch mode on Linux systems you need to make sure that at least a virtual X-Server like 'Xvfb' is installed and the 'DISPLAY' variable is defined.
    2355 </p>
     2354It is obvious that BNC requires graphics support when started in interactive mode. However, note that it also requires graphics support when producing plots in batch mode (option -nw). Windows and Mac systems always support graphics. For producing plots in batch mode on Linux systems you must make sure that at least a virtual X-Server such as 'Xvfb' is installed and the 'DISPLAY' variable properly defined. The following is a shell script executing BNC in batch mode which could be used via 'crontab':
     2355</p>
     2356<pre>
     2357#!/bin/bash
     2358
     2359# Save string localhost
     2360echo "localhost" > /home/user/hosts
     2361
     2362# Start virtual X-Server, save process ID
     2363/usr/bin/Xvfb :29 -auth /home/user/hosts -screen 0 1280x1024x8 &
     2364psID=`echo $!`
     2365
     2366# Define display, run BNC application
     2367export DISPLAY=localhost:29
     2368/home/user/BNC/bnc --conf /dev/null --key reqcAction Analyze --key reqcObsFile ons12090.12o --key reqcNavFile brdc2090.12p --key reqcOutLogFile multi.txt --key reqcPlotDir /home/user --nw
     2369
     2370# BNC done, kill X-server process
     2371kill $psID
     2372</pre>
    23562373
    23572374<p><a name="post"><h4>3.19.2 File Mode - optional</h4></p>
     
    25342551<tr>
    25352552<td>Aug 2012 &nbsp;</td><td>Version 2.7 &nbsp;</td>
    2536 <td>[Bug] Bug in L5 decoding fixed<br> [Bug] Bug in on-the-fly configuration fixed<br> [Add] Clock RINEX file header extended<br> [Add] Decoding/converting COMPASS and QZSS added<br> [Add] Work on RINEX v2 and v3 quality check started<br> [Mod] Source code completely re-arranged<br> [Add] QWT and QWTPOLAR graphics libraries added<br> [Add] RINEX v2 and v3 quality check through multi-path analysis and sky plot<br> [Bug] Short periodic outages in PPP time series when operated when 'Sync Corr' set to zero<br> [Add] Version 2.7 published</td>
     2553<td>[Bug] Bug in L5 decoding fixed<br> [Bug] Bug in on-the-fly configuration fixed<br> [Add] Clock RINEX file header extended<br> [Add] Decoding/converting COMPASS and QZSS added<br> [Add] Work on RINEX v2 and v3 quality check started<br> [Mod] Source code completely re-arranged<br> [Add] QWT and QWTPOLAR graphics libraries added<br> [Add] RINEX v2 and v3 quality check through multipath analysis and sky plot<br> [Bug] Short periodic outages in PPP time series when operated when 'Sync Corr' set to zero<br> [Add] Version 2.7 published</td>
    25372554</tr>
    25382555
Note: See TracChangeset for help on using the changeset viewer.