Changeset 204:6616046534cf
- Timestamp:
- 05/28/12 08:13:12 (12 years ago)
- Branch:
- default
- Phase:
- public
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/manual/en/index.html
r195 r204 1 1 <html> 2 <head> 3 <title>MAVA Logger X User's Manual</title> 4 </head> 2 <head> 3 <title>MAVA Logger X User's Manual</title> 4 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> 5 </head> 5 6 <body> 6 < h1>MAVA Logger X User's Manual</h1>7 <div align="center"><h1>MAVA Logger X User's Manual</h1></div> 7 8 8 9 <h2>Overview</h2> … … 700 701 </p> 701 702 703 <p> 704 The <i>MAVA Online Systems</i> frame contains settings related to 705 the online systems of MAVA, the gate and the ACARS systems mentioned 706 above. It is recommended to enabled these for normal operations. 707 </p> 708 709 <p> 710 The <i>Simulator</i> frame contains settings for how the program 711 interacts with the simulator. Most options are self-explanatory, but 712 the ones related to smoothing requires some discussion. Flight 713 Simulator is known for producing wind speed changes that are not 714 entirely realistic and can result in the simulated aircraft 715 experiencing some very high indicated airspeeds, which in turn can 716 also cause the autopilot to suddenly increase the climb rate to 717 counter the high speeds. Since this phenomenon is difficult to 718 protect oneself against without buying extra products, like FSUIPC, 719 the logger provides the possibility to average the IAS and/or the VS 720 over a few seconds so that spikes in these values are 721 smoothed. The <b>Enable the smoothing of IAS/VS over N sec.</b> 722 options allow controlling this feature. The number of seconds may 723 need experimenting with, but note that every change for which you 724 press the <b>OK</b> button is taken into account immediately. 725 </p> 726 702 727 <h3>The <i>Messages</i> Tab</h3> 703 728 -
src/mlx/gui/gui.py
r203 r204 804 804 menuBar.append(toolsMenuItem) 805 805 806 checklistMenuItem = gtk.ImageMenuItem(gtk.STOCK_ PREFERENCES)806 checklistMenuItem = gtk.ImageMenuItem(gtk.STOCK_APPLY) 807 807 checklistMenuItem.set_use_stock(True) 808 808 checklistMenuItem.set_label(xstr("menu_tools_chklst")) … … 813 813 toolsMenu.append(checklistMenuItem) 814 814 815 prefsMenuItem = gtk.ImageMenuItem(gtk.STOCK_ APPLY)815 prefsMenuItem = gtk.ImageMenuItem(gtk.STOCK_PREFERENCES) 816 816 prefsMenuItem.set_use_stock(True) 817 817 prefsMenuItem.set_label(xstr("menu_tools_prefs")) -
src/mlx/web.py
r203 r204 905 905 906 906 #handler.getNOTAMs(callback, "LHBP", "EPWA") 907 handler.getMETARs(callback, ["LHBP", "EPWA"])908 time.sleep(5)907 #handler.getMETARs(callback, ["LHBP", "EPWA"]) 908 #time.sleep(5) 909 909 910 911 #------------------------------------------------------------------------------ 910 handler.updatePlane(callback, "HA-LON", const.PLANE_AWAY, "") 911 time.sleep(3) 912 913 #------------------------------------------------------------------------------
Note:
See TracChangeset
for help on using the changeset viewer.