|
@@ -1,54 +1,10 @@
|
|
<!-- meta page description: wxGUI -->
|
|
<!-- meta page description: wxGUI -->
|
|
<h2>DESCRIPTION</h2>
|
|
<h2>DESCRIPTION</h2>
|
|
|
|
|
|
-<b>wxGUI</b> is native <em>Graphical User Interface</em> (GUI) for
|
|
|
|
-GRASS GIS written in <a href="http://www.python.org">Python</a>
|
|
|
|
-using <a href="http://www.wxpython.org">wxPython</a> library.
|
|
|
|
-
|
|
|
|
-<h3>Starting the graphical user interface</h3>
|
|
|
|
-If the wxGUI is not the default user interface, it can defined as default by
|
|
|
|
-typing at the GRASS GIS command line prompt:
|
|
|
|
-
|
|
|
|
-<div class="code"><pre>
|
|
|
|
-g.gui -u wxpython
|
|
|
|
-</pre></div>
|
|
|
|
-
|
|
|
|
-Alternatively it may be defined in GISRC file
|
|
|
|
-(<tt>$HOME/.grass7/rc</tt> on GNU/Linux, <tt>$APPDATA\GRASS7\rc</tt>
|
|
|
|
-on MS Windows) by <tt>GUI</tt> variable
|
|
|
|
-
|
|
|
|
-<div class="code"><pre>
|
|
|
|
-GUI: wxpython
|
|
|
|
-</pre></div>
|
|
|
|
-
|
|
|
|
-or by the environmental variable <tt>GRASS_GUI</tt>.
|
|
|
|
-<p>
|
|
|
|
-The GUI can be quit by selecting the 'File -> Exit GUI' menu item.
|
|
|
|
-<!-- is → allowed? -->
|
|
|
|
-On MS Windows when GRASS is launched without an interactive command line
|
|
|
|
-this will end the entire GRASS session. In other cases the terminal
|
|
|
|
-window will remain running; type <tt>exit</tt> at the command prompt
|
|
|
|
-to end the GRASS session.
|
|
|
|
-<p>
|
|
|
|
-The GUI can be restarted from the GRASS command line prompt by typing
|
|
|
|
-
|
|
|
|
-<div class="code"><pre>
|
|
|
|
-g.gui wxpython
|
|
|
|
-</pre></div>
|
|
|
|
-
|
|
|
|
-To restart with previously saved workspace file:
|
|
|
|
-
|
|
|
|
-<div class="code"><pre>
|
|
|
|
-g.gui wxpython workspace=file.gxw
|
|
|
|
-</pre></div>
|
|
|
|
|
|
+<b>wxGUI</b> is a native <em>Graphical User Interface</em> (GUI) for
|
|
|
|
+GRASS GIS. Its main features include displaying geographical data
|
|
|
|
+in 2D and 3D, calling GRASS GIS modules, and interacting with data.
|
|
|
|
|
|
-<p>
|
|
|
|
-The user can also start GRASS from the shell command line with the wxGUI
|
|
|
|
-specifying the <tt>-gui</tt> (or <tt>-wxpython</tt>) switch:
|
|
|
|
-
|
|
|
|
-<div class="code"><pre>
|
|
|
|
-grass70 -gui
|
|
|
|
-</pre></div>
|
|
|
|
|
|
|
|
<h3>Overview</h3>
|
|
<h3>Overview</h3>
|
|
The GUI is composed of <em>two</em> main components:
|
|
The GUI is composed of <em>two</em> main components:
|
|
@@ -412,7 +368,14 @@ the computational region extents.
|
|
<dt><img src="icons/pointer.png" alt="icon">
|
|
<dt><img src="icons/pointer.png" alt="icon">
|
|
<em>Pointer</em></dt>
|
|
<em>Pointer</em></dt>
|
|
<dd>Select arrow cursor for map display.</dd>
|
|
<dd>Select arrow cursor for map display.</dd>
|
|
-
|
|
|
|
|
|
+
|
|
|
|
+ <dt><img src="icons/select.png" alt="icon">
|
|
|
|
+ <em>Select features from vector map</em></dt>
|
|
|
|
+ <dd>Interactively select features from given vector map. Selection
|
|
|
|
+ can be stored to a new vector map,
|
|
|
|
+ see <em><a href="v.what.html">v.what</a></em>
|
|
|
|
+ and <em><a href="v.extract.html">v.extract</a></em>.</dd>
|
|
|
|
+
|
|
<dt><img src="icons/info.png" alt="icon">
|
|
<dt><img src="icons/info.png" alt="icon">
|
|
<em>Query raster/vector maps</em></dt>
|
|
<em>Query raster/vector maps</em></dt>
|
|
<dd>Query selected raster, RGB raster (all three map channels will be
|
|
<dd>Query selected raster, RGB raster (all three map channels will be
|
|
@@ -660,6 +623,67 @@ the computational region extents.
|
|
<dd>Fullscreen mode (toggle on/off)</dd>
|
|
<dd>Fullscreen mode (toggle on/off)</dd>
|
|
</dl>
|
|
</dl>
|
|
|
|
|
|
|
|
+
|
|
|
|
+<h3>Starting the graphical user interface</h3>
|
|
|
|
+
|
|
|
|
+If the wxGUI is not the default user interface, it can defined as default by
|
|
|
|
+typing at the GRASS GIS command line prompt:
|
|
|
|
+
|
|
|
|
+<div class="code"><pre>
|
|
|
|
+g.gui -u wxpython
|
|
|
|
+</pre></div>
|
|
|
|
+
|
|
|
|
+Alternatively it may be defined in GISRC file
|
|
|
|
+(<tt>$HOME/.grass7/rc</tt> on GNU/Linux, <tt>$APPDATA\GRASS7\rc</tt>
|
|
|
|
+on MS Windows) by <tt>GUI</tt> variable
|
|
|
|
+
|
|
|
|
+<div class="code"><pre>
|
|
|
|
+GUI: wxpython
|
|
|
|
+</pre></div>
|
|
|
|
+
|
|
|
|
+or by the environmental variable <tt>GRASS_GUI</tt>.
|
|
|
|
+<p>
|
|
|
|
+The GUI can be quit by selecting the 'File -> Exit GUI' menu item.
|
|
|
|
+<!-- is → allowed? -->
|
|
|
|
+On MS Windows when GRASS is launched without an interactive command line
|
|
|
|
+this will end the entire GRASS session. In other cases the terminal
|
|
|
|
+window will remain running; type <tt>exit</tt> at the command prompt
|
|
|
|
+to end the GRASS session.
|
|
|
|
+<p>
|
|
|
|
+The GUI can be restarted from the GRASS command line prompt by typing
|
|
|
|
+
|
|
|
|
+<div class="code"><pre>
|
|
|
|
+g.gui
|
|
|
|
+</pre></div>
|
|
|
|
+
|
|
|
|
+or
|
|
|
|
+
|
|
|
|
+<div class="code"><pre>
|
|
|
|
+g.gui wxpython
|
|
|
|
+</pre></div>
|
|
|
|
+
|
|
|
|
+To restart with previously saved workspace file:
|
|
|
|
+
|
|
|
|
+<div class="code"><pre>
|
|
|
|
+g.gui wxpython workspace=file.gxw
|
|
|
|
+</pre></div>
|
|
|
|
+
|
|
|
|
+<p>
|
|
|
|
+The user can also start GRASS from the shell command line with the wxGUI
|
|
|
|
+specifying the <tt>-gui</tt> (or <tt>-wxpython</tt>) switch:
|
|
|
|
+
|
|
|
|
+<div class="code"><pre>
|
|
|
|
+grass71 -gui
|
|
|
|
+</pre></div>
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+<h3>Background information</h3>
|
|
|
|
+
|
|
|
|
+<b>wxGUI</b> is a native <em>Graphical User Interface</em> (GUI) for
|
|
|
|
+GRASS GIS written in <a href="http://www.python.org">Python</a>
|
|
|
|
+using <a href="http://www.wxpython.org">wxPython</a> library.
|
|
|
|
+
|
|
|
|
+
|
|
<h2>SEE ALSO</h2>
|
|
<h2>SEE ALSO</h2>
|
|
|
|
|
|
<em>
|
|
<em>
|
|
@@ -682,10 +706,11 @@ Michael Barton, Arizona State University, USA<br>
|
|
Daniel Calvelo Aros<br>
|
|
Daniel Calvelo Aros<br>
|
|
Jachym Cepicky<br>
|
|
Jachym Cepicky<br>
|
|
Markus Metz, Germany<br>
|
|
Markus Metz, Germany<br>
|
|
-Anna Kratochvilova, Czech Technical University in Prague, Czech Republic<br>
|
|
|
|
-Vaclav Petras, Czech Technical University in Prague, Czech Republic<br>
|
|
|
|
-Stepan Turek, Czech Technical University in Prague, Czech Republic<br>
|
|
|
|
-Tereza Fiedlerova, Czech Technical University in Prague, Czech Republic<br><br>
|
|
|
|
|
|
+Anna Kratochvilova, OSGeoREL, Czech Technical University in Prague, Czech Republic<br>
|
|
|
|
+Vaclav Petras, OSGeoREL, Czech Technical University in Prague, Czech Republic<br>
|
|
|
|
+Stepan Turek, OSGeoREL, Czech Technical University in Prague, Czech Republic<br>
|
|
|
|
+Tereza Fiedlerova, OSGeoREL, Czech Technical University in Prague, Czech Republic<br>
|
|
|
|
+Matej Krejci, OSGeoREL, Czech Technical University in Prague, Czech Republic<br><br>
|
|
|
|
|
|
Icons created by <a href="http://robert.szczepanek.pl">Robert Szczepanek</a>, Poland (<a href="https://svn.osgeo.org/osgeo/graphics/trunk/toolbar-icons/24x24/">SVN</a>)
|
|
Icons created by <a href="http://robert.szczepanek.pl">Robert Szczepanek</a>, Poland (<a href="https://svn.osgeo.org/osgeo/graphics/trunk/toolbar-icons/24x24/">SVN</a>)
|
|
|
|
|