g.search.modules.html 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. <h2>DESCRIPTION</h2>
  2. <em>g.search.module</em> searches for given keyword in GRASS GIS modules name,
  3. description, keywords and optionally manpages, too. Also installed addons are
  4. considered in the search.
  5. <h2>NOTES</h2>
  6. Multiple keywords may be specified, <em>g.search.modules</em> will search for
  7. all of them.
  8. <h2>EXAMPLES</h2>
  9. Search all modules, where keywords <em>buffer</em> OR <em>clip</em> can be found:
  10. <div class="code"><pre>
  11. g.search.modules keyword=buffer,clip
  12. r.circle
  13. keywords: raster,buffer,geometry,circle
  14. description: Creates a raster map containing concentric rings around a
  15. given point.
  16. r.buffer.lowmem
  17. keywords: raster,buffer
  18. description: Creates a raster map showing buffer zones surrounding cells
  19. that contain non-NULL category values. This is the low-
  20. memory alternative to the classic r.buffer module.
  21. r.buffer
  22. keywords: raster,buffer
  23. description: Creates a raster map showing buffer zones surrounding cells
  24. that contain non-NULL category values.
  25. </pre></div>
  26. <p>
  27. Search all modules, where keywords <em>overlay</em> AND <em>clip</em> can be
  28. found with some fancy terminal output (not shown here):
  29. <div class="code"><pre>
  30. g.search.modules keyword=clip,overlay -a -c
  31. v.clip
  32. keywords: vector,clip,area
  33. description: Extracts features of input map which overlay features
  34. of clip map.
  35. v.overlay
  36. keywords: vector,geometry,spatial
  37. query,clip,difference,intersection,union
  38. description: Overlays two vector maps offering clip, intersection,
  39. difference, symmetrical difference, union operators.
  40. </pre></div>
  41. <p>
  42. Search in manual pages as well:
  43. <div class="code"><pre>
  44. g.search.modules -m keyword=kapri
  45. db.execute
  46. keywords: database,attribute table,SQL
  47. description: Executes any SQL statement. For SELECT statements use
  48. 'db.select'.
  49. db.select
  50. keywords: database,attribute table,SQL
  51. description: Selects data from attribute table. Performs SQL query
  52. statement(s).
  53. </pre></div>
  54. <h2>SEE ALSO</h2>
  55. <em>
  56. <a href="g.manual.html">g.manual</a>
  57. <!-- <a href="g.search.map.html">g.search.map</a>, -->
  58. </em>
  59. <h2>AUTHORS</h2>
  60. Jachym Cepicky, OpenGeoLabs s.r.o., Czech Republic: original author
  61. <br>
  62. Anika Bettge, mundialis, Germany: addon search added