Changes between Initial Version and Version 1 of HowToTestGrass6


Ignore:
Timestamp:
Apr 19, 2008, 3:14:50 AM (16 years ago)
Author:
neteler
Comment:

GRASS 6 Test protocol started

Legend:

Unmodified
Added
Removed
Modified
  • HowToTestGrass6

    v1 v1  
     1== Scope of this page ==
     2
     3This 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
     12GRASS 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
     16grass63 --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)
     23grass63 -oldtcltk
     24
     25# start with current Tcl/Tk based graphical user interface (g.gis)
     26grass63 -tcltk
     27
     28# start with wxPython based graphical user interface
     29grass63 -wxpython
     30}}}
     31
     32''Expected result: the selected graphical user interface should come up.''
     33
     34{{{
     35# start with text based interface
     36grass63 -text
     37}}}
     38
     39
     40''Expected result: the text user interface should come up.''
     41
     42== Display various maps (not native winGRASS) ==
     43
     44{{{
     45g.region rast=elevation
     46d.mon x0
     47d.rast elevation
     48d.vect roadsmajor
     49}}}
     50
     51''Expected result: GRASS monitor should open and show the selected maps''
     52
     53{{{
     54d.his i=elevation_shade h=elevation
     55d.vect roadsmajor
     56
     57# set barscale position per mouse click into map:
     58d.barscale -mt
     59}}}
     60