wxGUI.html 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540
  1. <h2>DESCRIPTION</h2>
  2. wxGUI is native <em>Graphical User Interface</em> (GUI) for GRASS GIS.
  3. <p>
  4. If wxGUI is not your default UI, you can define it as default by
  5. typing at GRASS command line prompt
  6. <div class="code"><pre>
  7. g.gui -u wxpython
  8. </pre></div>
  9. or define in your <tt>.grass7/rc</tt> file 'GRASS_GUI' variable
  10. <div class="code"><pre>
  11. GRASS_GUI: wxpython
  12. </pre></div>
  13. The GUI can be quit by selecting the 'File->Exit' menu item. The GUI
  14. can be restarted from the GRASS command line prompt by typing
  15. <div class="code"><pre>
  16. g.gui wxpython
  17. </pre></div>
  18. or to restart with previously saved workspace type:
  19. <div class="code"><pre>
  20. g.gui wxpython workspace=file.gxw
  21. </pre></div>
  22. <p>
  23. You can also start GRASS from the shell command line with wxGUI
  24. defined by the <tt>-wxpython</tt> switch:
  25. <div class="code"><pre>
  26. grass70 -wxpython
  27. </pre></div>
  28. <p>
  29. The GUI is composed by <em>two</em> main components:
  30. <ul>
  31. <li>The <b>Layer Manager</b> includes map layer management, integrated
  32. command-line prompt, and command output window tab.</li>
  33. <li>The <b>Map Display Window</b> integrates basic tools for
  34. zooming, panning, data querying, and map elements (north arrows,
  35. barscale, etc.). Each display window is associated with its own
  36. set of map layers in the layer manager. The user may start multiple map
  37. displays during a session. The map layers for each display are grouped
  38. under different tabs in the Layer Manager.</li>
  39. </ul>
  40. <h3>Layer Manager</h3>
  41. The <em>Layer Manager</em> provides an interactive graphical interface for
  42. creating and managing GRASS displays. There is a toolbar to manage displayed
  43. map layers, a layer tree frame in which map layers for display are organized,
  44. a command output window tab, and interactive command line prompt. On Linux
  45. and Windows platforms, the layer manager also has a menu bar with a set of
  46. pull-down menus for all GRASS GIS functions (analysis, file I/O, GIS
  47. configuration and management); on a Mac, the GRASS functions menu is at the
  48. top of the screen.
  49. <center>
  50. <br><img src="wxGUI_layer_manager.jpg" border="1"><br><br>
  51. </center>
  52. The top left button of the toolbar opens a new <em>Map Display
  53. Window</em>. Each map display has a unique set of layers to display
  54. and region settings. Other toolbar buttons add layers of different
  55. types for display in the selected map display window. There are
  56. additional buttons for saving or opening workspace file, and others.
  57. <p>
  58. Map layers are listed in the window frame below the toolbar. Layers can
  59. include raster and vector maps, vector labels, and commands (where any
  60. GRASS command can be written). Layers are displayed as arranged in the layer
  61. tree: the bottom layer is displayed first and the top layer is displayed
  62. last, as if the layers were a series of stacked overlays.
  63. <p>
  64. The check box to the left of each layer makes it active or inactive
  65. for display. Only active layers are displayed/redisplayed when the
  66. display button is pressed. Layers can be organized into groups; entire
  67. groups can be activated or deactivated for display. Layer tree
  68. composition can be saved to a workspace file and opened in subsequent
  69. sessions, restoring all layers and their display options.
  70. <p>
  71. A right mouse click on a layer or left clicking the button to the right of
  72. the layer opens a dropdown menu with options to remove or rename the layer
  73. (g.remove, g.rename), change its display properties (d.rast and d.vect
  74. options such as color, symbol, etc.), show its metadata (r.info, v.info) or
  75. attributes, if applicable.
  76. <p>
  77. A left mouse double click on a layer opens GUI for its display options
  78. These options are those for the d.* command for each layer type (d.rast,
  79. d.vect, or d.grid, for example).
  80. <h4>Layer Manager Toolbar</h4>
  81. <dl>
  82. <dt><img src="icons/grass2/monitor-create.png">&nbsp;
  83. <em>Open new Map Display Window</em></dt>
  84. <dd>Opens a new map display and creates empty layer tree tab in Layer Manager.</dd>
  85. <dt><img src="icons/grass2/create.png">&nbsp;
  86. <em>Create new workspace file</em></dt>
  87. <dd>Removes all layers in the layer tree and creates a new, empty tree
  88. where new layers can be added.</dd>
  89. <dt><img src="icons/grass2/layer-open.png">&nbsp;
  90. <em>Load map layers (raster, vector) into workspace</em></dt>
  91. <dd>Loads selected raster or vector maps into current layer tree.</dd>
  92. <dt><img src="icons/grass2/open.png">&nbsp;
  93. <em>Open an existing workspace file</em></dt>
  94. <dd>Opens an previously saved workspace file, containing a set of display
  95. layers and their option settings.</dd>
  96. <dt><img src="icons/grass2/save.png">&nbsp;
  97. <em>Save workspace file</em></dt>
  98. <dd>Saves current set of layers and their options to a workspace
  99. file.</dd>
  100. <dt><img src="icons/grass2/layer-raster-add.png">&nbsp;
  101. <em>Add raster map layer</em></dt>
  102. <dd>Adds raster map to layer tree, see <em><a href="d.rast.html">d.rast</a></em>.
  103. </dd>
  104. <dt><img src="icons/grass2/layer-shaded-relief-add.png">&nbsp;
  105. <em>Add various raster-based map layers</em></dt>
  106. <dd>Opens a dropdown menu that allows user to select to:<br>
  107. <dl>
  108. <dt><img src="icons/grass2/layer-shaded-relief-add.png">&nbsp;
  109. <em>Add shaded relief raster map layer </em></dt>
  110. <dd>Adds shaded relief raster map layer,
  111. see <em><a href="d.shadedmap.html">d.shadedmap</a></em>
  112. <dt><img src="icons/grass2/layer-rgb-add.png">&nbsp;
  113. <em>Add RGB raster layer</em></dt>
  114. <dd>Combines and displays three raster maps defined as red, green,
  115. and blue channels to create an RGB color map,
  116. see <em><a href="d.rgb.html">d.rgb</a></em>.</dd>
  117. <dt><img src="icons/grass2/layer-his-add.png">&nbsp;
  118. <em>Add HIS raster layer</em></dt>
  119. <dd>Combines and displays two or three raster maps defined as hue,
  120. intensity, and (optionally) saturation channels to create a color map,
  121. see <em><a href="d.his.html">d.his</a></em>.</dd>
  122. <dt><img src="icons/grass2/layer-cell-cats-add.png">&nbsp;
  123. <em>Add raster arrows layer</em></dt>
  124. <dd>Adds map of raster cells with directional arrows drawn. Arrow
  125. direction and length are determined by separate aspect/directional map
  126. and (optional) slope/intensity map,
  127. see <em><a href="d.rast.arrow.html">d.rast.arrow</a></em>.</dd>
  128. <dt><img src="icons/grass2/layer-cell-cats-add.png">&nbsp;
  129. <em>Add raster numbers layer</em></dt>
  130. <dd>Adds map of raster cells with numbers representing the cell values,
  131. see <em><a href="d.rast.num.html">d.rast.num</a></em>.</dd>
  132. </dl>
  133. <dt><img src="icons/grass2/layer-vector-add.png">&nbsp;
  134. <em>Add vector map layer</em></dt>
  135. <dd>Adds a vector map layer, see <em><a href="d.vect.html">d.vect</a></em>.
  136. </dd>
  137. <dt><img src="icons/grass2/layer-vector-thematic-add.png">&nbsp;
  138. <em>Add various vector-based map layers </em></dt>
  139. <dd>Opens a dropdown menu that allows user to select to:<br>
  140. <dl>
  141. <dt><img src="icons/grass2/layer-vector-thematic-add.png">&nbsp;
  142. <em>Add thematic map layer
  143. (for all vector types)</em></dt>
  144. <dd>Adds layer for thematic display values from a numeric attribute
  145. column associated with a vector map. Options include: thematic display
  146. type (graduated colors or point sizes), methods for creating display
  147. intervals, SQL query of attribute column to limit vector objects to
  148. display, control of point icon types and sizes, control of thematic
  149. color schemes, creation of legend for thematic map, and saving the
  150. results of thematic mapping to a ps.map instructions file for later
  151. printing,
  152. see <em><a href="d.vect.thematic.html">d.vect.thematic</a></em>.</dd>
  153. <dt><img src="icons/grass2/layer-vector-chart-add.png">&nbsp;
  154. <em>Add thematic charts layer (for vector points)</em></dt>
  155. <dd>Adds layer in which pie or bar charts can be automatically created
  156. at vector point locations. Charts display values from selected columns
  157. in the associated attribute table. Options include: chart type, layer
  158. and attributes to chart, chart colors, and chart size (fixed or based
  159. on attribute column),
  160. see <em><a href="d.vect.chart.html">d.vect.chart</a></em>.</dd>
  161. </dl>
  162. <dt><img src="icons/grass2/layer-command-add.png">&nbsp;
  163. <em>Add command layer</em></dt>
  164. <dd>Adds a layer in which a GRASS GIS command or command list can be entered.
  165. For a command list use the semi-colon (";") symbol as a separator.
  166. For example:
  167. <div class="code"><pre>
  168. d.rast soils;d.rast -o roads;d.vect streams col=blue
  169. </pre></div>
  170. Note that when an option of the command contains spaces, you need to
  171. "escape" them with the backslash ('\') character, for example:
  172. <div class="code"><pre>
  173. d.text text=Population\ density
  174. </pre></div>
  175. </dd>
  176. <dt><img src="icons/grass2/layer-group-add.png">&nbsp;
  177. <em>Add layer group</em></dt>
  178. <dd>Adds an empty layer group. Layers can then be added to the group.</dd>
  179. <dt><img src="icons/grass2/layer-grid-add.png">&nbsp;
  180. <em>Add grid or vector labels overlay</em></dt>
  181. <dd>Opens a dropdown menu that allows user to select to:<br>
  182. <dl>
  183. <dt><img src="icons/grass2/layer-grid-add.png">&nbsp;
  184. <em>Add overlay grids and lines</em></dt>
  185. <dd>Adds layer to display regular grid (for all locations)
  186. see <em><a href="d.grid.html">d.grid</a></em></dd>
  187. <dt><img src="icons/grass2/layer-label-add.png">&nbsp;
  188. <em>Add labels layer for vector objects (from existing labels file)</em></dt>
  189. <dd>Add a layer of text from a labels file for vector objects
  190. created with the <em><a href="v.label.html">v.label</a></em> module.
  191. A labels file can also be created with a text editor,
  192. see <em><a href="d.labels.html">d.labels</a></em>.</dd>
  193. <dt><img src="icons/grass/module-d.geodesic.gif">&nbsp;
  194. <em>Add geodesic line layer</em></dt>
  195. <dd>Add layer to display geodesic line for latitude/longitude locations only,
  196. see <em><a href="d.geodesic.html">d.geodesic</a></em></dd>
  197. <dt><img src="icons/grass/module-d.geodesic.gif">&nbsp;
  198. <em>Add rhumbline layer</em>
  199. <dd>Add layer to display rhumblines (for latitude/longitude locations only),
  200. see <em><a href="d.rhumbline.html">d.rhumbline</a></em>.</dd>
  201. </dl>
  202. <dt><img src="icons/grass2/layer-remove.png">&nbsp;
  203. <em>Delete selected layer</em></dt>
  204. <dd>Removes selected map layer or map layer group from layer tree.</dd>
  205. <dt><img src="icons/grass2/table.png">&nbsp;
  206. <em>Show <a href="wxGUI.Attribute_Table_Manager.html">Attribute Table Manager</a> for selected vector map</em></dt>
  207. <dd>Displays attribute data of selected vector map.</dd>
  208. </dl>
  209. <h4>Key shortcuts</h4>
  210. <b>Menu</b>
  211. <dl>
  212. <dt>Ctrl+N</dt>
  213. <dd>Create new workspace</dd>
  214. <dt>Ctrl+O</dt>
  215. <dd>Load workspace from file</dd>
  216. <dt>Ctrl+S</dt>
  217. <dd>Close workspace</dd>
  218. <dt>Ctrl+L</dt>
  219. <dd>Load map layers</dd>
  220. <dt>Ctrl+W</dt>
  221. <dd>Exit GUI</dd>
  222. <dt>Ctrl+Q</dt>
  223. <dd>Quit GRASS</dd>
  224. </dl>
  225. <b>Global</b>
  226. <dl>
  227. <dt>Ctrl+Tab</dt>
  228. <dd>Switch 'Map layers' and 'Command output' tab</dd>
  229. <dt>Ctrl+R</dt>
  230. <dd>Add raster map layer</dd>
  231. <dt>Ctrl+V</dt>
  232. <dd>Add vector map layer</dd>
  233. </dl>
  234. <b>Command line prompt</b>
  235. <dl>
  236. <dt>Tab</dt>
  237. <dd>Show command tooltips</dd>
  238. <dt>Esc</dt>
  239. <dd>Hide command tooltips</dd>
  240. <dt>Ctrl+Space</dt>
  241. <dd>Map entries without arguments (as in <tt>r.info [mapname]</tt>)</dd>
  242. <dt>Up/Down</dt>
  243. <dd>List command history</dd>
  244. <dt>Enter</dt>
  245. <dd>Run command</dd>
  246. </dl>
  247. <h3>Map Display Window</h3>
  248. The map display window includes toolbar that can be docked and undocked from
  249. the window, a map canvas where a map composition of one or more layers is
  250. displayed, and a statusbar with information about the geographic region of
  251. the maps displayed.
  252. <center>
  253. <br><img src="wxGUI_map_display.jpg" alt="Map Display Window"><br><br>
  254. </center>
  255. Each Map Display Window has a unique layer tree (in the layer manager)
  256. and geographic <em>region</em> setting. At the top of the window is a
  257. toolbar with buttons to manage the map in the display (render, erase, zoom
  258. and pan), for query and and analysis (distance measurement, profile,
  259. and histogram creation), to overlay map elements onto the display (scale,
  260. north arrow, legend, and custom text), and to export or print the display.
  261. <p>
  262. In the statusbar, the user can choose to display the geographic coordinates
  263. under the cursor, current geographical region extent, computational region
  264. (including graphical visualization in map display), map display geometry
  265. (number of rows, columns, resolution) and map scale. Checking the
  266. <em>render</em> button in the statusbar will cause the map display to update
  267. automatically any time a map is added to, removed from, or changed in its
  268. layer tree.
  269. <p>
  270. It is important to note that zooming in any display will
  271. have <em>no</em> effect on the 'computational region' setting (set
  272. with <em><a href="g.region.html">g.region</a></em>). Only by selecting
  273. the 'Set current region to match display' item in the zoom menu (in
  274. the map display toolbar) will the current display extents be copied to
  275. the computational region extents.
  276. <h4>Map Display Toolbar</h4>
  277. <dl>
  278. <dt><img src="icons/grass2/show.png">&nbsp;
  279. <em>Display map</em></dt>
  280. <dd>Displays all active layers from layer tree and re-renders for display
  281. any layers that have changed since the last time the display was updated,
  282. including layers added or removed.</dd>
  283. <dt><img src="icons/grass2/layer-redraw.png">&nbsp;
  284. <em>Re-render map</em></dt>
  285. <dd>Re-renders all active layers regardless of whether they have changed
  286. or not.</dd>
  287. <dt><img src="icons/grass2/erase.png">&nbsp;
  288. <em>Erase display</em></dt>
  289. <dd>Erases the currently selected map display to a white background.
  290. see <em><a href="d.erase.html">d.erase</a>, <a href="d.frame.html">d.frame
  291. -e</a></em>.</dd>
  292. <dt><img src="icons/grass2/pointer.png">&nbsp;
  293. <em>Pointer</em></dt>
  294. <dd>Select arrow cursor for map display.</dd>
  295. <dt><img src="icons/grass2/info.png">&nbsp;
  296. <em>Query raster/vector maps</em></dt>
  297. <dd>Opens a dropdown menu that allows user to select to:<br>
  298. <ul>
  299. <li>Query selected raster, RGB raster (all three map channels will be
  300. queried), or vector map(s) using the mouse. Map(s) must be selected
  301. before query. Vector charts and thematic vector maps cannot be
  302. queried. The results of the query will be displayed in the console window,
  303. see <em><a href="r.what.html">r.what</a>, <a href="v.what.html">v.what</a></em>.</li>
  304. <li>Query selected vector map in edit mode. The results of the query
  305. will be displayed in a form that permits editing of the queried vector
  306. attributes.</li>
  307. </ul>
  308. <dt><img src="icons/grass2/pan.png">&nbsp;
  309. <em>Pan</em></dt>
  310. <dd>Interactive selection of a new center of view in the active
  311. display monitor. Drag the pan cursor while pressing the left mouse
  312. button to pan. Panning changes the location of the region displayed
  313. but not the size of the area displayed or the resolution. Panning
  314. does <em>not</em> affect the computational region for other GIS
  315. processes, see <em><a href="g.region.html">g.region</a></em>.</dd>
  316. <dt><img src="icons/grass2/zoom-in.png">&nbsp;
  317. <em>Zoom in</em></dt>
  318. <dd>Interactive zooming with the mouse in the active display monitor.
  319. Drawing a box or just click with the mouse (left button) and zoom-in
  320. cursor causes the display to zoom in so that the area defined by the
  321. box fills the display. The map resolution is not changed. Clicking
  322. with the zoom-in cursor causes the display to zoom in by 30%, centered
  323. on the point where the mouse is clicked. Zooming resets the display
  324. region extents (both size and location of area displayed). It
  325. does <em>not</em> affect the computational region for other GIS
  326. processes, see <em><a href="g.region.html">g.region</a></em>.</dd>
  327. <dt><img src="icons/grass2/zoom-out.png">&nbsp;
  328. <em>Zoom out</em></dt>
  329. <dd>Interactive zooming with the mouse in the active display monitor.
  330. Drawing a box or just click with the mouse (left button) and zoom-out
  331. cursor causes the display to zoom in so that the area displayed
  332. shrinks to fill the area defined by the box. The map resolution is not
  333. changed. Clicking with the zoom-out cursor causes the display to zoom
  334. out by 30%, centered on the point where the mouse is clicked. Zooming
  335. resets the display region extents (both size and location of area
  336. displayed). It does <em>not</em> affect the computational region for
  337. other GIS processes,
  338. see <em><a href="g.region.html">g.region</a></em>.</dd>
  339. <dt><img src="icons/grass2/zoom-last.png">&nbsp;
  340. <em>Return to previous zoom</em></dt>
  341. <dd>Returns to the previous zoom extent. Up to 10 levels of zoom back are
  342. maintained, see <em><a href="g.region.html">g.region</a></em>.</dd>
  343. <dt><img src="icons/grass2/zoom-more.png">&nbsp;
  344. <em>Zoom options</em></dt>
  345. <dd>Opens a dropdown menu that allows user to:<br>
  346. <ul>
  347. <li>Zoom to match the extents of a selected map</li>
  348. <li>Zoom to match the computational region (set with <em>g.region</em>)</li>
  349. <li>Zoom to match the extents of the default region</li>
  350. <li>Zoom to match the extents of a saved region</li>
  351. <li>Set computational region (the mapset's <tt>WIND</tt> file) to match the
  352. current display extents (does not change the resolution),
  353. see <em><a href="g.region.html">g.region</a></em>.
  354. <li>Save display geometry (current extents) to a named region file</li>
  355. </ul>
  356. <dt><img src="icons/grass2/layer-raster-analyze.png">&nbsp;
  357. <em>Analyze menu</em></dt>
  358. <dd>Opens a dropdown menu with:<br>
  359. <dl>
  360. <dt><img src="icons/grass2/measure-length.png">&nbsp;
  361. <em>Distance measurement tool</em></dt>
  362. <dd>Interactive measurement of lengths defined with the mouse. The
  363. length of each segment and the cumulative length of all segments
  364. measuered is displayed in the command output window frame. Lengths are
  365. measured in the current measurement unit,
  366. see <em><a href="d.measure.html">d.measure</a></em>.</dd>
  367. <dt><img src="icons/grass2/layer-raster-profile.png">&nbsp;
  368. <em>Profile tool</em></dt>
  369. <dd>Interactively create profile of a raster map. Profile transect is
  370. drawn with the mouse in map display. The profile may be of the
  371. displayed map or a different map. Up to three maps can be profiled
  372. simultaneously,
  373. see <em><a href="gm_profile.html">Profile Tool help page</a></em>.</dd>
  374. <dt><img src="icons/grass2/layer-raster-histogram.png">&nbsp;
  375. <em>Histogram tool</em></dt>
  376. <dd>Displays histogram of selected raster map or image in new window,
  377. see <em><a href="d.histogram.html">d.histogram</a></em>.</dd>
  378. </dl>
  379. <dt><img src="icons/grass2/overlay-add.png">&nbsp;
  380. <em>Add overlay</em></dt>
  381. <dd>opens a dropdown menu that allows user to:<br>
  382. <dl>
  383. <dt><img src="icons/grass2/scalebar-add.png">&nbsp;
  384. <em>Add scalebar and north arrow</em></dt>
  385. <dd>Adds layer to display a combined scalebar and north arrow. Options
  386. include scalebar placement (using screen coordinates or a mouse),
  387. scalebar format, and scalebar colors,
  388. see <em><a href="d.barscale.html">d.barscale</a></em>.</dd>
  389. <dt><img src="icons/grass2/legend-add.png">&nbsp;
  390. <em>Add raster map legend</em></dt>
  391. <dd>Adds layer to display with legend of selected raster map,
  392. see <em><a href="d.legend.html">d.legend</a></em>.</dd>
  393. <dt><img src="icons/grass2/text-add.png">&nbsp;
  394. <em>Add text layer</em></dt>
  395. <dd>Adds layer to display a line of text using default GRASS font
  396. (selected with <em><a href="d.font.html">d.font</a></em>). Options
  397. include: text placement (screen coordinates); and text size, bolding,
  398. and color, see <em><a href="d.text.html">d.text</a></em>.</dd>
  399. </dl>
  400. <dt><img src="icons/grass2/map-export.png">&nbsp;
  401. <em>Save display to graphic file</em></dt>
  402. <dd>Save the visible image in map display to different raster graphic formats.</dd>
  403. <dt><img src="icons/grass2/print.png">&nbsp;
  404. <em>Print map</em></dt>
  405. <dd>Prints map on system native printer or PostScript device;
  406. saves visible map display (including PostScript text and labels) to PDF
  407. or EPS file.</dd>
  408. <dt><em>Map display mode</em></dt>
  409. <dd>Opens a dropdown menu for selecting different display mode<br>
  410. <dl>
  411. <dt><em>2D view mode</em></dt>
  412. <dd>Normal GIS display. All active layers are composited and displayed
  413. in 2D mode.</dd>
  414. <dt><em>3D view mode</em></dt>
  415. <dd>Experimental replacement for NVIZ. Displays all active layers in
  416. 3D perspective using OpenGL. A new control panel opens to manage the
  417. 3D view. 3D view can be zoomed, panned, rotated, and tilted. The
  418. vertical exaggeration of rasters and 3D vectors can be set. Various
  419. color and lighten settings are possible. Not yet functional for
  420. Windows platforms</dd>
  421. <dt><em>Digitize mode</em></dt>
  422. <dd>Puts display into vector digitizing mode and opens a new digitizing
  423. toolbar. The user can digitize a new map or edit an existing
  424. map. Not yet functional for Windows platforms</dd>
  425. </dl>
  426. </dl>
  427. <h2>CONFIGURATION</h2>
  428. <em>User GIS settings</em> dialog ('Settings->Preferences') enables
  429. configuration of various options.
  430. <p>
  431. For information about available <em>icon themes</em> see
  432. this <a href="wxGUI.Icons.html">page</a>.
  433. <h2>SEE ALSO</h2>
  434. <em>
  435. <a href="wxGUI.Vector_Digitizing_Tool.html">Vector Digitizer</a><br>
  436. <a href="wxGUI.Attribute_Table_Manager.html">Attribute Table Manager</a><br>
  437. <a href="wxGUI.Nviz.html">3D Viewer</a><br>
  438. <a href="wxGUI.Modeler.html">Graphical Modeler</a><br>
  439. <a href="wxGUI.GCP_Manager.html">Manage Ground Control Points</a><br>
  440. <a href="wxGUI.Icons.html">Icon themes</a>
  441. </em>
  442. <p>
  443. See also <a href="http://grass.osgeo.org/wiki/WxGUI">wiki</a> page.
  444. <h2>AUTHORS</h2>
  445. Martin Landa, FBK-irst, Trento, Italy, and CTU in Prague, Czech Republic<br>
  446. Michael Barton, Arizona State University, USA<br>
  447. Daniel Calvelo Aros,<br>
  448. Jachym Cepicky
  449. <p>
  450. <i>$Date$</i>