.TH wxGUI.modules 1grass "" "GRASS 7.2.0" "Grass User's Manual" .SH wxGUI Module dialogs .SH DESCRIPTION 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. .PP 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. .SS Tabs Module parameters and flags are organized in tabs. Their names can depend on a module, however every module has \fICommand output\fR tab where the progress can be observed, and the module output including text results or warnings are printed. The last \fIManual\fR tab contains description of module\(cqs parameters and examples. The same information can be found in the online manual as well. .PP The style of the tabs can be changed through \fIGUI settings\fR \- \fIAppearance\fR \- \fIModule dialog style\fR. Note that the style appearance depends on the platform and some styles might be more suitable for different platforms. .br Figure: Example of style \(dqleft\(dq and \(dqtop\(dq on Ubuntu. .SS Flags Module flags are represented as checkboxes with description. There are three special flags \- \fIoverwrite\fR, \fIverbose\fR and \fIquiet\fR. Flags \fIverbose\fR and \fIquiet\fR set the level of verbosity of the module (how detailed the messages should be). .br .PP Modules which output a new map or a new file have the flag \fIoverwrite\fR 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 \fIoverwrite\fR flag is not used, an error message appears: .br .nf \fC r.slope.aspect elevation=elevation slope=slope ERROR: option : exists. To overwrite, use the \-\-overwrite flag \fR .fi If using the command instead of GUI, these flags are unlike other flags prefixed with double dash: .br .nf \fC r.slope.aspect elevation=elevation slope=slope \-\-overwrite \-\-quiet \fR .fi .SS Current working directory 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. \fBCurrent working directory\fR 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\(cqs home folder. It can be changed in wxGUI menu \fISettings\fR \- \fIGRASS working environment\fR \- \fIChange working directory\fR, or by typing cd 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. .PP 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. .SS Special widgets 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 \fI[multiple]\fR label), selecting a map from the popup list will append the map names with comma in between. .br .PP 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 \fISave as\fR button, the content of the box is then saved into user specified file, so that user\(cqs workflow can be reproduced later. With \fILoad\fR button we can display the content of selected file and edit it directly in the box. .br .PP 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. .SH NOTES Dialogs are generated automatically based on module interface defined using g.parser. Command line interface can be obtained when running the module with a \fI\-\-help\fR flag. The options and flags are the same as in the module GUI. .br .nf \fC 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 \fR .fi .SH SEE ALSO \fI wxGUI .br wxGUI components \fR .SH AUTHORS 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 .br .PP \fI$Date: 2016\-04\-09 18:43:25 +0200 (Sat, 09 Apr 2016) $\fR .SH SOURCE CODE .PP Available at: wxGUI Module dialogs source code (history) .PP Main index | wxGUI index | Topics index | Keywords index | Graphical index | Full index .PP © 2003\-2016 GRASS Development Team, GRASS GIS 7.2.0 Reference Manual