| 1 | == Scope of this page == |
| 2 | |
| 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 | == Requirements == |
| 6 | |
| 7 | * GRASS 6 installation ([wiki:DownloadSource source code] and [http://grass.osgeo.org/download/index.php binaries] download) |
| 8 | * Educational data set: OSGeo Educational data set North Carolina: [http://grass.osgeo.org/sampledata/nc_spm_07_2007_dec20.tar.gz data] and [http://www.grassbook.org/data_menu3rd.php description]. |
| 9 | |
| 10 | == Start of the program == |
| 11 | |
| 12 | GRASS 6 is started either from the menu (if installed therein) or from command line. In all cases, select mapset "user1". |
| 13 | |
| 14 | {{{ |
| 15 | # show available options |
| 16 | grass63 --help |
| 17 | }}} |
| 18 | |
| 19 | ''Expected result: the help text should be shown.'' |
| 20 | |
| 21 | {{{ |
| 22 | # start with old Tcl/Tk based graphical user interface (d.m) |
| 23 | grass63 -oldtcltk |
| 24 | |
| 25 | # start with current Tcl/Tk based graphical user interface (g.gis) |
| 26 | grass63 -tcltk |
| 27 | |
| 28 | # start with wxPython based graphical user interface |
| 29 | grass63 -wxpython |
| 30 | }}} |
| 31 | |
| 32 | ''Expected result: the selected graphical user interface should come up.'' |
| 33 | |
| 34 | {{{ |
| 35 | # start with text based interface |
| 36 | grass63 -text |
| 37 | }}} |
| 38 | |
| 39 | |
| 40 | ''Expected result: the text user interface should come up.'' |
| 41 | |
| 42 | == Display various maps (not native winGRASS) == |
| 43 | |
| 44 | {{{ |
| 45 | g.region rast=elevation |
| 46 | d.mon x0 |
| 47 | d.rast elevation |
| 48 | d.vect roadsmajor |
| 49 | }}} |
| 50 | |
| 51 | ''Expected result: GRASS monitor should open and show the selected maps'' |
| 52 | |
| 53 | {{{ |
| 54 | d.his i=elevation_shade h=elevation |
| 55 | d.vect roadsmajor |
| 56 | |
| 57 | # set barscale position per mouse click into map: |
| 58 | d.barscale -mt |
| 59 | }}} |
| 60 | |