File: menudata.xml

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