menudata.xml 146 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429
  1. <menudata>
  2. <menubar>
  3. <menu>
  4. <label>&amp;File</label>
  5. <items>
  6. <menu>
  7. <label>Workspace</label>
  8. <items>
  9. <menuitem>
  10. <label>New</label>
  11. <help>Create new workspace</help>
  12. <handler>OnWorkspaceNew</handler>
  13. <shortcut>Ctrl+N</shortcut>
  14. <id>ID_NEW</id>
  15. </menuitem>
  16. <menuitem>
  17. <label>Open</label>
  18. <help>Load workspace from file</help>
  19. <handler>OnWorkspaceOpen</handler>
  20. <shortcut>Ctrl+O</shortcut>
  21. <id>ID_OPEN</id>
  22. </menuitem>
  23. <menuitem>
  24. <label>Save</label>
  25. <help>Save workspace</help>
  26. <handler>OnWorkspaceSave</handler>
  27. <shortcut>Ctrl+S</shortcut>
  28. <id>ID_SAVE</id>
  29. </menuitem>
  30. <menuitem>
  31. <label>Save as</label>
  32. <help>Save workspace to file</help>
  33. <handler>OnWorkspaceSaveAs</handler>
  34. <id>ID_SAVEAS</id>
  35. </menuitem>
  36. <menuitem>
  37. <label>Close</label>
  38. <help>Close workspace file</help>
  39. <handler>OnWorkspaceClose</handler>
  40. <id>ID_CLOSE</id>
  41. </menuitem>
  42. <separator />
  43. <menuitem>
  44. <label>Load GRC file (Tcl/Tk GUI)</label>
  45. <help>Load map layers from GRC file to layer tree</help>
  46. <handler>OnWorkspaceLoadGrcFile</handler>
  47. </menuitem>
  48. </items>
  49. </menu>
  50. <menu>
  51. <label>Map display</label>
  52. <items>
  53. <menuitem>
  54. <label>Add raster</label>
  55. <help>Add raster map layer to current display</help>
  56. <handler>OnAddRaster</handler>
  57. <shortcut>Ctrl+Shift+R</shortcut>
  58. </menuitem>
  59. <menuitem>
  60. <label>Add vector</label>
  61. <help>Add vector map layer to current display</help>
  62. <handler>OnAddVector</handler>
  63. <shortcut>Ctrl+Shift+V</shortcut>
  64. </menuitem>
  65. <menuitem>
  66. <label>Add multiple rasters or vectors</label>
  67. <help>Add multiple raster or vector map layers to current display</help>
  68. <handler>OnAddMaps</handler>
  69. <shortcut>Ctrl+Shift+L</shortcut>
  70. </menuitem>
  71. <separator />
  72. <menuitem>
  73. <label>New map display window</label>
  74. <help>Open new map display window</help>
  75. <handler>OnNewDisplay</handler>
  76. </menuitem>
  77. <menuitem>
  78. <label>Close current map display window</label>
  79. <help>Close current map display window</help>
  80. <handler>OnDisplayClose</handler>
  81. <shortcut>Ctrl+W</shortcut>
  82. </menuitem>
  83. <menuitem>
  84. <label>Close all open map display windows</label>
  85. <help>Close all open map display windows</help>
  86. <handler>OnDisplayCloseAll</handler>
  87. </menuitem>
  88. </items>
  89. </menu>
  90. <separator />
  91. <menu>
  92. <label>Import raster data</label>
  93. <items>
  94. <menuitem>
  95. <label>Common formats import</label>
  96. <help>Import raster data into a GRASS map layer using GDAL.</help>
  97. <keywords>raster,import</keywords>
  98. <handler>OnImportGdalLayers</handler>
  99. <command>r.in.gdal</command>
  100. </menuitem>
  101. <separator />
  102. <menuitem>
  103. <label>ASCII x,y,z point import and gridding</label>
  104. <help>Create a raster map from an assemblage of many coordinates using univariate statistics.</help>
  105. <keywords>raster,import,LIDAR</keywords>
  106. <handler>OnMenuCmd</handler>
  107. <command>r.in.xyz</command>
  108. </menuitem>
  109. <menuitem>
  110. <label>ASCII grid import</label>
  111. <help>Converts a GRASS ASCII raster file to binary raster map.</help>
  112. <keywords>raster,import,conversion,ascii</keywords>
  113. <handler>OnMenuCmd</handler>
  114. <command>r.in.ascii</command>
  115. </menuitem>
  116. <menuitem>
  117. <label>ASCII polygons, lines, and point import</label>
  118. <help>Creates raster maps from ASCII polygon/line/point data files.</help>
  119. <keywords>raster,import</keywords>
  120. <handler>OnMenuCmd</handler>
  121. <command>r.in.poly</command>
  122. </menuitem>
  123. <separator />
  124. <menuitem>
  125. <label>Raw binary array import</label>
  126. <help>Import a binary raster file into a GRASS raster map layer.</help>
  127. <keywords>raster,import</keywords>
  128. <handler>OnMenuCmd</handler>
  129. <command>r.in.bin</command>
  130. </menuitem>
  131. <menuitem>
  132. <label>ESRI ASCII grid import</label>
  133. <help>Converts an ESRI ARC/INFO ascii raster file (GRID) into a GRASS raster map.</help>
  134. <keywords>raster,import</keywords>
  135. <handler>OnMenuCmd</handler>
  136. <command>r.in.arc</command>
  137. </menuitem>
  138. <menuitem>
  139. <label>GRIDATB.FOR import</label>
  140. <help>Imports GRIDATB.FOR map file (TOPMODEL) into GRASS raster map</help>
  141. <keywords>raster,import</keywords>
  142. <handler>OnMenuCmd</handler>
  143. <command>r.in.gridatb</command>
  144. </menuitem>
  145. <menuitem>
  146. <label>Matlab 2D array import</label>
  147. <help>Imports a binary MAT-File(v4) to a GRASS raster.</help>
  148. <keywords>raster,import</keywords>
  149. <handler>OnMenuCmd</handler>
  150. <command>r.in.mat</command>
  151. </menuitem>
  152. <menuitem>
  153. <label>PNG import</label>
  154. <help>Imports non-georeferenced PNG format image.</help>
  155. <keywords>raster,import,png</keywords>
  156. <handler>OnMenuCmd</handler>
  157. <command>r.in.png</command>
  158. </menuitem>
  159. <menuitem>
  160. <label>SPOT NDVI import</label>
  161. <help>Imports SPOT VGT NDVI data into a raster map.</help>
  162. <keywords>imagery,import</keywords>
  163. <handler>OnMenuCmd</handler>
  164. <command>i.in.spotvgt</command>
  165. </menuitem>
  166. <menuitem>
  167. <label>SRTM HGT import</label>
  168. <help>Imports SRTM HGT files into raster map.</help>
  169. <keywords>raster,import</keywords>
  170. <handler>OnMenuCmd</handler>
  171. <command>r.in.srtm</command>
  172. </menuitem>
  173. <menuitem>
  174. <label>Terra ASTER HDF import</label>
  175. <help>Georeference, rectify, and import Terra-ASTER imagery and relative DEMs using gdalwarp.</help>
  176. <keywords>raster,import,imagery,Terra-ASTER</keywords>
  177. <handler>OnMenuCmd</handler>
  178. <command>r.in.aster</command>
  179. </menuitem>
  180. <menuitem>
  181. <label>LAS LiDAR points import</label>
  182. <help>Create a raster map from LAS LiDAR points using univariate statistics.</help>
  183. <keywords>raster,import,LIDAR</keywords>
  184. <handler>OnMenuCmd</handler>
  185. <command>r.in.lidar</command>
  186. </menuitem>
  187. <menuitem>
  188. <label>WMS import</label>
  189. <help>Download and import data from WMS servers.</help>
  190. <keywords>raster,import,wms</keywords><handler>OnImportWMS</handler>
  191. <command>r.in.wms</command>
  192. </menuitem>
  193. <separator />
  194. <menuitem>
  195. <label>Unpack raster map</label>
  196. <help>Unpacks a raster map packed with r.pack.</help>
  197. <keywords>raster,import,copying</keywords><handler>OnMenuCmd</handler>
  198. <command>r.unpack</command>
  199. </menuitem>
  200. </items>
  201. </menu>
  202. <menu>
  203. <label>Import vector data</label>
  204. <items>
  205. <menuitem>
  206. <label>Common import formats</label>
  207. <help>Converts vector layers into a GRASS vector map using OGR.</help>
  208. <keywords>vector,import</keywords>
  209. <handler>OnImportOgrLayers</handler>
  210. <command>v.in.ogr</command>
  211. </menuitem>
  212. <separator />
  213. <menuitem>
  214. <label>ASCII points or GRASS ASCII format</label>
  215. <help>Creates a vector map from an ASCII points file or ASCII vector file.</help>
  216. <keywords>vector,import</keywords>
  217. <handler>OnMenuCmd</handler>
  218. <command>v.in.ascii</command>
  219. </menuitem>
  220. <menuitem>
  221. <label>ASCII points as a vector lines</label>
  222. <help>Imports ASCII x,y[,z] coordinates as a series of lines.</help>
  223. <keywords>vector,import</keywords>
  224. <handler>OnMenuCmd</handler>
  225. <command>v.in.lines</command>
  226. </menuitem>
  227. <menuitem>
  228. <label>Historical GRASS vector import</label>
  229. <help>Imports older versions of GRASS vector maps.</help>
  230. <keywords>vector,import,conversion</keywords>
  231. <handler>OnMenuCmd</handler>
  232. <command>v.convert</command>
  233. </menuitem>
  234. <menuitem>
  235. <label>Historical GRASS vector import (all maps)</label>
  236. <help>Converts all older versions of GRASS vector maps in current mapset to current format.</help>
  237. <keywords>vector,import,conversion</keywords>
  238. <handler>OnMenuCmd</handler>
  239. <command>v.convert.all</command>
  240. </menuitem>
  241. <separator />
  242. <menuitem>
  243. <label>DXF import</label>
  244. <help>Converts files in DXF format to GRASS vector map format.</help>
  245. <keywords>vector,import,dxf</keywords>
  246. <handler>OnImportDxfFile</handler>
  247. <command>v.in.dxf</command>
  248. </menuitem>
  249. <separator />
  250. <menuitem>
  251. <label>WFS</label>
  252. <help>Imports GetFeature from a WFS server.</help>
  253. <keywords>vector,import,wfs</keywords>
  254. <handler>OnMenuCmd</handler>
  255. <command>v.in.wfs</command>
  256. </menuitem>
  257. <separator />
  258. <menuitem>
  259. <label>ESRI e00 import</label>
  260. <help>Imports E00 file into a vector map.</help>
  261. <keywords>vector,import</keywords>
  262. <handler>OnMenuCmd</handler>
  263. <command>v.in.e00</command>
  264. </menuitem>
  265. <menuitem>
  266. <label>GPS data import</label>
  267. <help>Import waypoints, routes, and tracks from a GPS receiver or many common GPS file formats.</help>
  268. <keywords>vector,import,GPS</keywords>
  269. <handler>OnMenuCmd</handler>
  270. <command>v.in.gps</command>
  271. </menuitem>
  272. <menuitem>
  273. <label>Geonames import</label>
  274. <help>Imports geonames.org country files into a vector points map.</help>
  275. <keywords>vector,import,gazetteer</keywords>
  276. <handler>OnMenuCmd</handler>
  277. <command>v.in.geonames</command>
  278. </menuitem>
  279. <menuitem>
  280. <label>GEOnet import</label>
  281. <help>Imports US-NGA GEOnet Names Server (GNS) country files into a GRASS vector points map.</help>
  282. <keywords>vector,import,gazetteer</keywords>
  283. <handler>OnMenuCmd</handler>
  284. <command>v.in.gns</command>
  285. </menuitem>
  286. <menuitem>
  287. <label>Matlab array or Mapgen format import</label>
  288. <help>Imports Mapgen or Matlab-ASCII vector maps into GRASS.</help>
  289. <keywords>vector,import</keywords>
  290. <handler>OnMenuCmd</handler>
  291. <command>v.in.mapgen</command>
  292. </menuitem>
  293. <menuitem>
  294. <label>LAS LiDAR points import</label>
  295. <help>Converts LAS LiDAR point clouds to a GRASS vector map with libLAS.</help>
  296. <keywords>vector,import,LIDAR</keywords>
  297. <handler>OnMenuCmd</handler>
  298. <command>v.in.lidar</command>
  299. </menuitem>
  300. </items>
  301. </menu>
  302. <menu>
  303. <label>Import 3D raster data</label>
  304. <items>
  305. <menuitem>
  306. <label>ASCII 3D import</label>
  307. <help>Converts a 3D ASCII raster text file into a (binary) 3D raster map.</help>
  308. <keywords>raster3d,voxel,import</keywords>
  309. <handler>OnMenuCmd</handler>
  310. <command>r3.in.ascii</command>
  311. </menuitem>
  312. <menuitem>
  313. <label>Raw binary array 3D import</label>
  314. <help>Imports a binary raster file into a GRASS 3D raster map.</help>
  315. <keywords>raster3d,import</keywords>
  316. <handler>OnMenuCmd</handler>
  317. <command>r3.in.bin</command>
  318. </menuitem>
  319. <menuitem>
  320. <label>Vis5D import</label>
  321. <help>Import 3-dimensional Vis5D files.</help>
  322. <keywords>raster3d,voxel</keywords>
  323. <handler>OnMenuCmd</handler>
  324. <command>r3.in.v5d</command>
  325. </menuitem>
  326. </items>
  327. </menu>
  328. <menu>
  329. <label>Import database table</label>
  330. <items>
  331. <menuitem>
  332. <label>Multiple import formats using OGR</label>
  333. <help>Imports attribute tables in various formats.</help>
  334. <keywords>database,attribute table</keywords>
  335. <handler>OnMenuCmd</handler>
  336. <command>db.in.ogr</command>
  337. </menuitem>
  338. </items>
  339. </menu>
  340. <separator />
  341. <menu>
  342. <label>Export raster map</label>
  343. <items>
  344. <menuitem>
  345. <label>Common export formats</label>
  346. <help>Exports GRASS raster maps into GDAL supported formats.</help>
  347. <keywords>raster,export</keywords>
  348. <handler>OnMenuCmd</handler>
  349. <command>r.out.gdal</command>
  350. </menuitem>
  351. <separator />
  352. <menuitem>
  353. <label>ASCII grid export</label>
  354. <help>Converts a raster map layer into a GRASS ASCII text file.</help>
  355. <keywords>raster,export</keywords>
  356. <handler>OnMenuCmd</handler>
  357. <command>r.out.ascii</command>
  358. </menuitem>
  359. <menuitem>
  360. <label>ASCII x,y,z points export</label>
  361. <help>Exports a raster map to a text file as x,y,z values based on cell centers.</help>
  362. <keywords>raster,export</keywords>
  363. <handler>OnMenuCmd</handler>
  364. <command>r.out.xyz</command>
  365. </menuitem>
  366. <separator />
  367. <menuitem>
  368. <label>ESRI ASCII grid export</label>
  369. <help>Converts a raster map layer into an ESRI ARCGRID file.</help>
  370. <keywords>raster,export</keywords>
  371. <handler>OnMenuCmd</handler>
  372. <command>r.out.arc</command>
  373. </menuitem>
  374. <menuitem>
  375. <label>GRIDATB.FOR export</label>
  376. <help>Exports GRASS raster map to GRIDATB.FOR map file (TOPMODEL).</help>
  377. <keywords>raster,export</keywords>
  378. <handler>OnMenuCmd</handler>
  379. <command>r.out.gridatb</command>
  380. </menuitem>
  381. <menuitem>
  382. <label>Matlab 2D array export</label>
  383. <help>Exports a GRASS raster to a binary MAT-File.</help>
  384. <keywords>raster,export</keywords>
  385. <handler>OnMenuCmd</handler>
  386. <command>r.out.mat</command>
  387. </menuitem>
  388. <separator />
  389. <menuitem>
  390. <label>Raw binary array export</label>
  391. <help>Exports a GRASS raster to a binary array.</help>
  392. <keywords>raster,export</keywords>
  393. <handler>OnMenuCmd</handler>
  394. <command>r.out.bin</command>
  395. </menuitem>
  396. <separator />
  397. <menuitem>
  398. <label>MPEG-1 export</label>
  399. <help>Converts raster map series to MPEG movie.</help>
  400. <keywords>raster,export,animation</keywords>
  401. <handler>OnMenuCmd</handler>
  402. <command>r.out.mpeg</command>
  403. </menuitem>
  404. <menuitem>
  405. <label>PNG export</label>
  406. <help>Export a GRASS raster map as a non-georeferenced PNG image.</help>
  407. <keywords>raster,export,png</keywords>
  408. <handler>OnMenuCmd</handler>
  409. <command>r.out.png</command>
  410. </menuitem>
  411. <menuitem>
  412. <label>PPM export</label>
  413. <help>Converts a GRASS raster map to a PPM image file.</help>
  414. <keywords>raster,export</keywords>
  415. <handler>OnMenuCmd</handler>
  416. <command>r.out.ppm</command>
  417. </menuitem>
  418. <menuitem>
  419. <label>PPM from RGB export</label>
  420. <help>Converts 3 GRASS raster layers (R,G,B) to a PPM image file.</help>
  421. <keywords>raster,export</keywords>
  422. <handler>OnMenuCmd</handler>
  423. <command>r.out.ppm3</command>
  424. </menuitem>
  425. <menuitem>
  426. <label>POV-Ray export</label>
  427. <help>Converts a raster map layer into a height-field file for POV-Ray.</help>
  428. <keywords>raster,export</keywords>
  429. <handler>OnMenuCmd</handler>
  430. <command>r.out.pov</command>
  431. </menuitem>
  432. <menuitem>
  433. <label>TIFF export</label>
  434. <help>Exports a GRASS raster map to a 8/24bit TIFF image file.</help>
  435. <keywords>raster,export</keywords>
  436. <handler>OnMenuCmd</handler>
  437. <command>r.out.tiff</command>
  438. </menuitem>
  439. <menuitem>
  440. <label>VRML export</label>
  441. <help>Exports a raster map to the Virtual Reality Modeling Language (VRML).</help>
  442. <keywords>raster,export,VRML</keywords>
  443. <handler>OnMenuCmd</handler>
  444. <command>r.out.vrml</command>
  445. </menuitem>
  446. <menuitem>
  447. <label>VTK export</label>
  448. <help>Converts raster maps into the VTK-ASCII format.</help>
  449. <keywords>raster,export</keywords>
  450. <handler>OnMenuCmd</handler>
  451. <command>r.out.vtk</command>
  452. </menuitem>
  453. <separator />
  454. <menuitem>
  455. <label>Pack raster map</label>
  456. <help>Packs up a raster map and support files for copying.</help>
  457. <keywords>raster,export,copying</keywords><handler>OnMenuCmd</handler>
  458. <command>r.pack</command>
  459. </menuitem>
  460. </items>
  461. </menu>
  462. <menu>
  463. <label>Export vector map</label>
  464. <items>
  465. <menuitem>
  466. <label>Common export formats</label>
  467. <help>Converts a vector map to any of the supported OGR vector formats.</help>
  468. <keywords>vector,export,ogr</keywords>
  469. <handler>OnMenuCmd</handler>
  470. <command>v.out.ogr</command>
  471. </menuitem>
  472. <separator />
  473. <menuitem>
  474. <label>ASCII points or GRASS ASCII vector export</label>
  475. <help>Exports a vector map to a GRASS ASCII vector representation.</help>
  476. <keywords>vector,export,ascii</keywords>
  477. <handler>OnMenuCmd</handler>
  478. <command>v.out.ascii</command>
  479. </menuitem>
  480. <menuitem>
  481. <label>DXF export</label>
  482. <help>Exports vector map to DXF file format.</help>
  483. <keywords>vector,export</keywords>
  484. <handler>OnMenuCmd</handler>
  485. <command>v.out.dxf</command>
  486. </menuitem>
  487. <menuitem>
  488. <label>Multiple GPS export formats using GPSBabel</label>
  489. <help>Exports a vector map to a GPS receiver or file format supported by GPSBabel.</help>
  490. <keywords>vector,export,GPS</keywords>
  491. <handler>OnMenuCmd</handler>
  492. <command>v.out.gps</command>
  493. </menuitem>
  494. <menuitem>
  495. <label>PostGIS export</label>
  496. <help>Exports a vector map layer to PostGIS feature table.</help>
  497. <keywords>vector,export,PostGIS,simple features,topology</keywords>
  498. <handler>OnMenuCmd</handler>
  499. <command>v.out.postgis</command>
  500. </menuitem>
  501. <menuitem>
  502. <label>POV-Ray export</label>
  503. <help>Converts GRASS x,y,z points to POV-Ray x,z,y format.</help>
  504. <keywords>vector,export</keywords>
  505. <handler>OnMenuCmd</handler>
  506. <command>v.out.pov</command>
  507. </menuitem>
  508. <menuitem>
  509. <label>SVG export</label>
  510. <help>Exports a vector map to SVG file.</help>
  511. <keywords>vector,export</keywords>
  512. <handler>OnMenuCmd</handler>
  513. <command>v.out.svg</command>
  514. </menuitem>
  515. <menuitem>
  516. <label>VTK export</label>
  517. <help>Converts a vector map to VTK ASCII output.</help>
  518. <keywords>vector,export</keywords>
  519. <handler>OnMenuCmd</handler>
  520. <command>v.out.vtk</command>
  521. </menuitem>
  522. </items>
  523. </menu>
  524. <menu>
  525. <label>Export 3D raster maps</label>
  526. <items>
  527. <menuitem>
  528. <label>ASCII 3D export</label>
  529. <help>Converts a 3D raster map layer into a ASCII text file.</help>
  530. <keywords>raster3d,voxel,export</keywords>
  531. <handler>OnMenuCmd</handler>
  532. <command>r3.out.ascii</command>
  533. </menuitem>
  534. <menuitem>
  535. <label>Raw binary array 3D export</label>
  536. <help>Exports a GRASS 3D raster map to a binary array.</help>
  537. <keywords>raster3d,export</keywords>
  538. <handler>OnMenuCmd</handler>
  539. <command>r3.out.bin</command>
  540. </menuitem>
  541. <menuitem>
  542. <label>Vis5D export</label>
  543. <help>Exports GRASS 3D raster map to 3-dimensional Vis5D file.</help>
  544. <keywords>raster3d,voxel,export</keywords>
  545. <handler>OnMenuCmd</handler>
  546. <command>r3.out.v5d</command>
  547. </menuitem>
  548. <menuitem>
  549. <label>VTK export</label>
  550. <help>Converts 3D raster maps into the VTK-ASCII format.</help>
  551. <keywords>raster3d,voxel,export</keywords>
  552. <handler>OnMenuCmd</handler>
  553. <command>r3.out.vtk</command>
  554. </menuitem>
  555. </items>
  556. </menu>
  557. <menu>
  558. <label>Export database table</label>
  559. <items>
  560. <menuitem>
  561. <label>Common export formats using OGR</label>
  562. <help>Exports attribute tables into various formats.</help>
  563. <keywords>database,attribute table</keywords>
  564. <handler>OnMenuCmd</handler>
  565. <command>db.out.ogr</command>
  566. </menuitem>
  567. </items>
  568. </menu>
  569. <separator />
  570. <menu>
  571. <label>Link external formats</label>
  572. <items>
  573. <menuitem>
  574. <label>Link external raster data</label>
  575. <help>Link GDAL supported raster data as a pseudo GRASS raster map layer.</help>
  576. <keywords>raster,import,input,external</keywords>
  577. <handler>OnLinkGdalLayers</handler>
  578. <command>r.external</command>
  579. </menuitem>
  580. <menuitem>
  581. <label>Link external vector data</label>
  582. <help>Creates a new pseudo-vector map as a link to an OGR-supported layer.</help>
  583. <keywords>vector,import,input,external,OGR,PostGIS</keywords>
  584. <handler>OnLinkOgrLayers</handler>
  585. <command>v.external</command>
  586. </menuitem>
  587. <separator />
  588. <menuitem>
  589. <label>Output format for raster data</label>
  590. <help>Defines raster output format utilizing GDAL library.</help>
  591. <keywords>raster,export,output,external</keywords>
  592. <handler>OnMenuCmd</handler>
  593. <command>r.external.out</command>
  594. </menuitem>
  595. <menuitem>
  596. <label>Output format for vector data</label>
  597. <help>Defines vector output format utilizing OGR library.</help>
  598. <keywords>vector,export,output,external,OGR,PostGIS</keywords>
  599. <handler>OnVectorOutputFormat</handler>
  600. <command>v.external.out</command>
  601. </menuitem>
  602. </items>
  603. </menu>
  604. <separator />
  605. <menu>
  606. <label>Manage maps and volumes</label>
  607. <items>
  608. <menuitem>
  609. <label>Copy</label>
  610. <help>Copies available data files in the current mapset search path to the user's current mapset.</help>
  611. <keywords>general,map management,copy</keywords>
  612. <handler>OnMenuCmd</handler>
  613. <command>g.copy</command>
  614. </menuitem>
  615. <separator />
  616. <menuitem>
  617. <label>List</label>
  618. <help>Lists available GRASS data base files of the user-specified data type.</help>
  619. <keywords>general,map management,list</keywords>
  620. <handler>OnMenuCmd</handler>
  621. <command>g.list</command>
  622. </menuitem>
  623. <menuitem>
  624. <label>List filtered</label>
  625. <help>Lists available GRASS data base files of the user-specified data type optionally using the search pattern.</help>
  626. <keywords>general,map management,list</keywords>
  627. <handler>OnMenuCmd</handler>
  628. <command>g.mlist</command>
  629. </menuitem>
  630. <separator />
  631. <menuitem>
  632. <label>Rename</label>
  633. <help>Renames data base element files in the user's current mapset.</help>
  634. <keywords>general,map management,rename</keywords>
  635. <handler>OnMenuCmd</handler>
  636. <command>g.rename</command>
  637. </menuitem>
  638. <separator />
  639. <menuitem>
  640. <label>Delete</label>
  641. <help>Removes data base element files from the user's current mapset.</help>
  642. <keywords>general,map management,remove</keywords>
  643. <handler>OnMenuCmd</handler>
  644. <command>g.remove</command>
  645. </menuitem>
  646. <menuitem>
  647. <label>Delete filtered</label>
  648. <help>Removes data base element files from the user's current mapset using regular expressions.</help>
  649. <keywords>general,map management,remove,multi</keywords>
  650. <handler>OnMenuCmd</handler>
  651. <command>g.mremove</command>
  652. </menuitem>
  653. </items>
  654. </menu>
  655. <menu>
  656. <label>Map type conversions</label>
  657. <items>
  658. <menuitem>
  659. <label>Raster to vector</label>
  660. <help>Converts a raster map into a vector map.</help>
  661. <keywords>raster,conversion,geometry,vectorization</keywords>
  662. <handler>OnMenuCmd</handler>
  663. <command>r.to.vect</command>
  664. </menuitem>
  665. <menuitem>
  666. <label>Raster series to volume</label>
  667. <help>Converts 2D raster map slices to one 3D raster volume map.</help>
  668. <keywords>raster,conversion,voxel</keywords>
  669. <handler>OnMenuCmd</handler>
  670. <command>r.to.rast3</command>
  671. </menuitem>
  672. <menuitem>
  673. <label>Raster 2.5D to volume</label>
  674. <help>Creates a 3D volume map based on 2D elevation and value raster maps.</help>
  675. <keywords>raster,conversion,raster3d,voxel</keywords>
  676. <handler>OnMenuCmd</handler>
  677. <command>r.to.rast3elev</command>
  678. </menuitem>
  679. <separator />
  680. <menuitem>
  681. <label>Vector to raster</label>
  682. <help>Converts (rasterize) a vector map into a raster map.</help>
  683. <keywords>vector,conversion,raster,rasterization</keywords>
  684. <handler>OnMenuCmd</handler>
  685. <command>v.to.rast</command>
  686. </menuitem>
  687. <menuitem>
  688. <label>Vector to volume</label>
  689. <help>Converts a vector map (only points) into a 3D raster map.</help>
  690. <keywords>vector,conversion,voxel</keywords>
  691. <handler>OnMenuCmd</handler>
  692. <command>v.to.rast3</command>
  693. </menuitem>
  694. <menuitem>
  695. <label>2D vector to 3D vector</label>
  696. <help>Performs transformation of 2D vector features to 3D.</help>
  697. <keywords>vector,geometry,3D</keywords>
  698. <handler>OnMenuCmd</handler>
  699. <command>v.to.3d</command>
  700. </menuitem>
  701. <menuitem>
  702. <label>Sites to vector</label>
  703. <help>Converts a GRASS site_lists file into a vector map.</help>
  704. <keywords>vector,import,sites</keywords>
  705. <handler>OnMenuCmd</handler>
  706. <command>v.in.sites</command>
  707. </menuitem>
  708. <separator />
  709. <menuitem>
  710. <label>Volume to raster series</label>
  711. <help>Converts 3D raster maps to 2D raster maps</help>
  712. <keywords>raster3d,conversion,raster,voxel</keywords>
  713. <handler>OnMenuCmd</handler>
  714. <command>r3.to.rast</command>
  715. </menuitem>
  716. </items>
  717. </menu>
  718. <separator />
  719. <menuitem>
  720. <label>Georectify</label>
  721. <help>Manage Ground Control Points for Georectification</help>
  722. <handler>OnGCPManager</handler>
  723. </menuitem>
  724. <separator />
  725. <menuitem>
  726. <label>Graphical modeler</label>
  727. <help>Launch Graphical modeler</help>
  728. <keywords>general,gui,graphical modeler,workflow</keywords><handler>OnGModeler</handler>
  729. <command>g.gui.gmodeler</command>
  730. </menuitem>
  731. <menuitem>
  732. <label>Run model</label>
  733. <help>Run model prepared by Graphical modeler</help>
  734. <handler>OnRunModel</handler>
  735. </menuitem>
  736. <separator />
  737. <menuitem>
  738. <label>3D image rendering</label>
  739. <help>Creates a 3D rendering of GIS data.</help>
  740. <keywords>visualization,graphics,raster,vector,raster3d</keywords>
  741. <handler>OnMenuCmd</handler>
  742. <command>m.nviz.image</command>
  743. </menuitem>
  744. <menuitem>
  745. <label>Animation tool</label>
  746. <help>Launch animation tool.</help>
  747. <keywords />
  748. <handler>OnAnimationTool</handler>
  749. <command>g.gui.animation</command>
  750. </menuitem>
  751. <separator />
  752. <menuitem>
  753. <label>Bearing/distance to coordinates</label>
  754. <help>A simple utility for converting bearing and distance measurements to coordinates and vice versa.</help>
  755. <keywords>miscellaneous,distance</keywords>
  756. <handler>OnMenuCmd</handler>
  757. <command>m.cogo</command>
  758. </menuitem>
  759. <separator />
  760. <menuitem>
  761. <label>Cartographic Composer</label>
  762. <help>Launch Cartographic Composer</help>
  763. <keywords>postscript,printing</keywords>
  764. <handler>OnPsMap</handler>
  765. <command>ps.map</command>
  766. </menuitem>
  767. <menuitem>
  768. <label>Map Swipe</label>
  769. <help>Launch Map Swipe</help>
  770. <keywords>visualization,raster</keywords>
  771. <handler>OnMapSwipe</handler>
  772. </menuitem>
  773. <separator />
  774. <menuitem>
  775. <label>Launch script</label>
  776. <help>Launches script file.</help>
  777. <handler>OnRunScript</handler>
  778. </menuitem>
  779. <separator />
  780. <menuitem>
  781. <label>Exit GUI</label>
  782. <help>Quit wxGUI session</help>
  783. <handler>OnCloseWindow</handler>
  784. <shortcut>Ctrl+Q</shortcut>
  785. <id>ID_EXIT</id>
  786. </menuitem>
  787. </items>
  788. </menu>
  789. <menu>
  790. <label>&amp;Settings</label>
  791. <items>
  792. <menu>
  793. <label>Region</label>
  794. <items>
  795. <menuitem>
  796. <label>Display region</label>
  797. <help>Manages the boundary definitions for the geographic region.</help>
  798. <keywords>general,settings</keywords>
  799. <handler>RunMenuCmd</handler>
  800. <command>g.region -p</command>
  801. </menuitem>
  802. <menuitem>
  803. <label>Set region</label>
  804. <help>Manages the boundary definitions for the geographic region.</help>
  805. <keywords>general,settings</keywords>
  806. <handler>OnMenuCmd</handler>
  807. <command>g.region</command>
  808. </menuitem>
  809. </items>
  810. </menu>
  811. <menu>
  812. <label>GRASS working environment</label>
  813. <items>
  814. <menuitem>
  815. <label>Mapset access</label>
  816. <help>Set/unset access to other mapsets in current location</help>
  817. <keywords>general,settings,search path</keywords>
  818. <handler>OnMapsets</handler>
  819. <command>g.mapsets</command>
  820. </menuitem>
  821. <menuitem>
  822. <label>User access</label>
  823. <help>Controls access to the current mapset for other users on the system.</help>
  824. <keywords>general,map management,permission</keywords>
  825. <handler>OnMenuCmd</handler>
  826. <command>g.access</command>
  827. </menuitem>
  828. <separator />
  829. <menuitem>
  830. <label>Change working environment</label>
  831. <help>Changes/reports current mapset.</help>
  832. <keywords>general,settings</keywords>
  833. <handler>OnMenuCmd</handler>
  834. <command>g.mapset</command>
  835. </menuitem>
  836. <menuitem>
  837. <label>Change location and mapset</label>
  838. <help>Change current location and mapset.</help>
  839. <keywords>general,location,current</keywords>
  840. <handler>OnChangeLocation</handler>
  841. </menuitem>
  842. <menuitem>
  843. <label>Change mapset</label>
  844. <help>Change current mapset.</help>
  845. <keywords>general,mapset,current</keywords>
  846. <handler>OnChangeMapset</handler>
  847. </menuitem>
  848. <menuitem>
  849. <label>Change working directory</label>
  850. <help>Change working directory</help>
  851. <handler>OnChangeCWD</handler>
  852. </menuitem>
  853. <separator />
  854. <menuitem>
  855. <label>Show settings</label>
  856. <help>Outputs and modifies the user's current GRASS variable settings.</help>
  857. <keywords>general,settings,variables</keywords>
  858. <handler>RunMenuCmd</handler>
  859. <command>g.gisenv -n</command>
  860. </menuitem>
  861. <menuitem>
  862. <label>Change settings</label>
  863. <help>Outputs and modifies the user's current GRASS variable settings.</help>
  864. <keywords>general,settings,variables</keywords>
  865. <handler>OnMenuCmd</handler>
  866. <command>g.gisenv</command>
  867. </menuitem>
  868. <separator />
  869. <menuitem>
  870. <label>Create new location</label>
  871. <help>Launches location wizard to create new GRASS location.</help>
  872. <keywords>general,location,wizard</keywords>
  873. <handler>OnLocationWizard</handler>
  874. </menuitem>
  875. <menuitem>
  876. <label>Create new mapset</label>
  877. <help>Creates new mapset in the current location, changes current mapset.</help>
  878. <keywords>general,mapset,create</keywords>
  879. <handler>OnCreateMapset</handler>
  880. </menuitem>
  881. <separator />
  882. <menuitem>
  883. <label>Version and copyright</label>
  884. <help>Displays version and copyright information.</help>
  885. <keywords>general,version</keywords>
  886. <handler>RunMenuCmd</handler>
  887. <command>g.version -c</command>
  888. </menuitem>
  889. </items>
  890. </menu>
  891. <menu>
  892. <label>Map projections</label>
  893. <items>
  894. <menuitem>
  895. <label>Display map projection</label>
  896. <help>Converts co-ordinate system descriptions (i.e. projection information) between various formats (including GRASS format).</help>
  897. <keywords>general,projection,create location</keywords>
  898. <handler>RunMenuCmd</handler>
  899. <command>g.proj -p</command>
  900. </menuitem>
  901. <menuitem>
  902. <label>Manage projections</label>
  903. <help>Prints and manipulates GRASS projection information files (in various co-ordinate system descriptions).</help>
  904. <keywords>general,projection,create location</keywords>
  905. <handler>OnMenuCmd</handler>
  906. <command>g.proj</command>
  907. </menuitem>
  908. <separator />
  909. <menuitem>
  910. <label>Convert coordinates</label>
  911. <help>Converts coordinates from one projection to another (cs2cs frontend).</help>
  912. <keywords>miscellaneous,projection</keywords>
  913. <handler>OnMenuCmd</handler>
  914. <command>m.proj</command>
  915. </menuitem>
  916. </items>
  917. </menu>
  918. <separator />
  919. <menu>
  920. <label>Addons extensions</label>
  921. <items>
  922. <menuitem>
  923. <label>Install extension from addons</label>
  924. <help>Installs new extension from GRASS AddOns SVN repository.</help>
  925. <keywords>general,installation,extensions</keywords>
  926. <handler>OnInstallExtension</handler>
  927. <command>g.extension</command>
  928. </menuitem>
  929. <menuitem>
  930. <label>Update installed extensions</label>
  931. <help>Rebuilds all locally installed GRASS Addons extensions.</help>
  932. <keywords>general,installation,extensions</keywords>
  933. <handler>OnMenuCmd</handler>
  934. <command>g.extension.rebuild.all</command>
  935. </menuitem>
  936. <menuitem>
  937. <label>Uninstall extension</label>
  938. <help>Removes installed GRASS AddOns extension.</help>
  939. <keywords>general,installation,extensions</keywords>
  940. <handler>OnUninstallExtension</handler>
  941. <command>g.extension</command>
  942. </menuitem>
  943. </items>
  944. </menu>
  945. <separator />
  946. <menuitem>
  947. <label>Preferences</label>
  948. <help>User GUI preferences (display font, commands, digitizer, etc.)</help>
  949. <handler>OnPreferences</handler>
  950. <id>ID_PREFERENCES</id>
  951. </menuitem>
  952. </items>
  953. </menu>
  954. <menu>
  955. <label>&amp;Raster</label>
  956. <items>
  957. <menu>
  958. <label>Develop raster map</label>
  959. <items>
  960. <menuitem>
  961. <label>Compress/decompress</label>
  962. <help>Compresses and decompresses raster maps.</help>
  963. <keywords>raster,map management</keywords>
  964. <handler>OnMenuCmd</handler>
  965. <command>r.compress</command>
  966. </menuitem>
  967. <separator />
  968. <menuitem>
  969. <label>Region boundaries</label>
  970. <help>Sets the boundary definitions for a raster map.</help>
  971. <keywords>raster,metadata</keywords>
  972. <handler>OnMenuCmd</handler>
  973. <command>r.region</command>
  974. </menuitem>
  975. <menuitem>
  976. <label>Manage NULL values</label>
  977. <help>Manages NULL-values of given raster map.</help>
  978. <keywords>raster,null data</keywords>
  979. <handler>OnMenuCmd</handler>
  980. <command>r.null</command>
  981. </menuitem>
  982. <menuitem>
  983. <label>Quantization</label>
  984. <help>Produces the quantization file for a floating-point map.</help>
  985. <keywords>raster,quantization,statistics</keywords>
  986. <handler>OnMenuCmd</handler>
  987. <command>r.quant</command>
  988. </menuitem>
  989. <menuitem>
  990. <label>Timestamp</label>
  991. <help>Modifies a timestamp for a raster map.</help>
  992. <keywords>raster,metadata,timestamp</keywords>
  993. <handler>OnMenuCmd</handler>
  994. <command>r.timestamp</command>
  995. </menuitem>
  996. <separator />
  997. <menuitem>
  998. <label>Resample using aggregate statistics</label>
  999. <help>Resamples raster map layers to a coarser grid using aggregation.</help>
  1000. <keywords>raster,resample</keywords>
  1001. <handler>OnMenuCmd</handler>
  1002. <command>r.resamp.stats</command>
  1003. </menuitem>
  1004. <menuitem>
  1005. <label>Resample using multiple methods</label>
  1006. <help>Resamples raster map layers to a finer grid using interpolation.</help>
  1007. <keywords>raster,resample</keywords>
  1008. <handler>OnMenuCmd</handler>
  1009. <command>r.resamp.interp</command>
  1010. </menuitem>
  1011. <menuitem>
  1012. <label>Resample using nearest neighbor</label>
  1013. <help>GRASS raster map layer data resampling capability.</help>
  1014. <keywords>raster,resample</keywords>
  1015. <handler>OnMenuCmd</handler>
  1016. <command>r.resample</command>
  1017. </menuitem>
  1018. <menuitem>
  1019. <label>Resample using spline tension</label>
  1020. <help>Reinterpolates and optionally computes topographic analysis from input raster map to a new raster map (possibly with different resolution) using regularized spline with tension and smoothing.</help>
  1021. <keywords>raster,resample</keywords>
  1022. <handler>OnMenuCmd</handler>
  1023. <command>r.resamp.rst</command>
  1024. </menuitem>
  1025. <menuitem>
  1026. <label>Resample using bspline</label>
  1027. <help>Performs bicubic or bilinear spline interpolation with Tykhonov regularization.</help>
  1028. <keywords>raster,surface,resample,interpolation</keywords>
  1029. <handler>OnMenuCmd</handler>
  1030. <command>r.resamp.bspline</command>
  1031. </menuitem>
  1032. <menuitem>
  1033. <label>Resample using analytic kernel</label>
  1034. <help>Resamples raster map layers using an analytic kernel.</help>
  1035. <keywords>raster,resample</keywords>
  1036. <handler>OnMenuCmd</handler>
  1037. <command>r.resamp.filter</command>
  1038. </menuitem>
  1039. <separator />
  1040. <menuitem>
  1041. <label>Support file maintenance</label>
  1042. <help>Allows creation and/or modification of raster map layer support files.</help>
  1043. <keywords>raster,metadata</keywords>
  1044. <handler>OnMenuCmd</handler>
  1045. <command>r.support</command>
  1046. </menuitem>
  1047. <menuitem>
  1048. <label>Update map statistics</label>
  1049. <help>Update raster map statistics</help>
  1050. <keywords>raster,statistics</keywords>
  1051. <handler>OnMenuCmd</handler>
  1052. <command>r.support.stats</command>
  1053. </menuitem>
  1054. <separator />
  1055. <menuitem>
  1056. <label>Reproject raster map</label>
  1057. <help>Re-projects a raster map from given location to the current location.</help>
  1058. <keywords>raster,projection,transformation</keywords>
  1059. <handler>OnMenuCmd</handler>
  1060. <command>r.proj</command>
  1061. </menuitem>
  1062. <menuitem>
  1063. <label>Tiling</label>
  1064. <help>Produces tilings of the source projection for use in the destination region and projection.</help>
  1065. <keywords>raster,tiling</keywords>
  1066. <handler>OnMenuCmd</handler>
  1067. <command>r.tileset</command>
  1068. </menuitem>
  1069. </items>
  1070. </menu>
  1071. <menu>
  1072. <label>Manage colors</label>
  1073. <items>
  1074. <menuitem>
  1075. <label>Color tables</label>
  1076. <help>Creates/modifies the color table associated with a raster map.</help>
  1077. <keywords>raster,color table</keywords>
  1078. <handler>OnMenuCmd</handler>
  1079. <command>r.colors</command>
  1080. </menuitem>
  1081. <menuitem>
  1082. <label>Color tables (stddev)</label>
  1083. <help>Sets color rules based on stddev from a raster map's mean value.</help>
  1084. <keywords>raster,color table</keywords>
  1085. <handler>OnMenuCmd</handler>
  1086. <command>r.colors.stddev</command>
  1087. </menuitem>
  1088. <menuitem>
  1089. <label>Create color rules</label>
  1090. <help>Interactive management of raster color tables.</help>
  1091. <keywords>raster,color table</keywords>
  1092. <handler>OnRasterRules</handler>
  1093. </menuitem>
  1094. <menuitem>
  1095. <label>Export color table</label>
  1096. <help>Exports the color table associated with a raster map.</help>
  1097. <keywords>raster,color table,export</keywords>
  1098. <handler>OnMenuCmd</handler>
  1099. <command>r.colors.out</command>
  1100. </menuitem>
  1101. <separator />
  1102. <menuitem>
  1103. <label>Blend 2 color rasters</label>
  1104. <help>Blends color components of two raster maps by a given ratio.</help>
  1105. <keywords>raster,composite</keywords>
  1106. <handler>OnMenuCmd</handler>
  1107. <command>r.blend</command>
  1108. </menuitem>
  1109. <menuitem>
  1110. <label>Create RGB</label>
  1111. <help>Combines red, green and blue raster maps into a single composite raster map.</help>
  1112. <keywords>raster,composite</keywords>
  1113. <handler>OnMenuCmd</handler>
  1114. <command>r.composite</command>
  1115. </menuitem>
  1116. <menuitem>
  1117. <label>RGB to HIS</label>
  1118. <help>Generates red, green and blue raster map layers combining hue, intensity and saturation (HIS) values from user-specified input raster map layers.</help>
  1119. <keywords>raster,color transformation,RGB,HIS</keywords>
  1120. <handler>OnMenuCmd</handler>
  1121. <command>r.his</command>
  1122. </menuitem>
  1123. </items>
  1124. </menu>
  1125. <menu>
  1126. <label>Query raster maps</label>
  1127. <items>
  1128. <menuitem>
  1129. <label>Query values by coordinates</label>
  1130. <help>Queries raster maps on their category values and category labels.</help>
  1131. <keywords>raster,querying,position</keywords>
  1132. <handler>OnMenuCmd</handler>
  1133. <command>r.what</command>
  1134. </menuitem>
  1135. <menuitem>
  1136. <label>Query colors by value</label>
  1137. <help>Queries colors for a raster map layer.</help>
  1138. <keywords>raster,querying,color table</keywords>
  1139. <handler>OnMenuCmd</handler>
  1140. <command>r.what.color</command>
  1141. </menuitem>
  1142. </items>
  1143. </menu>
  1144. <menu>
  1145. <label>Map type conversions</label>
  1146. <items>
  1147. <menuitem>
  1148. <label>Raster to vector</label>
  1149. <help>Converts a raster map into a vector map.</help>
  1150. <keywords>raster,conversion,geometry,vectorization</keywords>
  1151. <handler>OnMenuCmd</handler>
  1152. <command>r.to.vect</command>
  1153. </menuitem>
  1154. <menuitem>
  1155. <label>Raster series to volume</label>
  1156. <help>Converts 2D raster map slices to one 3D raster volume map.</help>
  1157. <keywords>raster,conversion,voxel</keywords>
  1158. <handler>OnMenuCmd</handler>
  1159. <command>r.to.rast3</command>
  1160. </menuitem>
  1161. <menuitem>
  1162. <label>Raster 2.5D to volume</label>
  1163. <help>Creates a 3D volume map based on 2D elevation and value raster maps.</help>
  1164. <keywords>raster,conversion,raster3d,voxel</keywords>
  1165. <handler>OnMenuCmd</handler>
  1166. <command>r.to.rast3elev</command>
  1167. </menuitem>
  1168. </items>
  1169. </menu>
  1170. <separator />
  1171. <menuitem>
  1172. <label>Buffer rasters</label>
  1173. <help>Creates a raster map showing buffer zones surrounding cells that contain non-NULL category values.</help>
  1174. <keywords>raster,buffer</keywords>
  1175. <handler>OnMenuCmd</handler>
  1176. <command>r.buffer</command>
  1177. </menuitem>
  1178. <menuitem>
  1179. <label>Concentric circles</label>
  1180. <help>Creates a raster map containing concentric rings around a given point.</help>
  1181. <keywords>raster,geometry</keywords>
  1182. <handler>OnMenuCmd</handler>
  1183. <command>r.circle</command>
  1184. </menuitem>
  1185. <menuitem>
  1186. <label>Closest points</label>
  1187. <help>Locates the closest points between objects in two raster maps.</help>
  1188. <keywords>raster,distance</keywords>
  1189. <handler>OnMenuCmd</handler>
  1190. <command>r.distance</command>
  1191. </menuitem>
  1192. <menuitem>
  1193. <label>Mask</label>
  1194. <help>Creates a MASK for limiting raster operation.</help>
  1195. <keywords>raster,mask</keywords>
  1196. <handler>OnMenuCmd</handler>
  1197. <command>r.mask</command>
  1198. </menuitem>
  1199. <menuitem>
  1200. <label>Raster map calculator</label>
  1201. <help>Raster map calculator.</help>
  1202. <keywords>raster,algebra</keywords>
  1203. <handler>OnMapCalculator</handler>
  1204. <command>r.mapcalc</command>
  1205. </menuitem>
  1206. <menu>
  1207. <label>Neighborhood analysis</label>
  1208. <items>
  1209. <menuitem>
  1210. <label>Moving window</label>
  1211. <help>Makes each cell category value a function of the category values assigned to the cells around it, and stores new cell values in an output raster map layer.</help>
  1212. <keywords>raster,algebra,statistics,aggregation</keywords>
  1213. <handler>OnMenuCmd</handler>
  1214. <command>r.neighbors</command>
  1215. </menuitem>
  1216. <menuitem>
  1217. <label>Neighborhood points</label>
  1218. <help>Neighborhood analysis tool for vector point maps.</help>
  1219. <keywords>vector,algebra,statistics,raster,aggregation</keywords>
  1220. <handler>OnMenuCmd</handler>
  1221. <command>v.neighbors</command>
  1222. </menuitem>
  1223. </items>
  1224. </menu>
  1225. <menu>
  1226. <label>Overlay rasters</label>
  1227. <items>
  1228. <menuitem>
  1229. <label>Cross product</label>
  1230. <help>Creates a cross product of the category values from multiple raster map layers.</help>
  1231. <keywords>raster,statistics</keywords>
  1232. <handler>OnMenuCmd</handler>
  1233. <command>r.cross</command>
  1234. </menuitem>
  1235. <menuitem>
  1236. <label>Raster series</label>
  1237. <help>Makes each output cell value a function of the values assigned to the corresponding cells in the input raster map layers.</help>
  1238. <keywords>raster,aggregation,series</keywords>
  1239. <handler>OnMenuCmd</handler>
  1240. <command>r.series</command>
  1241. </menuitem>
  1242. <menuitem>
  1243. <label>Patch raster maps</label>
  1244. <help>Creates a composite raster map layer by using known category values from one (or more) map layer(s) to fill in areas of "no data" in another map layer.</help>
  1245. <keywords>raster,geometry</keywords>
  1246. <handler>OnMenuCmd</handler>
  1247. <command>r.patch</command>
  1248. </menuitem>
  1249. <separator />
  1250. <menuitem>
  1251. <label>Statistical overlay</label>
  1252. <help>Calculates category or object oriented statistics (accumulator-based statistics).</help>
  1253. <keywords>raster,statistics</keywords>
  1254. <handler>OnMenuCmd</handler>
  1255. <command>r.statistics2</command>
  1256. </menuitem>
  1257. <menuitem>
  1258. <label>Quantiles overlay</label>
  1259. <help>Compute category quantiles using two passes.</help>
  1260. <keywords>raster,statistics</keywords>
  1261. <handler>OnMenuCmd</handler>
  1262. <command>r.statistics3</command>
  1263. </menuitem>
  1264. </items>
  1265. </menu>
  1266. <menu>
  1267. <label>Solar radiance and shadows</label>
  1268. <items>
  1269. <menuitem>
  1270. <label>Solar irradiance and irradiation</label>
  1271. <help>Solar irradiance and irradiation model.</help>
  1272. <keywords>raster,solar,sun energy</keywords>
  1273. <handler>OnMenuCmd</handler>
  1274. <command>r.sun</command>
  1275. </menuitem>
  1276. <menuitem>
  1277. <label>Shadows map</label>
  1278. <help>Calculates cast shadow areas from sun position and elevation raster map.</help>
  1279. <keywords>raster,solar,sun position</keywords>
  1280. <handler>OnMenuCmd</handler>
  1281. <command>r.sunmask</command>
  1282. </menuitem>
  1283. </items>
  1284. </menu>
  1285. <menu>
  1286. <label>Terrain analysis</label>
  1287. <items>
  1288. <menuitem>
  1289. <label>Generate contour lines</label>
  1290. <help>Produces a vector map of specified contours from a raster map.</help>
  1291. <keywords>raster,surface,contours,vector</keywords>
  1292. <handler>OnMenuCmd</handler>
  1293. <command>r.contour</command>
  1294. </menuitem>
  1295. <menuitem>
  1296. <label>Cost surface</label>
  1297. <help>Creates a raster map showing the cumulative cost of moving between different geographic locations on an input raster map whose cell category values represent cost.</help>
  1298. <keywords>raster,cost surface,cumulative costs</keywords>
  1299. <handler>OnMenuCmd</handler>
  1300. <command>r.cost</command>
  1301. </menuitem>
  1302. <menuitem>
  1303. <label>Cumulative movement costs</label>
  1304. <help>Outputs a raster map showing the anisotropic cumulative cost.</help>
  1305. <keywords>raster,cost surface,cumulative costs</keywords>
  1306. <handler>OnMenuCmd</handler>
  1307. <command>r.walk</command>
  1308. </menuitem>
  1309. <menuitem>
  1310. <label>Least cost route or flow</label>
  1311. <help>Traces a flow through an elevation model or cost surface on a raster map.</help>
  1312. <keywords>raster,hydrology,cost surface</keywords>
  1313. <handler>OnMenuCmd</handler>
  1314. <command>r.drain</command>
  1315. </menuitem>
  1316. <separator />
  1317. <menuitem>
  1318. <label>Shaded relief</label>
  1319. <help>Creates shaded relief map from an elevation map (DEM).</help>
  1320. <keywords>raster,terrain</keywords>
  1321. <handler>OnMenuCmd</handler>
  1322. <command>r.shaded.relief2</command>
  1323. </menuitem>
  1324. <separator />
  1325. <menuitem>
  1326. <label>Slope and aspect</label>
  1327. <help>Generates raster maps of slope, aspect, curvatures and partial derivatives from a elevation raster map.</help>
  1328. <keywords>raster,terrain</keywords>
  1329. <handler>OnMenuCmd</handler>
  1330. <command>r.slope.aspect</command>
  1331. </menuitem>
  1332. <menuitem>
  1333. <label>Terrain parameters</label>
  1334. <help>Extracts terrain parameters from a DEM.</help>
  1335. <keywords>raster,geomorphology</keywords>
  1336. <handler>OnMenuCmd</handler>
  1337. <command>r.param.scale</command>
  1338. </menuitem>
  1339. <menuitem>
  1340. <label>Textural features</label>
  1341. <help>Generate images with textural features from a raster map.</help>
  1342. <keywords>raster,algebra,statistics,texture</keywords>
  1343. <handler>OnMenuCmd</handler>
  1344. <command>r.texture</command>
  1345. </menuitem>
  1346. <separator />
  1347. <menuitem>
  1348. <label>Visibility</label>
  1349. <help>Computes the viewshed of a point on an elevation raster map.</help>
  1350. <keywords>raster,viewshed,line of sight</keywords>
  1351. <handler>OnMenuCmd</handler>
  1352. <command>r.viewshed</command>
  1353. </menuitem>
  1354. <menuitem>
  1355. <label>Visibility [DEPRECATED]</label>
  1356. <help>Line-of-sight raster analysis program.</help>
  1357. <keywords>raster,viewshed</keywords>
  1358. <handler>OnMenuCmd</handler>
  1359. <command>r.los</command>
  1360. </menuitem>
  1361. <menuitem>
  1362. <label>Distance to features</label>
  1363. <help>Generates a raster map of distance to features in input raster map.</help>
  1364. <keywords>raster,distance</keywords>
  1365. <handler>OnMenuCmd</handler>
  1366. <command>r.grow.distance</command>
  1367. </menuitem>
  1368. <separator />
  1369. <menuitem>
  1370. <label>Horizon angle</label>
  1371. <help>Horizon angle computation from a digital elevation model.</help>
  1372. <keywords>raster,solar,sun position</keywords>
  1373. <handler>OnMenuCmd</handler>
  1374. <command>r.horizon</command>
  1375. </menuitem>
  1376. </items>
  1377. </menu>
  1378. <menu>
  1379. <label>Transform features</label>
  1380. <items>
  1381. <menuitem>
  1382. <label>Clump</label>
  1383. <help>Recategorizes data in a raster map by grouping cells that form physically discrete areas into unique categories.</help>
  1384. <keywords>raster,statistics,reclass</keywords>
  1385. <handler>OnMenuCmd</handler>
  1386. <command>r.clump</command>
  1387. </menuitem>
  1388. <menuitem>
  1389. <label>Grow</label>
  1390. <help>Generates a raster map layer with contiguous areas grown by one cell.</help>
  1391. <keywords>raster</keywords>
  1392. <handler>OnMenuCmd</handler>
  1393. <command>r.grow</command>
  1394. </menuitem>
  1395. <menuitem>
  1396. <label>Thin</label>
  1397. <help>Thins non-zero cells that denote linear features in a raster map layer.</help>
  1398. <keywords>raster,geometry</keywords>
  1399. <handler>OnMenuCmd</handler>
  1400. <command>r.thin</command>
  1401. </menuitem>
  1402. </items>
  1403. </menu>
  1404. <separator />
  1405. <menu>
  1406. <label>Hydrologic modeling</label>
  1407. <items>
  1408. <menuitem>
  1409. <label>Carve stream channels</label>
  1410. <help>Generates stream channels.</help>
  1411. <keywords>raster,hydrology</keywords>
  1412. <handler>OnMenuCmd</handler>
  1413. <command>r.carve</command>
  1414. </menuitem>
  1415. <menuitem>
  1416. <label>Fill lake</label>
  1417. <help>Fills lake at given point to given level.</help>
  1418. <keywords>raster,hydrology</keywords>
  1419. <handler>OnMenuCmd</handler>
  1420. <command>r.lake</command>
  1421. </menuitem>
  1422. <separator />
  1423. <menuitem>
  1424. <label>Depressionless map and flowlines</label>
  1425. <help>Filters and generates a depressionless elevation map and a flow direction map from a given elevation raster map.</help>
  1426. <keywords>raster,hydrology</keywords>
  1427. <handler>OnMenuCmd</handler>
  1428. <command>r.fill.dir</command>
  1429. </menuitem>
  1430. <menuitem>
  1431. <label>Flow accumulation</label>
  1432. <help>Flow computation for massive grids (float version).</help>
  1433. <keywords>raster,hydrology</keywords>
  1434. <handler>OnMenuCmd</handler>
  1435. <command>r.terraflow</command>
  1436. </menuitem>
  1437. <menuitem>
  1438. <label>Flow lines</label>
  1439. <help>Constructs flowlines.</help>
  1440. <keywords>raster,hydrology</keywords>
  1441. <handler>OnMenuCmd</handler>
  1442. <command>r.flow</command>
  1443. </menuitem>
  1444. <menuitem>
  1445. <label>Watershed analysis</label>
  1446. <help>Calculates hydrological parameters and RUSLE factors.</help>
  1447. <keywords>raster,hydrology</keywords>
  1448. <handler>OnMenuCmd</handler>
  1449. <command>r.watershed</command>
  1450. </menuitem>
  1451. <menuitem>
  1452. <label>Watershed subbasins</label>
  1453. <help>Generates watershed subbasins raster map.</help>
  1454. <keywords>raster,hydrology</keywords>
  1455. <handler>OnMenuCmd</handler>
  1456. <command>r.basins.fill</command>
  1457. </menuitem>
  1458. <menuitem>
  1459. <label>Watershed basin creation</label>
  1460. <help>Creates watershed basins.</help>
  1461. <keywords>raster,hydrology</keywords>
  1462. <handler>OnMenuCmd</handler>
  1463. <command>r.water.outlet</command>
  1464. </menuitem>
  1465. <separator />
  1466. <menuitem>
  1467. <label>SIMWE Overland flow modeling</label>
  1468. <help>Overland flow hydrologic simulation using path sampling method (SIMWE).</help>
  1469. <keywords>raster,hydrology</keywords>
  1470. <handler>OnMenuCmd</handler>
  1471. <command>r.sim.water</command>
  1472. </menuitem>
  1473. <menuitem>
  1474. <label>SIMWE Sediment flux modeling</label>
  1475. <help>Sediment transport and erosion/deposition simulation using path sampling method (SIMWE).</help>
  1476. <keywords>raster,hydrology,sediment flow,erosion,deposition</keywords>
  1477. <handler>OnMenuCmd</handler>
  1478. <command>r.sim.sediment</command>
  1479. </menuitem>
  1480. <separator />
  1481. <menuitem>
  1482. <label>Topographic index map</label>
  1483. <help>Creates topographic index map from elevation raster map.</help>
  1484. <keywords>raster,hydrology</keywords>
  1485. <handler>OnMenuCmd</handler>
  1486. <command>r.topidx</command>
  1487. </menuitem>
  1488. <menuitem>
  1489. <label>TOPMODEL simulation</label>
  1490. <help>Simulates TOPMODEL which is a physically based hydrologic model.</help>
  1491. <keywords>raster,hydrology</keywords>
  1492. <handler>OnMenuCmd</handler>
  1493. <command>r.topmodel</command>
  1494. </menuitem>
  1495. <separator />
  1496. <menuitem>
  1497. <label>USLE K-factor</label>
  1498. <help>Computes USLE Soil Erodibility Factor (K).</help>
  1499. <keywords>raster,hydrology,soil,erosion</keywords>
  1500. <handler>OnMenuCmd</handler>
  1501. <command>r.uslek</command>
  1502. </menuitem>
  1503. <menuitem>
  1504. <label>USLE R-factor</label>
  1505. <help>Computes USLE R factor, Rainfall erosivity index.</help>
  1506. <keywords>raster,hydrology,rainfall,erosion</keywords>
  1507. <handler>OnMenuCmd</handler>
  1508. <command>r.usler</command>
  1509. </menuitem>
  1510. </items>
  1511. </menu>
  1512. <menu>
  1513. <label>Groundwater modeling</label>
  1514. <items>
  1515. <menuitem>
  1516. <label>Groundwater flow</label>
  1517. <help>Numerical calculation program for transient, confined and unconfined groundwater flow in two dimensions.</help>
  1518. <keywords>raster,groundwater flow,hydrology</keywords>
  1519. <handler>OnMenuCmd</handler>
  1520. <command>r.gwflow</command>
  1521. </menuitem>
  1522. <menuitem>
  1523. <label>Groundwater solute transport</label>
  1524. <help>Numerical calculation program for transient, confined and unconfined solute transport in two dimensions</help>
  1525. <keywords>raster,hydrology,solute transport</keywords>
  1526. <handler>OnMenuCmd</handler>
  1527. <command>r.solute.transport</command>
  1528. </menuitem>
  1529. </items>
  1530. </menu>
  1531. <menu>
  1532. <label>Landscape structure modeling</label>
  1533. <items>
  1534. <menuitem>
  1535. <label>Analyze landscape</label>
  1536. <help>Contains a set of measures for attributes, diversity, texture, juxtaposition, and edge.</help>
  1537. <keywords>raster</keywords>
  1538. <handler>OnMenuCmd</handler>
  1539. <command>r.le.pixel</command>
  1540. </menuitem>
  1541. <menuitem>
  1542. <label>Analyze patches</label>
  1543. <help>Calculates attribute, patch size, core (interior) size, shape, fractal dimension, and perimeter measures for sets of patches in a landscape.</help>
  1544. <keywords>raster</keywords>
  1545. <handler>OnMenuCmd</handler>
  1546. <command>r.le.patch</command>
  1547. </menuitem>
  1548. </items>
  1549. </menu>
  1550. <menu>
  1551. <label>Landscape patch analysis</label>
  1552. <items>
  1553. <menuitem>
  1554. <label>Set up sampling and analysis framework</label>
  1555. <help>Configuration editor for r.li.'index'</help>
  1556. <keywords>raster,landscape structure analysis</keywords>
  1557. <handler>OnRLiSetup</handler>
  1558. </menuitem>
  1559. <separator />
  1560. <menuitem>
  1561. <label>Edge density</label>
  1562. <help>Calculates edge density index on a raster map, using a 4 neighbour algorithm</help>
  1563. <keywords>raster,landscape structure analysis,patch index</keywords>
  1564. <handler>OnMenuCmd</handler>
  1565. <command>r.li.edgedensity</command>
  1566. </menuitem>
  1567. <menuitem>
  1568. <label>Contrast weighted edge density</label>
  1569. <help>Calculates contrast weighted edge density index on a raster map</help>
  1570. <keywords>raster,landscape structure analysis,patch index</keywords>
  1571. <handler>OnMenuCmd</handler>
  1572. <command>r.li.cwed</command>
  1573. </menuitem>
  1574. <separator />
  1575. <menuitem>
  1576. <label>Patch area mean</label>
  1577. <help>Calculates mean patch size index on a raster map, using a 4 neighbour algorithm</help>
  1578. <keywords>raster,landscape structure analysis,patch index</keywords>
  1579. <handler>OnMenuCmd</handler>
  1580. <command>r.li.mps</command>
  1581. </menuitem>
  1582. <menuitem>
  1583. <label>Patch area range</label>
  1584. <help>Calculates range of patch area size on a raster map</help>
  1585. <keywords>raster,landscape structure analysis,patch index</keywords>
  1586. <handler>OnMenuCmd</handler>
  1587. <command>r.li.padrange</command>
  1588. </menuitem>
  1589. <menuitem>
  1590. <label>Patch area Std Dev</label>
  1591. <help>Calculates standard deviation of patch area a raster map</help>
  1592. <keywords>raster,landscape structure analysis,patch index</keywords>
  1593. <handler>OnMenuCmd</handler>
  1594. <command>r.li.padsd</command>
  1595. </menuitem>
  1596. <menuitem>
  1597. <label>Patch area Coeff Var</label>
  1598. <help>Calculates coefficient of variation of patch area on a raster map</help>
  1599. <keywords>raster,landscape structure analysis,patch index</keywords>
  1600. <handler>OnMenuCmd</handler>
  1601. <command>r.li.padcv</command>
  1602. </menuitem>
  1603. <menuitem>
  1604. <label>Patch density</label>
  1605. <help>Calculates patch density index on a raster map, using a 4 neighbour algorithm</help>
  1606. <keywords>raster,landscape structure analysis,patch index</keywords>
  1607. <handler>OnMenuCmd</handler>
  1608. <command>r.li.patchdensity</command>
  1609. </menuitem>
  1610. <menuitem>
  1611. <label>Patch number</label>
  1612. <help>Calculates patch number index on a raster map, using a 4 neighbour algorithm.</help>
  1613. <keywords>raster,landscape structure analysis,patch index</keywords>
  1614. <handler>OnMenuCmd</handler>
  1615. <command>r.li.patchnum</command>
  1616. </menuitem>
  1617. <separator />
  1618. <menuitem>
  1619. <label>Dominance's diversity</label>
  1620. <help>Calculates dominance's diversity index on a raster map</help>
  1621. <keywords>raster,landscape structure analysis,diversity index</keywords>
  1622. <handler>OnMenuCmd</handler>
  1623. <command>r.li.dominance</command>
  1624. </menuitem>
  1625. <menuitem>
  1626. <label>Shannon's diversity</label>
  1627. <help>Calculates Shannon's diversity index on a raster map</help>
  1628. <keywords>raster,landscape structure analysis,diversity index</keywords>
  1629. <handler>OnMenuCmd</handler>
  1630. <command>r.li.shannon</command>
  1631. </menuitem>
  1632. <menuitem>
  1633. <label>Simpson's diversity</label>
  1634. <help>Calculates Simpson's diversity index on a raster map</help>
  1635. <keywords>raster,landscape structure analysis,diversity index</keywords>
  1636. <handler>OnMenuCmd</handler>
  1637. <command>r.li.simpson</command>
  1638. </menuitem>
  1639. <separator />
  1640. <menuitem>
  1641. <label>Richness</label>
  1642. <help>Calculates dominance's diversity index on a raster map</help>
  1643. <keywords>raster,landscape structure analysis,dominance index</keywords>
  1644. <handler>OnMenuCmd</handler>
  1645. <command>r.li.richness</command>
  1646. </menuitem>
  1647. <menuitem>
  1648. <label>Shape index</label>
  1649. <help>Calculates shape index on a raster map</help>
  1650. <keywords>raster,landscape structure analysis,patch index</keywords>
  1651. <handler>OnMenuCmd</handler>
  1652. <command>r.li.shape</command>
  1653. </menuitem>
  1654. </items>
  1655. </menu>
  1656. <menu>
  1657. <label>Wildfire modeling</label>
  1658. <items>
  1659. <menuitem>
  1660. <label>Rate of spread</label>
  1661. <help>Generates rate of spread raster map layers.</help>
  1662. <keywords>raster,fire</keywords>
  1663. <handler>OnMenuCmd</handler>
  1664. <command>r.ros</command>
  1665. </menuitem>
  1666. <menuitem>
  1667. <label>Least-cost spread paths</label>
  1668. <help>Recursively traces the least cost path backwards to cells from which the cumulative cost was determined.</help>
  1669. <keywords>raster,fire,cumulative costs</keywords>
  1670. <handler>OnMenuCmd</handler>
  1671. <command>r.spreadpath</command>
  1672. </menuitem>
  1673. <menuitem>
  1674. <label>Anisotropic spread simulation</label>
  1675. <help>Simulates elliptically anisotropic spread on a graphics window and generates a raster map of the cumulative time of spread, given raster maps containing the rates of spread (ROS), the ROS directions and the spread origins.</help>
  1676. <keywords>raster,fire</keywords>
  1677. <handler>OnMenuCmd</handler>
  1678. <command>r.spread</command>
  1679. </menuitem>
  1680. </items>
  1681. </menu>
  1682. <separator />
  1683. <menu>
  1684. <label>Change category values and labels</label>
  1685. <items>
  1686. <menuitem>
  1687. <label>Interactively edit category values</label>
  1688. <help>Edits cell values in a raster map.</help>
  1689. <keywords>display,editing,raster</keywords>
  1690. <handler>OnMenuCmd</handler>
  1691. <command>d.rast.edit</command>
  1692. </menuitem>
  1693. <separator />
  1694. <menuitem>
  1695. <label>Reclassify by size</label>
  1696. <help>Reclasses a raster map greater or less than user specified area size (in hectares).</help>
  1697. <keywords>raster,statistics,aggregation</keywords>
  1698. <handler>OnMenuCmd</handler>
  1699. <command>r.reclass.area</command>
  1700. </menuitem>
  1701. <menuitem>
  1702. <label>Reclassify</label>
  1703. <help>Reclassify raster map based on category values.</help>
  1704. <keywords>raster,reclassification</keywords>
  1705. <handler>OnMenuCmd</handler>
  1706. <command>r.reclass</command>
  1707. </menuitem>
  1708. <separator />
  1709. <menuitem>
  1710. <label>Recode</label>
  1711. <help>Recodes categorical raster maps.</help>
  1712. <keywords>raster,recode categories</keywords>
  1713. <handler>OnMenuCmd</handler>
  1714. <command>r.recode</command>
  1715. </menuitem>
  1716. <separator />
  1717. <menuitem>
  1718. <label>Rescale</label>
  1719. <help>Rescales the range of category values in a raster map layer.</help>
  1720. <keywords>raster,rescale</keywords>
  1721. <handler>OnMenuCmd</handler>
  1722. <command>r.rescale</command>
  1723. </menuitem>
  1724. <menuitem>
  1725. <label>Rescale with histogram</label>
  1726. <help>Rescales histogram equalized the range of category values in a raster map layer.</help>
  1727. <keywords>raster,rescale</keywords>
  1728. <handler>OnMenuCmd</handler>
  1729. <command>r.rescale.eq</command>
  1730. </menuitem>
  1731. </items>
  1732. </menu>
  1733. <separator />
  1734. <menu>
  1735. <label>Generate random cells</label>
  1736. <items>
  1737. <menuitem>
  1738. <label>Random cells</label>
  1739. <help>Generates random cell values with spatial dependence.</help>
  1740. <keywords>raster,sampling,random</keywords>
  1741. <handler>OnMenuCmd</handler>
  1742. <command>r.random.cells</command>
  1743. </menuitem>
  1744. <menuitem>
  1745. <label>Random cells and vector points</label>
  1746. <help>Creates a raster map layer and vector point map containing randomly located points.</help>
  1747. <keywords>raster,sampling,vector,random</keywords>
  1748. <handler>OnMenuCmd</handler>
  1749. <command>r.random</command>
  1750. </menuitem>
  1751. </items>
  1752. </menu>
  1753. <menu>
  1754. <label>Generate surfaces</label>
  1755. <items>
  1756. <menuitem>
  1757. <label>Fractal surface</label>
  1758. <help>Creates a fractal surface of a given fractal dimension.</help>
  1759. <keywords>raster,surface,fractal</keywords>
  1760. <handler>OnMenuCmd</handler>
  1761. <command>r.surf.fractal</command>
  1762. </menuitem>
  1763. <separator />
  1764. <menuitem>
  1765. <label>Gaussian kernel density surface</label>
  1766. <help>Generates a raster density map from vector points map.</help>
  1767. <keywords>vector,kernel density</keywords>
  1768. <handler>OnMenuCmd</handler>
  1769. <command>v.kernel</command>
  1770. </menuitem>
  1771. <menuitem>
  1772. <label>Gaussian deviates surface</label>
  1773. <help>Generates a raster map using gaussian random number generator.</help>
  1774. <keywords>raster,surface,random</keywords>
  1775. <handler>OnMenuCmd</handler>
  1776. <command>r.surf.gauss</command>
  1777. </menuitem>
  1778. <separator />
  1779. <menuitem>
  1780. <label>Plane</label>
  1781. <help>Creates raster plane map given dip (inclination), aspect (azimuth) and one point.</help>
  1782. <keywords>raster,elevation</keywords>
  1783. <handler>OnMenuCmd</handler>
  1784. <command>r.plane</command>
  1785. </menuitem>
  1786. <separator />
  1787. <menuitem>
  1788. <label>Random deviates surface</label>
  1789. <help>Produces a raster map of uniform random deviates whose range can be expressed by the user.</help>
  1790. <keywords>raster,surface,random</keywords>
  1791. <handler>OnMenuCmd</handler>
  1792. <command>r.surf.random</command>
  1793. </menuitem>
  1794. <menuitem>
  1795. <label>Random surface with spatial dependence</label>
  1796. <help>Generates random surface(s) with spatial dependence.</help>
  1797. <keywords>raster,surface,random</keywords>
  1798. <handler>OnMenuCmd</handler>
  1799. <command>r.random.surface</command>
  1800. </menuitem>
  1801. </items>
  1802. </menu>
  1803. <menu>
  1804. <label>Interpolate surfaces</label>
  1805. <items>
  1806. <menuitem>
  1807. <label>Bilinear and bicubic from vector points</label>
  1808. <help>Performs bicubic or bilinear spline interpolation with Tykhonov regularization.</help>
  1809. <keywords>vector,surface,interpolation,LIDAR</keywords>
  1810. <handler>OnMenuCmd</handler>
  1811. <command>v.surf.bspline</command>
  1812. </menuitem>
  1813. <separator />
  1814. <menuitem>
  1815. <label>IDW from raster points</label>
  1816. <help>Surface interpolation utility for raster map.</help>
  1817. <keywords>raster,surface,interpolation,IDW</keywords>
  1818. <handler>OnMenuCmd</handler>
  1819. <command>r.surf.idw</command>
  1820. </menuitem>
  1821. <menuitem>
  1822. <label>IDW from raster points (alternate method for sparse points)</label>
  1823. <help>Surface generation program.</help>
  1824. <keywords>raster,surface,interpolation,IDW</keywords>
  1825. <handler>OnMenuCmd</handler>
  1826. <command>r.surf.idw2</command>
  1827. </menuitem>
  1828. <menuitem>
  1829. <label>IDW from vector points</label>
  1830. <help>Surface interpolation from vector point data by Inverse Distance Squared Weighting.</help>
  1831. <keywords>vector,surface,interpolation,IDW</keywords>
  1832. <handler>OnMenuCmd</handler>
  1833. <command>v.surf.idw</command>
  1834. </menuitem>
  1835. <separator />
  1836. <menuitem>
  1837. <label>Raster contours</label>
  1838. <help>Generates surface raster map from rasterized contours.</help>
  1839. <keywords>raster,surface,interpolation</keywords>
  1840. <handler>OnMenuCmd</handler>
  1841. <command>r.surf.contour</command>
  1842. </menuitem>
  1843. <menuitem>
  1844. <label>Regularized spline tension</label>
  1845. <help>Spatial approximation and topographic analysis from given point or isoline data in vector format to floating point raster format using regularized spline with tension.</help>
  1846. <keywords>vector,surface,interpolation,RST</keywords>
  1847. <handler>OnMenuCmd</handler>
  1848. <command>v.surf.rst</command>
  1849. </menuitem>
  1850. <separator />
  1851. <menuitem>
  1852. <label>Ordinary or block kriging</label>
  1853. <help>Performs ordinary or block kriging.</help>
  1854. <keywords>vector,raster,interpolation,kriging</keywords>
  1855. <handler>RunMenuCmd</handler>
  1856. <command>v.krige</command>
  1857. </menuitem>
  1858. <separator />
  1859. <menuitem>
  1860. <label>Fill NULL cells</label>
  1861. <help>Fills no-data areas in raster maps using spline interpolation.</help>
  1862. <keywords>raster,elevation,interpolation</keywords>
  1863. <handler>OnMenuCmd</handler>
  1864. <command>r.fillnulls</command>
  1865. </menuitem>
  1866. </items>
  1867. </menu>
  1868. <separator />
  1869. <menu>
  1870. <label>Report and statistics</label>
  1871. <items>
  1872. <menuitem>
  1873. <label>Basic raster metadata</label>
  1874. <help>Outputs basic information about a raster map.</help>
  1875. <keywords>raster,metadata,history</keywords>
  1876. <handler>OnMenuCmd</handler>
  1877. <command>r.info</command>
  1878. </menuitem>
  1879. <menuitem>
  1880. <label>Manage category information</label>
  1881. <help>Manages category values and labels associated with user-specified raster map layers.</help>
  1882. <keywords>raster,category</keywords>
  1883. <handler>OnMenuCmd</handler>
  1884. <command>r.category</command>
  1885. </menuitem>
  1886. <separator />
  1887. <menuitem>
  1888. <label>General statistics</label>
  1889. <help>Generates area statistics for raster map layers.</help>
  1890. <keywords>raster,statistics</keywords>
  1891. <handler>OnMenuCmd</handler>
  1892. <command>r.stats</command>
  1893. </menuitem>
  1894. <menuitem>
  1895. <label>Quantiles for large data sets</label>
  1896. <help>Compute quantiles using two passes.</help>
  1897. <keywords>raster,algebra,statistics</keywords>
  1898. <handler>OnMenuCmd</handler>
  1899. <command>r.quantile</command>
  1900. </menuitem>
  1901. <menuitem>
  1902. <label>Range of category values</label>
  1903. <help>Prints terse list of category values found in a raster map layer.</help>
  1904. <keywords>raster,metadata</keywords>
  1905. <handler>OnMenuCmd</handler>
  1906. <command>r.describe</command>
  1907. </menuitem>
  1908. <menuitem>
  1909. <label>Sum area by raster map and category</label>
  1910. <help>Reports statistics for raster maps.</help>
  1911. <keywords>raster,statistics</keywords>
  1912. <handler>OnMenuCmd</handler>
  1913. <command>r.report</command>
  1914. </menuitem>
  1915. <menuitem>
  1916. <label>Statistics for clumped cells</label>
  1917. <help>Calculates the volume of data "clumps", and (optionally) produces a GRASS vector points map containing the calculated centroids of these clumps.</help>
  1918. <keywords>raster,volume</keywords>
  1919. <handler>OnMenuCmd</handler>
  1920. <command>r.volume</command>
  1921. </menuitem>
  1922. <menuitem>
  1923. <label>Total corrected area</label>
  1924. <help>Prints estimation of surface area for raster map.</help>
  1925. <keywords>raster,surface,statistics,area estimation</keywords>
  1926. <handler>OnMenuCmd</handler>
  1927. <command>r.surf.area</command>
  1928. </menuitem>
  1929. <menuitem>
  1930. <label>Univariate raster statistics</label>
  1931. <help>Calculates univariate statistics from the non-null cells of a raster map.</help>
  1932. <keywords>raster,statistics</keywords>
  1933. <handler>OnMenuCmd</handler>
  1934. <command>r.univar</command>
  1935. </menuitem>
  1936. <separator />
  1937. <menuitem>
  1938. <label>Sample transects</label>
  1939. <help>Outputs the raster map layer values lying on user-defined line(s).</help>
  1940. <keywords>raster,profile</keywords>
  1941. <handler>OnMenuCmd</handler>
  1942. <command>r.profile</command>
  1943. </menuitem>
  1944. <menuitem>
  1945. <label>Sample transects (bearing/distance)</label>
  1946. <help>Outputs raster map layer values lying along user defined transect line(s).</help>
  1947. <keywords>raster,transect</keywords>
  1948. <handler>OnMenuCmd</handler>
  1949. <command>r.transect</command>
  1950. </menuitem>
  1951. <separator />
  1952. <menuitem>
  1953. <label>Covariance/correlation</label>
  1954. <help>Outputs a covariance/correlation matrix for user-specified raster map layer(s).</help>
  1955. <keywords>raster,statistics</keywords>
  1956. <handler>OnMenuCmd</handler>
  1957. <command>r.covar</command>
  1958. </menuitem>
  1959. <menuitem>
  1960. <label>Linear regression</label>
  1961. <help>Calculates linear regression from two raster maps: y = a + b*x.</help>
  1962. <keywords>raster,statistics</keywords>
  1963. <handler>OnMenuCmd</handler>
  1964. <command>r.regression.line</command>
  1965. </menuitem>
  1966. <menuitem>
  1967. <label>Mutual category occurrences</label>
  1968. <help>Tabulates the mutual occurrence (coincidence) of categories for two raster map layers.</help>
  1969. <keywords>raster,statistics</keywords>
  1970. <handler>OnMenuCmd</handler>
  1971. <command>r.coin</command>
  1972. </menuitem>
  1973. </items>
  1974. </menu>
  1975. </items>
  1976. </menu>
  1977. <menu>
  1978. <label>&amp;Vector</label>
  1979. <items>
  1980. <menu>
  1981. <label>Develop vector map</label>
  1982. <items>
  1983. <menuitem>
  1984. <label>Create new vector map</label>
  1985. <help>Create new empty vector map</help>
  1986. <handler>OnNewVector</handler>
  1987. </menuitem>
  1988. <menuitem>
  1989. <label>Edit vector map (non-interactively)</label>
  1990. <help>Edits a vector map, allows adding, deleting and modifying selected vector features.</help>
  1991. <keywords>vector,geometry,editing</keywords>
  1992. <handler>OnMenuCmd</handler>
  1993. <command>v.edit</command>
  1994. </menuitem>
  1995. <separator />
  1996. <menuitem>
  1997. <label>Convert object types</label>
  1998. <help>Changes type of vector features.</help>
  1999. <keywords>vector,geometry</keywords>
  2000. <handler>OnMenuCmd</handler>
  2001. <command>v.type</command>
  2002. </menuitem>
  2003. <separator />
  2004. <menuitem>
  2005. <label>Parallel lines</label>
  2006. <help>Creates parallel line to input vector lines.</help>
  2007. <keywords>vector,geometry</keywords>
  2008. <handler>OnMenuCmd</handler>
  2009. <command>v.parallel</command>
  2010. </menuitem>
  2011. <separator />
  2012. <menuitem>
  2013. <label>Dissolve boundaries</label>
  2014. <help>Dissolves boundaries between adjacent areas sharing a common category number or attribute.</help>
  2015. <keywords>vector,dissolve,area</keywords>
  2016. <handler>OnMenuCmd</handler>
  2017. <command>v.dissolve</command>
  2018. </menuitem>
  2019. <separator />
  2020. <menuitem>
  2021. <label>Create 3D vector over raster</label>
  2022. <help>Converts vector map to 3D by sampling of elevation raster map.</help>
  2023. <keywords>vector,geometry,sampling,3D</keywords>
  2024. <handler>OnMenuCmd</handler>
  2025. <command>v.drape</command>
  2026. </menuitem>
  2027. <menuitem>
  2028. <label>Extrude 3D vector map</label>
  2029. <help>Extrudes flat vector features to 3D with defined height.</help>
  2030. <keywords>vector,geometry,3D</keywords>
  2031. <handler>OnMenuCmd</handler>
  2032. <command>v.extrude</command>
  2033. </menuitem>
  2034. <separator />
  2035. <menuitem>
  2036. <label>Create labels</label>
  2037. <help>Creates paint labels for a vector map from attached attributes.</help>
  2038. <keywords>vector,paint labels</keywords>
  2039. <handler>OnMenuCmd</handler>
  2040. <command>v.label</command>
  2041. </menuitem>
  2042. <menuitem>
  2043. <label>Create optimally placed labels</label>
  2044. <help>Create optimally placed labels for vector map(s)</help>
  2045. <keywords>vector,paint labels</keywords>
  2046. <handler>OnMenuCmd</handler>
  2047. <command>v.label.sa</command>
  2048. </menuitem>
  2049. <separator />
  2050. <menuitem>
  2051. <label>Reposition vector map</label>
  2052. <help>Performs an affine transformation (shift, scale and rotate, or GPCs) on vector map.</help>
  2053. <keywords>vector,transformation</keywords>
  2054. <handler>OnMenuCmd</handler>
  2055. <command>v.transform</command>
  2056. </menuitem>
  2057. <menuitem>
  2058. <label>Rectify vector map</label>
  2059. <help>Rectifies a vector by computing a coordinate transformation for each object in the vector based on the control points.</help>
  2060. <keywords>vector,rectify</keywords>
  2061. <handler>OnMenuCmd</handler>
  2062. <command>v.rectify</command>
  2063. </menuitem>
  2064. <menuitem>
  2065. <label>Reproject vector map</label>
  2066. <help>Re-projects a vector map from one location to the current location.</help>
  2067. <keywords>vector,projection,transformation</keywords>
  2068. <handler>OnMenuCmd</handler>
  2069. <command>v.proj</command>
  2070. </menuitem>
  2071. <separator />
  2072. <menuitem>
  2073. <label>Support file maintenance</label>
  2074. <help>Updates vector map metadata.</help>
  2075. <keywords>vector,metadata</keywords>
  2076. <handler>OnMenuCmd</handler>
  2077. <command>v.support</command>
  2078. </menuitem>
  2079. </items>
  2080. </menu>
  2081. <menu>
  2082. <label>Topology maintenance</label>
  2083. <items>
  2084. <menuitem>
  2085. <label>Create or rebuild topology</label>
  2086. <help>Creates topology for vector map.</help>
  2087. <keywords>vector,topology,geometry</keywords>
  2088. <handler>OnMenuCmd</handler>
  2089. <command>v.build</command>
  2090. </menuitem>
  2091. <menuitem>
  2092. <label>Rebuild topology on all vector maps</label>
  2093. <help>Rebuilds topology on all vector maps in the current mapset.</help>
  2094. <keywords>vector,topology</keywords>
  2095. <handler>OnMenuCmd</handler>
  2096. <command>v.build.all</command>
  2097. </menuitem>
  2098. <separator />
  2099. <menuitem>
  2100. <label>Build polylines</label>
  2101. <help>Builds polylines from lines or boundaries.</help>
  2102. <keywords>vector,topology,geometry</keywords>
  2103. <handler>OnMenuCmd</handler>
  2104. <command>v.build.polylines</command>
  2105. </menuitem>
  2106. <menuitem>
  2107. <label>Split lines</label>
  2108. <help>Splits vector lines to shorter segments.</help>
  2109. <keywords>vector,geometry</keywords>
  2110. <handler>OnMenuCmd</handler>
  2111. <command>v.split</command>
  2112. </menuitem>
  2113. <menuitem>
  2114. <label>Split polylines</label>
  2115. <help>Creates points/segments from input vector lines and positions.</help>
  2116. <keywords>vector,geometry</keywords>
  2117. <handler>OnMenuCmd</handler>
  2118. <command>v.segment</command>
  2119. </menuitem>
  2120. <separator />
  2121. <menuitem>
  2122. <label>Clean vector map</label>
  2123. <help>Toolset for cleaning topology of vector map.</help>
  2124. <keywords>vector,topology,geometry</keywords>
  2125. <handler>OnVectorCleaning</handler>
  2126. <command>v.clean</command>
  2127. </menuitem>
  2128. <menuitem>
  2129. <label>Smooth or simplify</label>
  2130. <help>Performs vector based generalization.</help>
  2131. <keywords>vector,generalization,simplification,smoothing,displacement,network generalization</keywords>
  2132. <handler>OnMenuCmd</handler>
  2133. <command>v.generalize</command>
  2134. </menuitem>
  2135. <menuitem>
  2136. <label>Add centroids</label>
  2137. <help>Adds missing centroids to closed boundaries.</help>
  2138. <keywords>vector,centroid,area</keywords>
  2139. <handler>OnMenuCmd</handler>
  2140. <command>v.centroids</command>
  2141. </menuitem>
  2142. </items>
  2143. </menu>
  2144. <menu>
  2145. <label>Manage colors</label>
  2146. <items>
  2147. <menuitem>
  2148. <label>Color tables</label>
  2149. <help>Creates/modifies the color table associated with a vector map.</help>
  2150. <keywords>vector,color table</keywords>
  2151. <handler>OnMenuCmd</handler>
  2152. <command>v.colors</command>
  2153. </menuitem>
  2154. <menuitem>
  2155. <label>Color rules</label>
  2156. <help>Interactive management of vector color tables.</help>
  2157. <handler>OnVectorRules</handler>
  2158. <keywords>vector,color table</keywords>
  2159. </menuitem>
  2160. <menuitem>
  2161. <label>Export color table</label>
  2162. <help>Exports the color table associated with a vector map.</help>
  2163. <keywords>vector,color table,export</keywords>
  2164. <handler>OnMenuCmd</handler>
  2165. <command>v.colors.out</command>
  2166. </menuitem>
  2167. </items>
  2168. </menu>
  2169. <menu>
  2170. <label>Query vector map</label>
  2171. <items>
  2172. <menuitem>
  2173. <label>Query with coordinate(s)</label>
  2174. <help>Queries a vector map at given locations.</help>
  2175. <keywords>vector,querying,position</keywords>
  2176. <handler>OnMenuCmd</handler>
  2177. <command>v.what</command>
  2178. </menuitem>
  2179. <menuitem>
  2180. <label>Query vector attribute data</label>
  2181. <help>Prints vector map attributes.</help>
  2182. <keywords>vector,attribute table,database</keywords>
  2183. <handler>OnMenuCmd</handler>
  2184. <command>v.db.select</command>
  2185. </menuitem>
  2186. </items>
  2187. </menu>
  2188. <menu>
  2189. <label>Feature selection</label>
  2190. <items>
  2191. <menuitem>
  2192. <label>Select by attributes</label>
  2193. <help>Selects vector features from an existing vector map and creates a new vector map containing only the selected features.</help>
  2194. <keywords>vector,extract</keywords>
  2195. <handler>OnMenuCmd</handler>
  2196. <command>v.extract</command>
  2197. </menuitem>
  2198. <menuitem>
  2199. <label>Select by another map</label>
  2200. <help>Selects features from vector map (A) by features from other vector map (B).</help>
  2201. <keywords>vector,geometry,spatial query</keywords>
  2202. <handler>OnMenuCmd</handler>
  2203. <command>v.select</command>
  2204. </menuitem>
  2205. </items>
  2206. </menu>
  2207. <menu>
  2208. <label>Map type conversions</label>
  2209. <items>
  2210. <menuitem>
  2211. <label>Vector to raster</label>
  2212. <help>Converts (rasterize) a vector map into a raster map.</help>
  2213. <keywords>vector,conversion,raster,rasterization</keywords>
  2214. <handler>OnMenuCmd</handler>
  2215. <command>v.to.rast</command>
  2216. </menuitem>
  2217. <menuitem>
  2218. <label>Vector to volume</label>
  2219. <help>Converts a vector map (only points) into a 3D raster map.</help>
  2220. <keywords>vector,conversion,voxel</keywords>
  2221. <handler>OnMenuCmd</handler>
  2222. <command>v.to.rast3</command>
  2223. </menuitem>
  2224. <menuitem>
  2225. <label>2D vector to 3D vector</label>
  2226. <help>Performs transformation of 2D vector features to 3D.</help>
  2227. <keywords>vector,geometry,3D</keywords>
  2228. <handler>OnMenuCmd</handler>
  2229. <command>v.to.3d</command>
  2230. </menuitem>
  2231. <menuitem>
  2232. <label>Sites to vector</label>
  2233. <help>Converts a GRASS site_lists file into a vector map.</help>
  2234. <keywords>vector,import,sites</keywords>
  2235. <handler>OnMenuCmd</handler>
  2236. <command>v.in.sites</command>
  2237. </menuitem>
  2238. </items>
  2239. </menu>
  2240. <separator />
  2241. <menuitem>
  2242. <label>Buffer vectors</label>
  2243. <help>Creates a buffer around vector features of given type.</help>
  2244. <keywords>vector,buffer,geometry</keywords>
  2245. <handler>OnMenuCmd</handler>
  2246. <command>v.buffer</command>
  2247. </menuitem>
  2248. <menu>
  2249. <label>Lidar analysis</label>
  2250. <items>
  2251. <menuitem>
  2252. <label>Detect edges</label>
  2253. <help>Detects the object's edges from a LIDAR data set.</help>
  2254. <keywords>vector,LIDAR,edges</keywords>
  2255. <handler>OnMenuCmd</handler>
  2256. <command>v.lidar.edgedetection</command>
  2257. </menuitem>
  2258. <menuitem>
  2259. <label>Detect interiors</label>
  2260. <help>Building contour determination and Region Growing algorithm for determining the building inside</help>
  2261. <keywords>vector,LIDAR</keywords>
  2262. <handler>OnMenuCmd</handler>
  2263. <command>v.lidar.growing</command>
  2264. </menuitem>
  2265. <menuitem>
  2266. <label>Correct and reclassify objects</label>
  2267. <help>Correction of the v.lidar.growing output. It is the last of the three algorithms for LIDAR filtering.</help>
  2268. <keywords>vector,LIDAR</keywords>
  2269. <handler>OnMenuCmd</handler>
  2270. <command>v.lidar.correction</command>
  2271. </menuitem>
  2272. </items>
  2273. </menu>
  2274. <menu>
  2275. <label>Linear referencing</label>
  2276. <items>
  2277. <menuitem>
  2278. <label>Create LRS</label>
  2279. <help>Creates a linear reference system.</help>
  2280. <keywords>vector,Linear Reference System,networking</keywords>
  2281. <handler>OnMenuCmd</handler>
  2282. <command>v.lrs.create</command>
  2283. </menuitem>
  2284. <menuitem>
  2285. <label>Create stationing</label>
  2286. <help>Creates stationing from input lines, and linear reference system.</help>
  2287. <keywords>vector,Linear Reference System,networking</keywords>
  2288. <handler>OnMenuCmd</handler>
  2289. <command>v.lrs.label</command>
  2290. </menuitem>
  2291. <menuitem>
  2292. <label>Create points/segments</label>
  2293. <help>Creates points/segments from input lines, linear reference system and positions read from stdin or a file.</help>
  2294. <keywords>vector,Linear Reference System,networking</keywords>
  2295. <handler>OnMenuCmd</handler>
  2296. <command>v.lrs.segment</command>
  2297. </menuitem>
  2298. <menuitem>
  2299. <label>Find line id and offset</label>
  2300. <help>Finds line id and real km+offset for given points in vector map using linear reference system.</help>
  2301. <keywords>vector,Linear Reference System,networking</keywords>
  2302. <handler>OnMenuCmd</handler>
  2303. <command>v.lrs.where</command>
  2304. </menuitem>
  2305. </items>
  2306. </menu>
  2307. <menuitem>
  2308. <label>Nearest features</label>
  2309. <help>Finds the nearest element in vector map 'to' for elements in vector map 'from'.</help>
  2310. <keywords>vector,distance,database,attribute table</keywords>
  2311. <handler>OnMenuCmd</handler>
  2312. <command>v.distance</command>
  2313. </menuitem>
  2314. <menu>
  2315. <label>Network analysis</label>
  2316. <items>`
  2317. <menuitem>
  2318. <label>Vector network analysis tool</label>
  2319. <help>Tool for interactive vector network analysis.</help>
  2320. <keywords>gui,vector,network</keywords>
  2321. <handler>OnVNet</handler>
  2322. </menuitem>
  2323. <separator />
  2324. <menuitem>
  2325. <label>Network preparation</label>
  2326. <help>Performs network maintenance.</help>
  2327. <keywords>vector,network,maintenance</keywords>
  2328. <handler>OnMenuCmd</handler>
  2329. <command>v.net</command>
  2330. </menuitem>
  2331. <separator />
  2332. <menuitem>
  2333. <label>Allocate subnets</label>
  2334. <help>Allocate subnets for nearest centers (direction from center).</help>
  2335. <keywords>vector,network,allocation</keywords>
  2336. <handler>OnMenuCmd</handler>
  2337. <command>v.net.alloc</command>
  2338. </menuitem>
  2339. <menuitem>
  2340. <label>Split net</label>
  2341. <help>Splits net by cost isolines.</help>
  2342. <keywords>vector,network,isolines</keywords>
  2343. <handler>OnMenuCmd</handler>
  2344. <command>v.net.iso</command>
  2345. </menuitem>
  2346. <separator />
  2347. <menuitem>
  2348. <label>Shortest path</label>
  2349. <help>Finds shortest path on vector network.</help>
  2350. <keywords>vector,network,shortest path</keywords>
  2351. <handler>OnMenuCmd</handler>
  2352. <command>v.net.path</command>
  2353. </menuitem>
  2354. <menuitem>
  2355. <label>Shortest path for sets of features</label>
  2356. <help>Computes shortest distance via the network between the given sets of features.</help>
  2357. <keywords>vector,network,shortest path</keywords>
  2358. <handler>OnMenuCmd</handler>
  2359. <command>v.net.distance</command>
  2360. </menuitem>
  2361. <menuitem>
  2362. <label>Shortest path using timetables</label>
  2363. <help>Finds shortest path using timetables.</help>
  2364. <keywords>vector,network,shortest path</keywords>
  2365. <handler>OnMenuCmd</handler>
  2366. <command>v.net.timetable</command>
  2367. </menuitem>
  2368. <menuitem>
  2369. <label>Shortest path for all pairs</label>
  2370. <help>Computes the shortest path between all pairs of nodes in the network.</help>
  2371. <keywords>vector,network,shortest path</keywords>
  2372. <handler>OnMenuCmd</handler>
  2373. <command>v.net.allpairs</command>
  2374. </menuitem>
  2375. <separator />
  2376. <menuitem>
  2377. <label>Visibility network</label>
  2378. <help>Visibility graph construction.</help>
  2379. <keywords>vector,network,path,visibility</keywords>
  2380. <handler>OnMenuCmd</handler>
  2381. <command>v.net.visibility</command>
  2382. </menuitem>
  2383. <menuitem>
  2384. <label>Bridges and articulation points</label>
  2385. <help>Computes bridges and articulation points in the network.</help>
  2386. <keywords>vector,network,articulation points</keywords>
  2387. <handler>OnMenuCmd</handler>
  2388. <command>v.net.bridge</command>
  2389. </menuitem>
  2390. <menuitem>
  2391. <label>Maximum flow</label>
  2392. <help>Computes the maximum flow between two sets of nodes in the network.</help>
  2393. <keywords>vector,network,flow</keywords>
  2394. <handler>OnMenuCmd</handler>
  2395. <command>v.net.flow</command>
  2396. </menuitem>
  2397. <menuitem>
  2398. <label>Vertex connectivity</label>
  2399. <help>Computes vertex connectivity between two sets of nodes in the network.</help>
  2400. <keywords>vector,network,connectivity</keywords>
  2401. <handler>OnMenuCmd</handler>
  2402. <command>v.net.connectivity</command>
  2403. </menuitem>
  2404. <menuitem>
  2405. <label>Components</label>
  2406. <help>Computes strongly and weakly connected components in the network.</help>
  2407. <keywords>vector,network,components</keywords>
  2408. <handler>OnMenuCmd</handler>
  2409. <command>v.net.components</command>
  2410. </menuitem>
  2411. <menuitem>
  2412. <label>Centrality</label>
  2413. <help>Computes degree, centrality, betweeness, closeness and eigenvector centrality measures in the network.</help>
  2414. <keywords>vector,network,centrality measures</keywords>
  2415. <handler>OnMenuCmd</handler>
  2416. <command>v.net.centrality</command>
  2417. </menuitem>
  2418. <separator />
  2419. <menuitem>
  2420. <label>Steiner tree</label>
  2421. <help>Create Steiner tree for the network and given terminals</help>
  2422. <keywords>vector,network,steiner tree</keywords>
  2423. <handler>OnMenuCmd</handler>
  2424. <command>v.net.steiner</command>
  2425. </menuitem>
  2426. <menuitem>
  2427. <label>Minimum spanning tree</label>
  2428. <help>Computes minimum spanning tree for the network.</help>
  2429. <keywords>vector,network,spanning tree</keywords>
  2430. <handler>OnMenuCmd</handler>
  2431. <command>v.net.spanningtree</command>
  2432. </menuitem>
  2433. <menuitem>
  2434. <label>Traveling salesman analysis</label>
  2435. <help>Creates a cycle connecting given nodes (Traveling salesman problem).</help>
  2436. <keywords>vector,network,salesman</keywords>
  2437. <handler>OnMenuCmd</handler>
  2438. <command>v.net.salesman</command>
  2439. </menuitem>
  2440. </items>
  2441. </menu>
  2442. <menu>
  2443. <label>Overlay vector maps</label>
  2444. <items>
  2445. <menuitem>
  2446. <label>Overlay vector maps</label>
  2447. <help>Overlays two vector maps.</help>
  2448. <keywords>vector,geometry,spatial query</keywords>
  2449. <handler>OnMenuCmd</handler>
  2450. <command>v.overlay</command>
  2451. </menuitem>
  2452. <menuitem>
  2453. <label>Patch vector maps</label>
  2454. <help>Creates a new vector map by combining other vector maps.</help>
  2455. <keywords>vector,geometry</keywords>
  2456. <handler>OnMenuCmd</handler>
  2457. <command>v.patch</command>
  2458. </menuitem>
  2459. </items>
  2460. </menu>
  2461. <separator />
  2462. <menu>
  2463. <label>Manage categories</label>
  2464. <items>
  2465. <menuitem>
  2466. <label>Change or report categories</label>
  2467. <help>Attaches, deletes or reports vector categories to map geometry.</help>
  2468. <keywords>vector,category</keywords>
  2469. <handler>OnMenuCmd</handler>
  2470. <command>v.category</command>
  2471. </menuitem>
  2472. <menuitem>
  2473. <label>Reclassify</label>
  2474. <help>Changes vector category values for an existing vector map according to results of SQL queries or a value in attribute table column.</help>
  2475. <keywords>vector,reclassification,attributes</keywords>
  2476. <handler>OnMenuCmd</handler>
  2477. <command>v.reclass</command>
  2478. </menuitem>
  2479. </items>
  2480. </menu>
  2481. <menu>
  2482. <label>Update attributes</label>
  2483. <items>
  2484. <menuitem>
  2485. <label>Update area attributes from raster</label>
  2486. <help>Calculates univariate statistics from a raster map based on vector polygon map and uploads statistics to new attribute columns.</help>
  2487. <keywords>vector,statistics,raster</keywords>
  2488. <handler>OnMenuCmd</handler>
  2489. <command>v.rast.stats</command>
  2490. </menuitem>
  2491. <menuitem>
  2492. <label>Update area attributes from vector</label>
  2493. <help>Count points in areas, calculate statistics from point attributes.</help>
  2494. <keywords>vector,attribute table,database</keywords>
  2495. <handler>OnMenuCmd</handler>
  2496. <command>v.vect.stats</command>
  2497. </menuitem>
  2498. <menuitem>
  2499. <label>Update point attributes from areas</label>
  2500. <help>Uploads vector values at positions of vector points to the table.</help>
  2501. <keywords>vector,sampling,database,attribute table</keywords>
  2502. <handler>OnMenuCmd</handler>
  2503. <command>v.what.vect</command>
  2504. </menuitem>
  2505. <menuitem>
  2506. <label>Update database values from vector</label>
  2507. <help>Populates attribute values from vector features.</help>
  2508. <keywords>vector,attribute table,database</keywords>
  2509. <handler>OnMenuCmd</handler>
  2510. <command>v.to.db</command>
  2511. </menuitem>
  2512. <separator />
  2513. <menuitem>
  2514. <label>Sample raster maps at point locations</label>
  2515. <help>Uploads raster values at positions of vector points to the table.</help>
  2516. <keywords>vector,sampling,raster,position,querying,attribute table</keywords>
  2517. <handler>OnMenuCmd</handler>
  2518. <command>v.what.rast</command>
  2519. </menuitem>
  2520. <menuitem>
  2521. <label>Sample raster neighborhood around points</label>
  2522. <help>Samples a raster map at vector point locations.</help>
  2523. <keywords>vector,sampling,raster</keywords>
  2524. <handler>OnMenuCmd</handler>
  2525. <command>v.sample</command>
  2526. </menuitem>
  2527. </items>
  2528. </menu>
  2529. <separator />
  2530. <menuitem>
  2531. <label>Generate area for current region</label>
  2532. <help>Creates a vector polygon from the current region extent.</help>
  2533. <keywords>vector,geometry</keywords>
  2534. <handler>OnMenuCmd</handler>
  2535. <command>v.in.region</command>
  2536. </menuitem>
  2537. <menu>
  2538. <label>Generate areas from points</label>
  2539. <items>
  2540. <menuitem>
  2541. <label>Convex hull</label>
  2542. <help>Produces a 2D/3D convex hull for a given vector map.</help>
  2543. <keywords>vector,geometry,3D</keywords>
  2544. <handler>OnMenuCmd</handler>
  2545. <command>v.hull</command>
  2546. </menuitem>
  2547. <menuitem>
  2548. <label>Delaunay triangles</label>
  2549. <help>Creates a Delaunay triangulation from an input vector map containing points or centroids.</help>
  2550. <keywords>vector,geometry,triangulation</keywords>
  2551. <handler>OnMenuCmd</handler>
  2552. <command>v.delaunay</command>
  2553. </menuitem>
  2554. <menuitem>
  2555. <label>Voronoi diagram/Thiessen polygons</label>
  2556. <help>Creates a Voronoi diagram in current region from an input vector map containing points or centroids.</help>
  2557. <keywords>vector,geometry,triangulation</keywords>
  2558. <handler>OnMenuCmd</handler>
  2559. <command>v.voronoi</command>
  2560. </menuitem>
  2561. </items>
  2562. </menu>
  2563. <menuitem>
  2564. <label>Generate grid</label>
  2565. <help>Creates a vector map of a user-defined grid.</help>
  2566. <keywords>vector,geometry</keywords>
  2567. <handler>OnMenuCmd</handler>
  2568. <command>v.mkgrid</command>
  2569. </menuitem>
  2570. <menu>
  2571. <label>Generate points</label>
  2572. <items>
  2573. <menuitem>
  2574. <label>Generate from database</label>
  2575. <help>Creates new vector (points) map from database table containing coordinates.</help>
  2576. <keywords>vector,import,database,points</keywords>
  2577. <handler>OnMenuCmd</handler>
  2578. <command>v.in.db</command>
  2579. </menuitem>
  2580. <menuitem>
  2581. <label>Generate points along lines</label>
  2582. <help>Creates points along input lines in new vector map with 2 layers.</help>
  2583. <keywords>vector,geometry</keywords>
  2584. <handler>OnMenuCmd</handler>
  2585. <command>v.to.points</command>
  2586. </menuitem>
  2587. <menuitem>
  2588. <label>Generate random points</label>
  2589. <help>Generates randomly 2D/3D vector points map.</help>
  2590. <keywords>vector,sampling,statistics,random</keywords>
  2591. <handler>OnMenuCmd</handler>
  2592. <command>v.random</command>
  2593. </menuitem>
  2594. <menuitem>
  2595. <label>Perturb points</label>
  2596. <help>Random location perturbations of vector points.</help>
  2597. <keywords>vector,geometry,statistics</keywords>
  2598. <handler>OnMenuCmd</handler>
  2599. <command>v.perturb</command>
  2600. </menuitem>
  2601. <separator />
  2602. <menuitem>
  2603. <label>Remove outliers in point sets</label>
  2604. <help>Removes outliers from vector point data.</help>
  2605. <keywords>vector,statistics</keywords>
  2606. <handler>OnMenuCmd</handler>
  2607. <command>v.outlier</command>
  2608. </menuitem>
  2609. <menuitem>
  2610. <label>Test/training point sets</label>
  2611. <help>Randomly partition points into test/train sets.</help>
  2612. <keywords>vector,statistics,points</keywords>
  2613. <handler>OnMenuCmd</handler>
  2614. <command>v.kcv</command>
  2615. </menuitem>
  2616. </items>
  2617. </menu>
  2618. <separator />
  2619. <menu>
  2620. <label>Reports and statistics</label>
  2621. <items>
  2622. <menuitem>
  2623. <label>Basic vector metadata</label>
  2624. <help>Outputs basic information about a vector map.</help>
  2625. <keywords>vector,metadata,topology,extent,history,attribute columns</keywords>
  2626. <handler>OnMenuCmd</handler>
  2627. <command>v.info</command>
  2628. </menuitem>
  2629. <menuitem>
  2630. <label>Classify attribute data</label>
  2631. <help>Classifies attribute data, e.g. for thematic mapping</help>
  2632. <keywords>vector,classification,attribute table,statistics</keywords>
  2633. <handler>OnMenuCmd</handler>
  2634. <command>v.class</command>
  2635. </menuitem>
  2636. <separator />
  2637. <menuitem>
  2638. <label>Report topology by category</label>
  2639. <help>Reports geometry statistics for vector maps.</help>
  2640. <keywords>vector,geometry,statistics</keywords>
  2641. <handler>OnMenuCmd</handler>
  2642. <command>v.report</command>
  2643. </menuitem>
  2644. <separator />
  2645. <menuitem>
  2646. <label>Univariate attribute statistics for points</label>
  2647. <help>Calculates univariate statistics for attribute.</help>
  2648. <keywords>vector,statistics</keywords>
  2649. <handler>OnMenuCmd</handler>
  2650. <command>v.univar</command>
  2651. </menuitem>
  2652. <menuitem>
  2653. <label>Univariate statistics for attribute columns</label>
  2654. <help>Calculates univariate statistics on selected table column for a GRASS vector map.</help>
  2655. <keywords>vector,statistics,attribute table</keywords>
  2656. <handler>OnMenuCmd</handler>
  2657. <command>v.db.univar</command>
  2658. </menuitem>
  2659. <separator />
  2660. <menuitem>
  2661. <label>Quadrat indices</label>
  2662. <help>Indices for quadrat counts of sites lists.</help>
  2663. <keywords>vector,statistics</keywords>
  2664. <handler>OnMenuCmd</handler>
  2665. <command>v.qcount</command>
  2666. </menuitem>
  2667. <menuitem>
  2668. <label>Test normality</label>
  2669. <help>Tests for normality for vector points.</help>
  2670. <keywords>vector,statistics,points</keywords>
  2671. <handler>OnMenuCmd</handler>
  2672. <command>v.normal</command>
  2673. </menuitem>
  2674. </items>
  2675. </menu>
  2676. </items>
  2677. </menu>
  2678. <menu>
  2679. <label>&amp;Imagery</label>
  2680. <items>
  2681. <menu>
  2682. <label>Develop images and groups</label>
  2683. <items>
  2684. <menuitem>
  2685. <label>Create/edit group</label>
  2686. <help>Creates, edits, and lists groups of imagery files.</help>
  2687. <keywords>imagery,map management</keywords>
  2688. <handler>OnEditImageryGroups</handler>
  2689. <command>i.group</command>
  2690. </menuitem>
  2691. <menuitem>
  2692. <label>Target group</label>
  2693. <help>Targets an imagery group to a GRASS location and mapset.</help>
  2694. <keywords>imagery,map management</keywords>
  2695. <handler>OnMenuCmd</handler>
  2696. <command>i.target</command>
  2697. </menuitem>
  2698. <separator />
  2699. <menuitem>
  2700. <label>Mosaic images</label>
  2701. <help>Mosaics several images and extends colormap.</help>
  2702. <keywords>imagery,geometry,mosaicking</keywords>
  2703. <handler>OnMenuCmd</handler>
  2704. <command>i.image.mosaic</command>
  2705. </menuitem>
  2706. </items>
  2707. </menu>
  2708. <menu>
  2709. <label>Manage image colors</label>
  2710. <items>
  2711. <menuitem>
  2712. <label>Color balance for RGB</label>
  2713. <help>Performs auto-balancing of colors for LANDSAT images.</help>
  2714. <keywords>imagery,landsat,colors</keywords>
  2715. <handler>OnMenuCmd</handler>
  2716. <command>i.landsat.rgb</command>
  2717. </menuitem>
  2718. <menuitem>
  2719. <label>HIS to RGB</label>
  2720. <help>Transforms raster maps from HIS (Hue-Intensity-Saturation) color space to RGB (Red-Green-Blue) color space.</help>
  2721. <keywords>imagery,color transformation,RGB,HIS</keywords>
  2722. <handler>OnMenuCmd</handler>
  2723. <command>i.his.rgb</command>
  2724. </menuitem>
  2725. <menuitem>
  2726. <label>RGB to HIS</label>
  2727. <help>Transforms raster maps from RGB (Red-Green-Blue) color space to HIS (Hue-Intensity-Saturation) color space.</help>
  2728. <keywords>imagery,color transformation,RGB,HIS</keywords>
  2729. <handler>OnMenuCmd</handler>
  2730. <command>i.rgb.his</command>
  2731. </menuitem>
  2732. </items>
  2733. </menu>
  2734. <separator />
  2735. <menuitem>
  2736. <label>Rectify image or raster</label>
  2737. <help>Rectifies an image by computing a coordinate transformation for each pixel in the image based on the control points.</help>
  2738. <keywords>imagery,rectify</keywords>
  2739. <handler>OnMenuCmd</handler>
  2740. <command>i.rectify</command>
  2741. </menuitem>
  2742. <menuitem>
  2743. <label>Histogram</label>
  2744. <help>Generate histogram of image</help>
  2745. <handler>OnHistogram</handler>
  2746. </menuitem>
  2747. <menuitem>
  2748. <label>Spectral response</label>
  2749. <help>Displays spectral response at user specified locations in group or images.</help>
  2750. <keywords>imagery,querying,raster,multispectral</keywords>
  2751. <handler>OnMenuCmd</handler>
  2752. <command>i.spectral</command>
  2753. </menuitem>
  2754. <separator />
  2755. <menuitem>
  2756. <label>Pan sharpening</label>
  2757. <help>Image fusion algorithms to sharpen multispectral with high-res panchromatic channels</help>
  2758. <keywords>imagery,fusion,sharpen,Brovey,IHS,PCA</keywords>
  2759. <handler>OnMenuCmd</handler>
  2760. <command>i.pansharpen</command>
  2761. </menuitem>
  2762. <menu>
  2763. <label>Classify image</label>
  2764. <items>
  2765. <menuitem>
  2766. <label>Clustering input for unsupervised classification</label>
  2767. <help>Generates spectral signatures for land cover types in an image using a clustering algorithm.</help>
  2768. <keywords>imagery,classification,signatures</keywords>
  2769. <handler>OnMenuCmd</handler>
  2770. <command>i.cluster</command>
  2771. </menuitem>
  2772. <separator />
  2773. <menuitem>
  2774. <label>Input for supervised MLC</label>
  2775. <help>Generates statistics for i.maxlik from raster map.</help>
  2776. <keywords>imagery,classification,supervised,MLC</keywords>
  2777. <handler>OnMenuCmd</handler>
  2778. <command>i.gensig</command>
  2779. </menuitem>
  2780. <menuitem>
  2781. <label>Maximum likelihood classification (MLC)</label>
  2782. <help>Classifies the cell spectral reflectances in imagery data.</help>
  2783. <keywords>imagery,classification,MLC</keywords>
  2784. <handler>OnMenuCmd</handler>
  2785. <command>i.maxlik</command>
  2786. </menuitem>
  2787. <separator />
  2788. <menuitem>
  2789. <label>Interactive input for supervised classification</label>
  2790. <help>Generates spectral signatures by allowing the user to outline training areas.</help>
  2791. <keywords>general,gui,imagery,classification,signatures</keywords>
  2792. <handler>OnIClass</handler>
  2793. <command>g.gui.iclass</command>
  2794. </menuitem>
  2795. <separator />
  2796. <menuitem>
  2797. <label>Input for supervised SMAP</label>
  2798. <help>Generates statistics for i.smap from raster map.</help>
  2799. <keywords>imagery,classification,supervised,SMAP</keywords>
  2800. <handler>OnMenuCmd</handler>
  2801. <command>i.gensigset</command>
  2802. </menuitem>
  2803. <menuitem>
  2804. <label>Sequential maximum a posteriori classification (SMAP)</label>
  2805. <help>Performs contextual image classification using sequential maximum a posteriori (SMAP) estimation.</help>
  2806. <keywords>imagery,classification,supervised,SMAP</keywords>
  2807. <handler>OnMenuCmd</handler>
  2808. <command>i.smap</command>
  2809. </menuitem>
  2810. </items>
  2811. </menu>
  2812. <menu>
  2813. <label>Filter image</label>
  2814. <items>
  2815. <menuitem>
  2816. <label>Edge detection</label>
  2817. <help>Zero-crossing "edge detection" raster function for image processing.</help>
  2818. <keywords>imagery,edges</keywords>
  2819. <handler>OnMenuCmd</handler>
  2820. <command>i.zc</command>
  2821. </menuitem>
  2822. <menuitem>
  2823. <label>Matrix/convolving filter</label>
  2824. <help>Performs raster map matrix filter.</help>
  2825. <keywords>raster,algebra,statistics</keywords>
  2826. <handler>OnMenuCmd</handler>
  2827. <command>r.mfilter</command>
  2828. </menuitem>
  2829. </items>
  2830. </menu>
  2831. <menu>
  2832. <label>Transform image</label>
  2833. <items>
  2834. <menuitem>
  2835. <label>Canonical correlation</label>
  2836. <help>Canonical components analysis (cca) program for image processing.</help>
  2837. <keywords>imagery,statistics,CCA</keywords>
  2838. <handler>OnMenuCmd</handler>
  2839. <command>i.cca</command>
  2840. </menuitem>
  2841. <menuitem>
  2842. <label>Principal components</label>
  2843. <help>Principal components analysis (PCA) for image processing.</help>
  2844. <keywords>imagery,transformation,PCA</keywords>
  2845. <handler>OnMenuCmd</handler>
  2846. <command>i.pca</command>
  2847. </menuitem>
  2848. <menuitem>
  2849. <label>Fast Fourier</label>
  2850. <help>Fast Fourier Transform (FFT) for image processing.</help>
  2851. <keywords>imagery,Fast Fourier Transform</keywords>
  2852. <handler>OnMenuCmd</handler>
  2853. <command>i.fft</command>
  2854. </menuitem>
  2855. <menuitem>
  2856. <label>Inverse Fast Fourier</label>
  2857. <help>Inverse Fast Fourier Transform (IFFT) for image processing.</help>
  2858. <keywords>imagery,Fast Fourier Transform</keywords>
  2859. <handler>OnMenuCmd</handler>
  2860. <command>i.ifft</command>
  2861. </menuitem>
  2862. </items>
  2863. </menu>
  2864. <separator />
  2865. <menu>
  2866. <label>Satellite images tools</label>
  2867. <items>
  2868. <menuitem>
  2869. <label>Aster DN to radiance/reflectance</label>
  2870. <help>Calculates Top of Atmosphere Radiance/Reflectance/Brightness Temperature from ASTER DN.</help>
  2871. <keywords>imagery,radiometric conversion,Terra-ASTER,radiance,reflectance,brightness temperature</keywords>
  2872. <handler>OnMenuCmd</handler>
  2873. <command>i.aster.toar</command>
  2874. </menuitem>
  2875. <menuitem>
  2876. <label>Landsat DN to radiance/reflectance</label>
  2877. <help>Calculates top-of-atmosphere radiance or reflectance and temperature for Landsat MSS/TM/ETM+.</help>
  2878. <keywords>imagery,radiometric conversion,landsat,top-of-atmosphere reflectance,dos-type simple atmospheric correction</keywords>
  2879. <handler>OnMenuCmd</handler>
  2880. <command>i.landsat.toar</command>
  2881. </menuitem>
  2882. <separator />
  2883. <menuitem>
  2884. <label>Landsat cloud cover assessment</label>
  2885. <help>Performs Landsat TM/ETM+ Automatic Cloud Cover Assessment (ACCA).</help>
  2886. <keywords>imagery,landsat,acca</keywords>
  2887. <handler>OnMenuCmd</handler>
  2888. <command>i.landsat.acca</command>
  2889. </menuitem>
  2890. <menuitem>
  2891. <label>Modis quality control</label>
  2892. <help>Extracts quality control parameters from Modis QC layers.</help>
  2893. <keywords>imagery,imagery quality assessment,surface reflectance,land surface temperature,vegetation,MODIS</keywords>
  2894. <handler>OnMenuCmd</handler>
  2895. <command>i.modis.qc</command>
  2896. </menuitem>
  2897. <separator />
  2898. <menuitem>
  2899. <label>Atmospheric correction</label>
  2900. <help>Performs atmospheric correction using the 6S algorithm.</help>
  2901. <keywords>imagery,atmospheric correction</keywords>
  2902. <handler>OnMenuCmd</handler>
  2903. <command>i.atcorr</command>
  2904. </menuitem>
  2905. <separator />
  2906. <menuitem>
  2907. <label>LatLong map</label>
  2908. <help>Creates a latitude/longitude raster map.</help>
  2909. <keywords>imagery,latitude,longitude,projection</keywords>
  2910. <handler>OnMenuCmd</handler>
  2911. <command>i.latlong</command>
  2912. </menuitem>
  2913. <menuitem>
  2914. <label>Sunshine hours</label>
  2915. <help>Creates a sunshine hours map.</help>
  2916. <keywords>imagery,solar,sunshine,hours,daytime</keywords>
  2917. <handler>OnMenuCmd</handler>
  2918. <command>i.sunhours</command>
  2919. </menuitem>
  2920. </items>
  2921. </menu>
  2922. <menu>
  2923. <label>Satellite images products</label>
  2924. <items>
  2925. <menuitem>
  2926. <label>Vegetation indices</label>
  2927. <help>Calculates different types of vegetation indices.</help>
  2928. <keywords>imagery,vegetation index,biophysical parameters</keywords>
  2929. <handler>OnMenuCmd</handler>
  2930. <command>i.vi</command>
  2931. </menuitem>
  2932. <menuitem>
  2933. <label>Tasseled cap vegetation index</label>
  2934. <help>Performs Tasseled Cap (Kauth Thomas) transformation for LANDSAT-TM data.</help>
  2935. <keywords>imagery,transformation</keywords>
  2936. <handler>OnMenuCmd</handler>
  2937. <command>i.tasscap</command>
  2938. </menuitem>
  2939. <separator />
  2940. <menuitem>
  2941. <label>Albedo</label>
  2942. <help>Computes broad band albedo from surface reflectance.</help>
  2943. <keywords>imagery,albedo,surface reflectance</keywords>
  2944. <handler>OnMenuCmd</handler>
  2945. <command>i.albedo</command>
  2946. </menuitem>
  2947. <menuitem>
  2948. <label>Emissivity</label>
  2949. <help>Computes emissivity from NDVI, generic method for sparse land.</help>
  2950. <keywords>imagery,emissivity,land flux,energy balance</keywords>
  2951. <handler>OnMenuCmd</handler>
  2952. <command>i.emissivity</command>
  2953. </menuitem>
  2954. <separator />
  2955. <menuitem>
  2956. <label>Biomass growth</label>
  2957. <help>Computes biomass growth, precursor of crop yield calculation.</help>
  2958. <keywords>imagery,biomass,fpar,yield</keywords>
  2959. <handler>OnMenuCmd</handler>
  2960. <command>i.biomass</command>
  2961. </menuitem>
  2962. </items>
  2963. </menu>
  2964. <menu>
  2965. <label>Evapotranspiration calculation</label>
  2966. <items>
  2967. <menuitem>
  2968. <label>Instantaneaous Net Radiation</label>
  2969. <help>Net radiation approximation (Bastiaanssen, 1995).</help>
  2970. <keywords>imagery,energy balance,net radiation,SEBAL</keywords>
  2971. <handler>OnMenuCmd</handler>
  2972. <command>i.eb.netrad</command>
  2973. </menuitem>
  2974. <menuitem>
  2975. <label>Soil heat flux</label>
  2976. <help>Soil heat flux approximation (Bastiaanssen, 1995).</help>
  2977. <keywords>imagery,energy balance,soil heat flux,SEBAL</keywords>
  2978. <handler>OnMenuCmd</handler>
  2979. <command>i.eb.soilheatflux</command>
  2980. </menuitem>
  2981. <menuitem>
  2982. <label>Sensible heat flux</label>
  2983. <help>Computes sensible heat flux iteration SEBAL 01.</help>
  2984. <keywords>imagery,energy balance,soil moisture,evaporative fraction,SEBAL</keywords>
  2985. <handler>OnMenuCmd</handler>
  2986. <command>i.eb.h_sebal01</command>
  2987. </menuitem>
  2988. <separator />
  2989. <menuitem>
  2990. <label>Evaporative fraction</label>
  2991. <help>Computes evaporative fraction (Bastiaanssen, 1995) and root zone soil moisture (Makin, Molden and Bastiaanssen, 2001).</help>
  2992. <keywords>imagery,energy balance,soil moisture,evaporative fraction,SEBAL</keywords>
  2993. <handler>OnMenuCmd</handler>
  2994. <command>i.eb.evapfr</command>
  2995. </menuitem>
  2996. <menuitem>
  2997. <label>Actual Evapotranspiration</label>
  2998. <help>Actual evapotranspiration for diurnal period (Bastiaanssen, 1995).</help>
  2999. <keywords>imagery,energy balance,actual evapotranspiration,SEBAL</keywords>
  3000. <handler>OnMenuCmd</handler>
  3001. <command>i.eb.eta</command>
  3002. </menuitem>
  3003. <menuitem>
  3004. <label>Temporal integration of ETa</label>
  3005. <help>Computes temporal integration of satellite ET actual (ETa) following the daily ET reference (ETo) from meteorological station(s).</help>
  3006. <keywords>imagery,evapotranspiration</keywords>
  3007. <handler>OnMenuCmd</handler>
  3008. <command>i.evapo.time</command>
  3009. </menuitem>
  3010. <separator />
  3011. <menuitem>
  3012. <label>Hargreaves methods Evapotranspiration</label>
  3013. <help>Computes evapotranspiration calculation modified or original Hargreaves formulation, 2001.</help>
  3014. <keywords>imagery,evapotranspiration</keywords>
  3015. <handler>OnMenuCmd</handler>
  3016. <command>i.evapo.mh</command>
  3017. </menuitem>
  3018. <menuitem>
  3019. <label>Penman-Monteith Evapotranspiration</label>
  3020. <help>Computes potential evapotranspiration calculation with hourly Penman-Monteith.</help>
  3021. <keywords>imagery,evapotranspiration</keywords>
  3022. <handler>OnMenuCmd</handler>
  3023. <command>i.evapo.pm</command>
  3024. </menuitem>
  3025. <menuitem>
  3026. <label>Priestley-Taylor Evapotranspiration</label>
  3027. <help>Computes evapotranspiration calculation Prestley and Taylor formulation, 1972.</help>
  3028. <keywords>imagery,evapotranspiration</keywords>
  3029. <handler>OnMenuCmd</handler>
  3030. <command>i.evapo.pt</command>
  3031. </menuitem>
  3032. </items>
  3033. </menu>
  3034. <separator />
  3035. <menu>
  3036. <label>Report and statistics</label>
  3037. <items>
  3038. <menuitem>
  3039. <label>Bit pattern comparison </label>
  3040. <help>Compares bit patterns with a raster map.</help>
  3041. <keywords>raster,algebra</keywords>
  3042. <handler>OnMenuCmd</handler>
  3043. <command>r.bitpattern</command>
  3044. </menuitem>
  3045. <menuitem>
  3046. <label>Kappa analysis</label>
  3047. <help>Calculate error matrix and kappa parameter for accuracy assessment of classification result.</help>
  3048. <keywords>raster,statistics</keywords>
  3049. <handler>OnMenuCmd</handler>
  3050. <command>r.kappa</command>
  3051. </menuitem>
  3052. <menuitem>
  3053. <label>OIF for LandSat TM</label>
  3054. <help>Calculates Optimum-Index-Factor table for LANDSAT TM bands 1-5, &amp; 7</help>
  3055. <keywords>imagery,landsat,statistics</keywords>
  3056. <handler>OnMenuCmd</handler>
  3057. <command>i.oif</command>
  3058. </menuitem>
  3059. </items>
  3060. </menu>
  3061. </items>
  3062. </menu>
  3063. <menu>
  3064. <label>V&amp;olumes</label>
  3065. <items>
  3066. <menu>
  3067. <label>Develop volumes</label>
  3068. <items>
  3069. <menuitem>
  3070. <label>Manage 3D NULL values</label>
  3071. <help>Explicitly create the 3D NULL-value bitmap file.</help>
  3072. <keywords>raster3d,voxel</keywords>
  3073. <handler>OnMenuCmd</handler>
  3074. <command>r3.null</command>
  3075. </menuitem>
  3076. <menuitem>
  3077. <label>Manage timestamp</label>
  3078. <help>Print/add/remove a timestamp for a 3D raster map</help>
  3079. <keywords>raster3d,voxel</keywords>
  3080. <handler>OnMenuCmd</handler>
  3081. <command>r3.timestamp</command>
  3082. </menuitem>
  3083. </items>
  3084. </menu>
  3085. <menu>
  3086. <label>Map type conversions</label>
  3087. <items>
  3088. <menuitem>
  3089. <label>Volume to raster series</label>
  3090. <help>Converts 3D raster maps to 2D raster maps</help>
  3091. <keywords>raster3d,conversion,raster,voxel</keywords>
  3092. <handler>OnMenuCmd</handler>
  3093. <command>r3.to.rast</command>
  3094. </menuitem>
  3095. </items>
  3096. </menu>
  3097. <separator />
  3098. <menuitem>
  3099. <label>3D color tables</label>
  3100. <help>Creates/modifies the color table associated with a 3D raster map.</help>
  3101. <keywords>raster3d,color table</keywords>
  3102. <handler>OnMenuCmd</handler>
  3103. <command>r3.colors</command>
  3104. </menuitem>
  3105. <menuitem>
  3106. <label>Export 3D color table</label>
  3107. <help>Exports the color table associated with a 3D raster map.</help>
  3108. <keywords>raster3d,color table,export</keywords>
  3109. <handler>OnMenuCmd</handler>
  3110. <command>r3.colors.out</command>
  3111. </menuitem>
  3112. <separator />
  3113. <menuitem>
  3114. <label>3D Mask</label>
  3115. <help>Establishes the current working 3D raster mask.</help>
  3116. <keywords>raster3d,voxel</keywords>
  3117. <handler>OnMenuCmd</handler>
  3118. <command>r3.mask</command>
  3119. </menuitem>
  3120. <menuitem>
  3121. <label>Volume calculator</label>
  3122. <help>3D raster map calculator.</help>
  3123. <keywords>raster,algebra</keywords>
  3124. <handler>OnMapCalculator</handler>
  3125. <command>r3.mapcalc</command>
  3126. </menuitem>
  3127. <menuitem>
  3128. <label>Cross section</label>
  3129. <help>Creates cross section 2D raster map from 3D raster map based on 2D elevation map</help>
  3130. <keywords>raster3d,profile,raster,voxel</keywords>
  3131. <handler>OnMenuCmd</handler>
  3132. <command>r3.cross.rast</command>
  3133. </menuitem>
  3134. <menuitem>
  3135. <label>Groundwater modeling</label>
  3136. <help>Numerical calculation program for transient, confined groundwater flow in three dimensions.</help>
  3137. <keywords>raster3d,groundwater flow,voxel,hydrology</keywords>
  3138. <handler>OnMenuCmd</handler>
  3139. <command>r3.gwflow</command>
  3140. </menuitem>
  3141. <menuitem>
  3142. <label>Interpolate volume from points</label>
  3143. <help>Interpolates point data to a 3D raster map using regularized spline with tension (RST) algorithm.</help>
  3144. <keywords>vector,voxel,surface,interpolation,RST</keywords>
  3145. <handler>OnMenuCmd</handler>
  3146. <command>v.vol.rst</command>
  3147. </menuitem>
  3148. <separator />
  3149. <menu>
  3150. <label>Report and Statistics</label>
  3151. <items>
  3152. <menuitem>
  3153. <label>Basic volume metadata</label>
  3154. <help>Outputs basic information about a user-specified 3D raster map layer.</help>
  3155. <keywords>raster3d,metadata,voxel</keywords>
  3156. <handler>OnMenuCmd</handler>
  3157. <command>r3.info</command>
  3158. </menuitem>
  3159. <menuitem>
  3160. <label>Voxel statistics</label>
  3161. <help>Generates volume statistics for 3D raster maps.</help>
  3162. <keywords>raster3d,statistics</keywords>
  3163. <handler>OnMenuCmd</handler>
  3164. <command>r3.stats</command>
  3165. </menuitem>
  3166. <menuitem>
  3167. <label>Univariate statistics for volumes</label>
  3168. <help>Calculates univariate statistics from the non-null 3d cells of a raster3d map.</help>
  3169. <keywords>raster3d,statistics</keywords>
  3170. <handler>OnMenuCmd</handler>
  3171. <command>r3.univar</command>
  3172. </menuitem>
  3173. </items>
  3174. </menu>
  3175. </items>
  3176. </menu>
  3177. <menu>
  3178. <label>&amp;Database</label>
  3179. <items>
  3180. <menu>
  3181. <label>Database information</label>
  3182. <items>
  3183. <menuitem>
  3184. <label>List databases</label>
  3185. <help>Lists all databases for a given driver and location.</help>
  3186. <keywords>database,attribute table,SQL</keywords>
  3187. <handler>OnMenuCmd</handler>
  3188. <command>db.databases</command>
  3189. </menuitem>
  3190. <menuitem>
  3191. <label>List drivers</label>
  3192. <help>Lists all database drivers.</help>
  3193. <keywords>database,drivers</keywords>
  3194. <handler>OnMenuCmd</handler>
  3195. <command>db.drivers</command>
  3196. </menuitem>
  3197. <menuitem>
  3198. <label>List tables</label>
  3199. <help>Lists all tables for a given database.</help>
  3200. <keywords>database,attribute table</keywords>
  3201. <handler>OnMenuCmd</handler>
  3202. <command>db.tables</command>
  3203. </menuitem>
  3204. <menuitem>
  3205. <label>Describe table</label>
  3206. <help>Describes a table in detail.</help>
  3207. <keywords>database,attribute table</keywords>
  3208. <handler>OnMenuCmd</handler>
  3209. <command>db.describe</command>
  3210. </menuitem>
  3211. <menuitem>
  3212. <label>List columns</label>
  3213. <help>List all columns for a given table.</help>
  3214. <keywords>database,attribute table</keywords>
  3215. <handler>OnMenuCmd</handler>
  3216. <command>db.columns</command>
  3217. </menuitem>
  3218. </items>
  3219. </menu>
  3220. <separator />
  3221. <menu>
  3222. <label>Manage databases</label>
  3223. <items>
  3224. <menuitem>
  3225. <label>Connect</label>
  3226. <help>Prints/sets general DB connection for current mapset.</help>
  3227. <keywords>database,attribute table,connection settings</keywords>
  3228. <handler>OnMenuCmd</handler>
  3229. <command>db.connect</command>
  3230. </menuitem>
  3231. <menuitem>
  3232. <label>Login</label>
  3233. <help>Sets user/password for DB driver/database.</help>
  3234. <keywords>database,attribute table,connection settings</keywords>
  3235. <handler>OnMenuCmd</handler>
  3236. <command>db.login</command>
  3237. </menuitem>
  3238. <separator />
  3239. <menuitem>
  3240. <label>Create database</label>
  3241. <help>Creates an empty database.</help>
  3242. <keywords>database,attribute table,SQL</keywords>
  3243. <handler>OnMenuCmd</handler>
  3244. <command>db.createdb</command>
  3245. </menuitem>
  3246. <menuitem>
  3247. <label>Drop database</label>
  3248. <help>Removes an existing database.</help>
  3249. <keywords>database,attribute table,SQL</keywords>
  3250. <handler>OnMenuCmd</handler>
  3251. <command>db.dropdb</command>
  3252. </menuitem>
  3253. <separator />
  3254. <menuitem>
  3255. <label>Drop table</label>
  3256. <help>Drops an attribute table.</help>
  3257. <keywords>database,attribute table</keywords>
  3258. <handler>OnMenuCmd</handler>
  3259. <command>db.droptable</command>
  3260. </menuitem>
  3261. <menuitem>
  3262. <label>Copy table</label>
  3263. <help>Copy a table.</help>
  3264. <keywords>database,attribute table,SQL</keywords>
  3265. <handler>OnMenuCmd</handler>
  3266. <command>db.copy</command>
  3267. </menuitem>
  3268. <separator />
  3269. <menuitem>
  3270. <label>Drop column</label>
  3271. <help>Drops a column from selected attribute table.</help>
  3272. <keywords>database,attribute table</keywords>
  3273. <handler>OnMenuCmd</handler>
  3274. <command>db.dropcolumn</command>
  3275. </menuitem>
  3276. <separator />
  3277. <menuitem>
  3278. <label>Test</label>
  3279. <help>Test database driver, database must exist and set by db.connect.</help>
  3280. <keywords>database,attribute table</keywords>
  3281. <handler>OnMenuCmd</handler>
  3282. <command>db.test</command>
  3283. </menuitem>
  3284. </items>
  3285. </menu>
  3286. <menu>
  3287. <label>Query</label>
  3288. <items>
  3289. <menuitem>
  3290. <label>Query any table</label>
  3291. <help>Selects data from attribute table.</help>
  3292. <keywords>database,attribute table,SQL</keywords>
  3293. <handler>OnMenuCmd</handler>
  3294. <command>db.select</command>
  3295. </menuitem>
  3296. <menuitem>
  3297. <label>Query vector attribute data</label>
  3298. <help>Prints vector map attributes.</help>
  3299. <keywords>vector,attribute table,database</keywords>
  3300. <handler>OnMenuCmd</handler>
  3301. <command>v.db.select</command>
  3302. </menuitem>
  3303. <menuitem>
  3304. <label>SQL statement</label>
  3305. <help>Executes any SQL statement.</help>
  3306. <keywords>database,attribute table,SQL</keywords>
  3307. <handler>OnMenuCmd</handler>
  3308. <command>db.execute</command>
  3309. </menuitem>
  3310. </items>
  3311. </menu>
  3312. <separator />
  3313. <menu>
  3314. <label>Vector database connections</label>
  3315. <items>
  3316. <menuitem>
  3317. <label>New table</label>
  3318. <help>Creates and connects a new attribute table to a given layer of an existing vector map.</help>
  3319. <keywords>vector,attribute table,database</keywords>
  3320. <handler>OnMenuCmd</handler>
  3321. <command>v.db.addtable</command>
  3322. </menuitem>
  3323. <menuitem>
  3324. <label>Remove table</label>
  3325. <help>Removes existing attribute table of a vector map.</help>
  3326. <keywords>vector,attribute table,database</keywords>
  3327. <handler>OnMenuCmd</handler>
  3328. <command>v.db.droptable</command>
  3329. </menuitem>
  3330. <menuitem>
  3331. <label>Join table</label>
  3332. <help>Allows to join a table to a vector map table.</help>
  3333. <keywords>vector,attribute table,database</keywords>
  3334. <handler>OnMenuCmd</handler>
  3335. <command>v.db.join</command>
  3336. </menuitem>
  3337. <separator />
  3338. <menuitem>
  3339. <label>Add columns</label>
  3340. <help>Adds one or more columns to the attribute table connected to a given vector map.</help>
  3341. <keywords>vector,attribute table,database</keywords>
  3342. <handler>OnMenuCmd</handler>
  3343. <command>v.db.addcolumn</command>
  3344. </menuitem>
  3345. <menuitem>
  3346. <label>Drop column</label>
  3347. <help>Drops a column from the attribute table connected to a given vector map.</help>
  3348. <keywords>vector,attribute table,database</keywords>
  3349. <handler>OnMenuCmd</handler>
  3350. <command>v.db.dropcolumn</command>
  3351. </menuitem>
  3352. <menuitem>
  3353. <label>Rename column</label>
  3354. <help>Renames a column in the attribute table connected to a given vector map.</help>
  3355. <keywords>vector,attribute table,database</keywords>
  3356. <handler>OnMenuCmd</handler>
  3357. <command>v.db.renamecolumn</command>
  3358. </menuitem>
  3359. <separator />
  3360. <menuitem>
  3361. <label>Change values</label>
  3362. <help>Allows to update a column in the attribute table connected to a vector map.</help>
  3363. <keywords>vector,attribute table,database</keywords>
  3364. <handler>OnMenuCmd</handler>
  3365. <command>v.db.update</command>
  3366. </menuitem>
  3367. <menuitem>
  3368. <label>Drop row</label>
  3369. <help>Removes a vector feature from a vector map through attribute selection.</help>
  3370. <keywords>vector,attribute table,database</keywords>
  3371. <handler>OnMenuCmd</handler>
  3372. <command>v.db.droprow</command>
  3373. </menuitem>
  3374. <separator />
  3375. <menuitem>
  3376. <label>Reconnect vectors to database</label>
  3377. <help>Reconnects attribute tables for all vector maps from the current mapset to a new database.</help>
  3378. <keywords>vector,attribute table,database</keywords>
  3379. <handler>OnMenuCmd</handler>
  3380. <command>v.db.reconnect.all</command>
  3381. </menuitem>
  3382. <menuitem>
  3383. <label>Set vector map - database connection</label>
  3384. <help>Prints/sets DB connection for a vector map to attribute table.</help>
  3385. <keywords>vector,attribute table,database</keywords>
  3386. <handler>OnMenuCmd</handler>
  3387. <command>v.db.connect</command>
  3388. </menuitem>
  3389. </items>
  3390. </menu>
  3391. </items>
  3392. </menu>
  3393. <menu>
  3394. <label>&amp;Help</label>
  3395. <items>
  3396. <menuitem>
  3397. <label>GRASS help</label>
  3398. <help>Display the HTML man pages of GRASS GIS</help>
  3399. <keywords>general,manual,help</keywords>
  3400. <handler>RunMenuCmd</handler>
  3401. <command>g.manual -i</command>
  3402. <id>ID_HELP</id>
  3403. </menuitem>
  3404. <menuitem>
  3405. <label>GUI help</label>
  3406. <help>Display the HTML man pages of GRASS GIS</help>
  3407. <keywords>general,manual,help</keywords>
  3408. <handler>RunMenuCmd</handler>
  3409. <command>g.manual entry=wxGUI</command>
  3410. </menuitem>
  3411. <separator />
  3412. <menuitem>
  3413. <label>About system</label>
  3414. <help>Prints system information</help>
  3415. <handler>OnSystemInfo</handler>
  3416. </menuitem>
  3417. <menuitem>
  3418. <label>About GRASS GIS</label>
  3419. <help>About GRASS GIS</help>
  3420. <handler>OnAboutGRASS</handler>
  3421. <id>ID_ABOUT</id>
  3422. </menuitem>
  3423. </items>
  3424. </menu>
  3425. </menubar>
  3426. </menudata>