1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- <h2>DESCRIPTION</h2>
- <em>g.search.module</em> searches for given keyword in GRASS modules name,
- description, keywords and optionally manpages too.
- <h2>NOTES</h2>
- There can be more keywords, <em>g.search.modules</em> will search for each of them
- <h2>EXAMPLE</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>
- Search all modules, where keywords <em>overlay</em> AND <em>clip</em> can be
- found with some fancy terminal output
- <div class="code"><pre>
- g.search.modules keyword=clip,overlay -a -c
- v.overlay
- keywords: vector,geometry,spatial query,intersection,union,clip
- description: Overlays two vector maps.;
- </pre></div>
- Search in manual pages too
- <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
- <p>
- <i>Last changed: $Date$</i>
|