File: g.search.modules.html

package info (click to toggle)
grass 8.4.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 277,040 kB
  • sloc: ansic: 460,798; python: 227,732; cpp: 42,026; sh: 11,262; makefile: 7,007; xml: 3,637; sql: 968; lex: 520; javascript: 484; yacc: 450; asm: 387; perl: 157; sed: 25; objc: 6; ruby: 4
file content (83 lines) | stat: -rw-r--r-- 2,381 bytes parent folder | download | duplicates (3)
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
<h2>DESCRIPTION</h2>

<em>g.search.module</em> searches for given keyword in GRASS GIS modules name,
description, keywords and optionally manpages, too. Also installed addons are
considered in the search.

<h2>NOTES</h2>

Multiple keywords may be specified, <em>g.search.modules</em> will search for
all of them.

<h2>EXAMPLES</h2>

Search all modules, where keywords <em>buffer</em> OR <em>clip</em> can be found:

<div class="code"><pre>
g.search.modules keyword=buffer,clip

r.circle
    keywords: raster,buffer,geometry,circle
    description: Creates a raster map containing concentric rings around a
                 given point.

r.buffer.lowmem
    keywords: raster,buffer
    description: Creates a raster map showing buffer zones surrounding cells
                 that contain non-NULL category values. This is the low-
                 memory alternative to the classic r.buffer module.

r.buffer
    keywords: raster,buffer
    description: Creates a raster map showing buffer zones surrounding cells
                 that contain non-NULL category values.
</pre></div>

<p>
Search all modules, where keywords <em>overlay</em> AND <em>clip</em> can be
found with some fancy terminal output (not shown here):

<div class="code"><pre>
g.search.modules keyword=clip,overlay -a -c

v.clip
    keywords: vector,clip,area
    description: Extracts features of input map which overlay features
                 of clip map.

v.overlay
    keywords: vector,geometry,spatial
              query,clip,difference,intersection,union
    description: Overlays two vector maps offering clip, intersection,
                 difference, symmetrical difference, union operators.
</pre></div>

<p>
Search in manual pages as well:

<div class="code"><pre>
g.search.modules -m keyword=kapri

db.execute
    keywords: database,attribute table,SQL
    description: Executes any SQL statement. For SELECT statements use
                 'db.select'.

db.select
    keywords: database,attribute table,SQL
    description: Selects data from attribute table. Performs SQL query
                 statement(s).
</pre></div>

<h2>SEE ALSO</h2>

<em>
  <a href="g.manual.html">g.manual</a>
  <!-- <a href="g.search.map.html">g.search.map</a>, -->
</em>

<h2>AUTHORS</h2>

Jachym Cepicky, OpenGeoLabs s.r.o., Czech Republic: original author
<br>
Anika Bettge, mundialis, Germany: addon search added