Adding GRASS Tools

Els mòduls GRASS es poden executar des Eines GRASS de QGIS si QGIS s’ha iniciat des una consola de GRASS o si un joc de mapes GRASS s’ha obert des QGIS. Els mòduls només funcionen amb dades GRASS,

It is easy to modify the menu and add new modules because both the menu and the modules are defined in XML configuration files. Below is described how to write new modules and modify menu tree.

Configuració de mòdul

Fons

The options of each module shown in module’s_*Options_*tab are created according to combination of definition in QGM (QGIS GRASS module) file and options definition in GRASS module or GRASS script — GMO (GRASS module options). Because each option in QGM is linked to one (or more) GMO, it is often useful if not necessary to see GMO. GMO are output by GRASS module if it is run with _*–interface-description_* option, the output is in XML format, for example:

r.to.vect --interface-description

Some GRASS modules have too many options which can be confusing for beginners. In QGM it is possible to define only some of them and possibly set some default values and/or hide some options with certain value. That means that more QGIS-GRASS modules can be defined for each GRASS module. For example the module r.to.vect was divided into three QGIS-GRASS modules with predefined «feature» option. The QGM definition is written in XML format file with extension .qgm, one for each QGIS-GRASS module. Configuration files are stored in _*qgis/src/plugins/grass/modules*_ directory and installed in _*share/qgis/grass/modules*_ directory. The name of the file should start with GRASS module name + a word describing the specific task. For example, the module which extracts vector lines from raster is called r.to.vect.line.qgm.

Aquest és un exemple d’un fitxer de configuració:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE qgisgrassmodule SYSTEM "http://mrcc.com/qgisgrassmodule.dtd">
<qgisgrassmodule label="Generate aspect map from DEM" module="r.slope.aspect">
       <option key="elevation" />
       <option key="aspect" />
</qgisgrassmodule>

atributs de l’etiqueta qgisgrassmodule

  • label — description used in menu tree

  • module — name of GRASS module executable or script.

Option tags

Cadascuna de les etiquetes qgisgrassmodule poden contenir una o més etiquetes opcionals:

  • option — corresponds to GMO parameter tag, example:

<option key="elevation" />
  • flag — corresponds to GMO flag tag, example:

<flag key="o" answer="on" hidden="yes" />
  • field — for vector layers defines attribute field, the option is created as combobox with available fields. For example (v.to.db.qgm):

<field key="column" layer="map" type="integer,double" label="Attribute field" />
  • selection — this is quite interesting and useful type of option. It allows to define list of GRASS vector categories using QGIS interface. Features (and their categories, GRASS feature ID equivalent) can be selected either with “Select Features” tool or in the attribute table. The list of categories is updated dynamically. Example (v.extract.list.qgm):

<selection key="list" layerid="input" label="Cats" />

Common option/flag tag attributes

  • key — name of module option in GMO.

  • answer — default value (overwrites GMO default value); value «on» will switch on a flag.

  • hidden — the option will not appear in the dialog, but module will be run with this option (hidden=»yes»).

  • etiqueta — etiqueta de l’opció

  • advanced — «yes» or «no», default is «no». If set to «yes», the option/flag is add to initially hidden advanced options panel and «Show advanced options >>» button is shown under simple (basic,standard) options

  • versió_mín — versió mínima de GRASS on és vàlid aquest senyalador/opció

  • versió_màx — versió màxima de GRASS on és vàlid aquest senyalador/opció

Option tag specific attributes

  • typeoption — this option can be used with vector layer to define the name of vector input type option, when module is run, the type of selected vector layer will be used for that option. For example (v.overlay.or.qgm):

    <option key="ainput" typeoption="atype" layeroption="alayer" typemask="area,line" />
    

    It means that if a layer is selected from combobox of this option the _*atype*_ option is automaticaly set to the layer’s type, and thus _*atype*_ does not have to be added at all.

  • layeroption — equivalent of typeoption for layer.

  • typmask — for vector input option defines allowed types. Only the layers of one of defined type are displayed in input. See v.overlay.or.qgm for example.

Field tag specific attributes

  • layer — the key attribute of the option which defines the vector this field should depend on

  • type — defines types of attribute fields which should be added to the field combobox, for example

    <field key="column" layer="map" type="integer,double" label="Attribute field" />
    

    It means that only the attribute fields of type in integer and double precision will appear in combobox. See v.what.vect for example (2 different vectors).

Behind the scene

The idea QGIS-GRASS modules implementation is to use maximum information from GMO and only simplify the interface. Here are described some rules how information from GMO are used and in which order if not all of them are defined in GMO.

  • label — if label attribute is defined in QGM it is used as option label, if it is not defined GMO option label tag is used and if it is not defined GMO option description tag is used

  • tooltip — (appeares on mouseover the option) if label is defined (either in QGM or GMO) and description is defined in GMO (thus label and description differ) the GMO description tag is used for tooltip

  • multiple values label — if an option is type multiple with defined list of possible values (like upload option of v.distance) and description tag is defined for value tag in GMO then it is used as checkbox label

Imatge

Each module must be represented also by a picture/icon which symbolizes the modules functionality. The pictures are also stored in plugins/grass/modules as SVG (.svg) or PNG (.png) files.

Currently there are supported 3 schemas for the picture:

  • 1 imatge

  • 2 pictures — QGIS will create icon: 1 -> 2

  • 3 pictures — QGIS will create icon: 1 + 2 -> 3

The name of the picture starts with QGIS-GRASS module name to which is appended picture number, for example: v.overlay.and.1.svg, v.overlay.and.2.svg, v.overlay.and.3.svg. It is possible to combine SVG and PNG pictures.

SVG and PNG pictures can be generated from QGIS using Map Composer. The size of PNG images should be larger than the expected icon size, because it is expected to be later used in automatically generated documentation, where pictures will be used in larger size.

Scripts GRASS QGIS

Because it can take long time until a new script is added to stable GRASS release and because some scripts can be useful only for QGIS GUI interface it is possible to add a “GRASS” script to QGIS. The scripts should follow general requirements for GRASS scripts and they are located in qgis/src/plugins/grass/scripts.

Normes generals pels nous mòduls

GRASS Tools are intended mostly for beginners and not very experienced users. The basic rules are:

  • Each module should have 3 or less options; if it seems to be necessary to add more options, it should be discussed beforehand

  • Module definition should be robust so that it doesn’t allow a user to run a module with wrong option. If there is not yet support for certain type of option the module should not be added to menu

Normes específiques per les descripcions de mòduls

  • Eviteu la 3a persona dels verbs, p.e. «Exporta ràster» en comptes de «Exporti ràster»

  • Eviteu, si es pot, «mapa», «capa» i «fitxer», p.e. «Exporta ràster» en comptes de «Exporta capa del mapa ràster»

  • Estalvieu esment «GRASS» no necessari, p.e. «Exporta ràster» en comptes de «Exporta ràster GRASS»

  • Avoid «a|an», e.g. «Export raster» instead of «Exports a raster»

  • Avoid padding words, e.g. «Export raster» instead of «Allows the export of a raster»

  • Avoid «Convert»: use «Export» or «Import» instead. Convert should be used for internal GRASS conversions (e.g. from raster to vector)

  • Acronyms should be upper case, e.g. ASCII instead of ascii

  • Si teniu dubtes, mireu si hi han connectors semblants per mantenir la consistència

Opcions que actualment no es poden utilitzar

Tècnicament, qualsevol opció és pot usar. Altrament, alguns tipus d’opcions encara no estan ben implementades, per exemple les que depenen d’una altra opció. Tot seguit hi ha una llista d’opcions (segurament incompleta) que encara no estan ben suportades i que actualment no s’haurien d’utilitzar:

  • OGR input dsn/layer (v.in.ogr)

Mòduls que es poden afegir

Most modules have been added. If you need additional ones, please write to the qgis development mailing list, and list hereafter the modules you think are most important to be added.

You should post the name of a new QGIS-GRASS module, the name of the GRASS module and the options which you want to use. For example:

r.to.vect.area: r.to.vect input output feature=area

See also here for discussion on GRASS-QGIS relevant module list.

Modules to be deprecated

List hereafter the modules who should be removed, with a rationale for this suggestion (e.g.: some modules related to projections are difficult to understand, and of no general use). Please note: some modules have not been thoroughly tested. Please test them, and if you find any issue report it to the redmine (better still: fix it yourself and send the patch).