1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190
|
<!-- meta page description: wxGUI Module dialogs -->
<!-- meta page index: wxGUI -->
<h2>KEYWORDS</h2>
<a href="general.html">general</a>, <a href="topic_GUI.html">GUI</a>
<h2>DESCRIPTION</h2>
GRASS GIS functionality is organized into modules, which are standalone programs
with defined interface. Their graphical user interface (GUI) is a dialog
with several tabs which organize module parameters into groups.
<p>
Each parameter can have different type of input fields,
for example text entry or drop-down list.
Flags are represented as checkboxes. The parameter (or flag) name
is visible on the right side of each input field
so that it is simple to understand how the module dialog
relates to the command representation which is used in the manuals and tutorials.
The commands can be used to call the module in the command line, Shell scripts
or, with a slight modification, in a Python script.
<center>
<img src="wxGUI_modules_parameters.png" border="0" alt="r.neighbors dialog">
</center>
<h3>Tabs</h3>
Module parameters and flags are organized in tabs. Their names can depend on a module,
however every module has <i>Command output</i> tab where the progress can be observed,
and the module output including text results or warnings are printed.
The last <i>Manual</i> tab contains description of module's parameters
and examples. The same information can be found in the online manual as well.
<p>
The style of the tabs can be changed through <i>GUI settings</i> -
<i>Appearance</i> - <i>Module dialog style</i>. Note that the style appearance
depends on the platform and some styles might be more suitable
for different platforms.
<center>
<img src="wxGUI_modules_style_left.png" border="0" alt="dialog style left">
<img src="wxGUI_modules_style_top.png" border="0" alt="dialog style top">
<br>
Figure: Example of style "left" and "top" on Ubuntu.
</center>
<h3>Flags</h3>
Module flags are represented as checkboxes with description. There
are three special flags - <i>overwrite</i>, <i>verbose</i> and <i>quiet</i>.
Flags <i>verbose</i> and <i>quiet</i> set the level of verbosity of the module
(how detailed the messages should be).
<center>
<img src="wxGUI_modules_flags.png" border="0" alt="dialog flags">
<br>
</center>
<p>
Modules which output a new map or a new file have the flag <i>overwrite</i>
which must be used when the specified output map or file is already present.
If the map or file of the specified name already exist and <i>overwrite</i>
flag is not used, an error message appears:
<pre>
r.slope.aspect elevation=elevation slope=slope
ERROR: option <slope>: <slope> exists. To overwrite, use the --overwrite flag
</pre>
If using the command instead of GUI, these flags are unlike other flags
prefixed with double dash:
<div class="code"><pre>
r.slope.aspect elevation=elevation slope=slope --overwrite --quiet
</pre></div>
<h3>Current working directory</h3>
Certain modules require a file as input or output.
Either the full path to the file needs to be specified
or a path relative
to the current working directory is enough, for example only the name of the file.
<b>Current working directory</b> is a directory where GRASS would look
for or output files to if the full path is not specified.
By default working directory is user's home folder.
It can be changed in wxGUI menu
<i>Settings</i> - <i>GRASS working environment</i> -
<i>Change working directory</i>,
or by typing <code>cd</code> and pressing Enter in the wxGUI Command console.
If the working directory is changed to a directory where the input files are,
then it is enough to specify just the name of the file instead of the full path.
<p>
This applies to external files such as text files or GeoTiff files.
This does not apply to raster maps, vector maps
and other geospatial data stored in GRASS database
which do not need any path to be specified.
<h3>Special widgets</h3>
For raster, vector or 3D raster input, there is a special
widget which after clicking on the arrow to the right pops up
a list of existing maps from different mapsets.
Selecting a map from the popup list will add it to the entry field.
In case multiple maps can be specified (denoted by <i>[multiple]</i> label),
selecting a map from the popup list will append the map names with
comma in between.
<center>
<img src="wxGUI_modules_widget_selection.png" border="0" alt="widget for selecting maps">
<br>
</center>
<p>
If the input file is supposed to be a text file
(for example color rules in r.colors),
it is possible to type the text in the provided box directly instead
of creating a new file in a text editor and saving it.
A temporary file is created in this case. By pressing the <i>Save as</i>
button, the content of the box is then saved into user specified file,
so that user's workflow can be reproduced later. With <i>Load</i>
button we can display the content of selected file and edit it
directly in the box.
<center>
<img src="wxGUI_modules_widget_file1.png" border="0" alt="widget for input files">
<img src="wxGUI_modules_widget_file2.png" border="0" alt="widget for input files">
<br>
<p> Figure: In the first image, user specified a full path to a file.
In the second image, user typed color rules conveniently
into the box below, however the rules will not be stored permanently.
</center>
<h2>NOTES</h2>
Dialogs are generated automatically based on module interface defined using <a href="g.parser.html">g.parser</a>.
Command line interface can be obtained when running the module with a <i>--help</i>
flag. The options and flags are the same as in the module GUI.
<pre>
r.neighbors --help
Description:
Makes each cell category value a function of the category
values assigned to the cells around it, and stores new cell
values in an output raster map layer.
Keywords:
raster, algebra, statistics, aggregation, neighbor, focal
statistics, filter
Usage:
r.neighbors [-ac] input=name [selection=name]
output=name[,name,...]
[method=string[,string,...]] [size=value] [title=phrase]
[weight=name]
[gauss=value] [quantile=value[,value,...]] [--overwrite]
[--help]
[--verbose] [--quiet] [--ui]
Flags:
-a Do not align output with the input
-c Use circular neighborhood
--o Allow output files to overwrite existing files
--h Print usage summary
--v Verbose module output
--q Quiet module output
--ui Force launching GUI dialog
Parameters:
input Name of input raster map
selection Name of an input raster map to select the
cells which should be processed
output Name for output raster map
method Neighborhood operation
options:
average,median,mode,minimum,maximum,range,stddev,sum,
count,variance,diversity,interspersion,quart1,quart3,
perc90,quantile
default: average
size Neighborhood size
default: 3
title Title for output raster map
weight Text file containing weights
gauss Sigma (in cells) for Gaussian filter
quantile Quantile to calculate for method=quantile
options: 0.0-1.0
</pre>
<h2>SEE ALSO</h2>
<em>
<a href="wxGUI.html">wxGUI</a>,
<a href="wxGUI.components.html">wxGUI components</a>
</em>
<h2>AUTHORS</h2>
GRASS Development Team<br>
manual by Anna Petrasova, OSGeoREL, Faculty of Civil Engineering, Czech Technical University in Prague<br>
Vaclav Petras, OSGeoREL, Faculty of Civil Engineering, Czech Technical University in Prague
|