Changeset 4468 in ntrip
- Timestamp:
- Aug 2, 2012, 2:55:58 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/bnchelp.html
r4467 r4468 155 155 156 156 <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.157 Running 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. 158 158 </p> 159 159 … … 665 665 666 666 <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> 668 668 669 669 <p><a name="reqcplots"><h4>3.6.5 Directory for Plots - optional if 'Action' is set</h4></p> … … 695 695 </p> 696 696 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> 698 698 <p> 699 699 /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 700 700 </p> 701 701 <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> 703 703 <p> 704 704 /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 … … 716 716 <tr><td>reqcNavFile</td><td>RINEX Navigation input files(s)</td></tr> 717 717 <tr><td>reqcOutObsFile</td><td>RINEX Observation output file</td></tr> 718 <tr><td>reqcPlotDir</td><td>RINEX QC plotsdirectory</td></tr>718 <tr><td>reqcPlotDir</td><td>RINEX QC multipath plot directory</td></tr> 719 719 <tr><td>reqcOutNavFile</td><td>RINEX Navigation output file</td></tr> 720 720 <tr><td>reqcOutLogFile</td><td>Logfile</td></tr> … … 2352 2352 </p> 2353 2353 <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> 2354 It 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 2360 echo "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 & 2364 psID=`echo $!` 2365 2366 # Define display, run BNC application 2367 export 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 2371 kill $psID 2372 </pre> 2356 2373 2357 2374 <p><a name="post"><h4>3.19.2 File Mode - optional</h4></p> … … 2534 2551 <tr> 2535 2552 <td>Aug 2012 </td><td>Version 2.7 </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> 2537 2554 </tr> 2538 2555
Note:
See TracChangeset
for help on using the changeset viewer.