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
|