g.search.modules.html 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <h2>DESCRIPTION</h2>
  2. <em>g.search.module</em> searches for given keyword in GRASS modules name,
  3. description, keywords and optionally manpages too.
  4. <h2>NOTES</h2>
  5. There can be more keywords, <em>g.search.modules</em> will search for each of them
  6. <h2>EXAMPLE</h2>
  7. Search all modules, where keywords <em>buffer</em> OR <em>clip</em> can be found
  8. <div class="code"><pre>
  9. g.search.modules keyword=buffer,clip
  10. r.circle
  11. keywords: raster,buffer,geometry,circle
  12. description: Creates a raster map containing concentric rings around a
  13. given point.
  14. r.buffer.lowmem
  15. keywords: raster,buffer
  16. description: Creates a raster map showing buffer zones surrounding cells
  17. that contain non-NULL category values. This is the low-
  18. memory alternative to the classic r.buffer module.
  19. r.buffer
  20. keywords: raster,buffer
  21. description: Creates a raster map showing buffer zones surrounding cells
  22. that contain non-NULL category values.
  23. </pre></div>
  24. Search all modules, where keywords <em>overlay</em> AND <em>clip</em> can be
  25. found with some fancy terminal output
  26. <div class="code"><pre>
  27. g.search.modules keyword=clip,overlay -a -c
  28. v.overlay
  29. keywords: vector,geometry,spatial query,intersection,union,clip
  30. description: Overlays two vector maps.;
  31. </pre></div>
  32. Search in manual pages too
  33. <div class="code"><pre>
  34. g.search.modules -m keyword=kapri
  35. db.execute
  36. keywords: database,attribute table,SQL
  37. description: Executes any SQL statement. For SELECT statements use
  38. 'db.select'.
  39. db.select
  40. keywords: database,attribute table,SQL
  41. description: Selects data from attribute table. Performs SQL query
  42. statement(s).
  43. </pre></div>
  44. <h2>SEE ALSO</h2>
  45. <em>
  46. <a href="g.manual.html">g.manual</a>
  47. <!-- <a href="g.search.map.html">g.search.map</a>, -->
  48. </em>
  49. <h2>AUTHORS</h2>
  50. Jachym Cepicky, OpenGeoLabs s.r.o., Czech Republic
  51. <p>
  52. <i>Last changed: $Date$</i>