Changes between Version 1 and Version 2 of HowToTestGrass6
- Timestamp:
- 04/19/08 03:22:30 (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
HowToTestGrass6
v1 v2 2 2 3 3 This pages is intended to users and developers who want to test a GRASS installation (test protocol). As side effect, you can also showcase GRASS 6 using these commands. 4 5 [[TOC]] 4 6 5 7 == Requirements == … … 37 39 }}} 38 40 41 ''Expected result: the text user interface should come up.'' 39 42 40 ''Expected result: the text user interface should come up.'' 43 == Re-launch of GUI from command line == 44 45 {{{ 46 # start with old Tcl/Tk based graphical user interface (d.m) 47 g.gui oldtcltk 48 49 # start with current Tcl/Tk based graphical user interface (g.gis) 50 g.gui tcltk 51 52 # start with wxPython based graphical user interface 53 g.gui wxpython 54 }}} 55 56 ''Expected result: the selected graphical user interface should come up.'' 41 57 42 58 == Display various maps (not native winGRASS) == … … 59 75 }}} 60 76 77 == 3D visualiztion with NVIZ == 78 79 {{{ 80 # raster map and 2D vector lines map 81 nviz elevation vect=roadsmajor 82 }}} 83 84 {{{ 85 # raster map and 2D vector lines map and 3D vector points 86 nviz elevation vect=roadsmajor points=precip_30ynormals_3d 87 }}} 88 89 Tests: navigate with the puck, interrogate map etc. (ADD MORE) 90 91 ''Expected result: should not crash at all but show maps as expected'' 92 93 == Simple raster analysis == 94 95 * TDB 96 97 == Simple vector analysis == 98 99 * TBD