The program will be run non-interactively if the user specifies the program arguments and desired options on the command line, using the form
r.stats [-1aclmqzgx] input=name[,name,...] [fs=character\||\|space] \ [output=name]
where each input name is the name of a raster map layer on which area/cell statistics are to be generated, the (optional) output name is the name of a file to contain program output (sent to the user's current working directory), the fs character or space is the field separator to be used to separate data fields in the output file (default is a space if unspecified), and the (optional) flags -1, -a, -c, -l, -m, -q, -z, -g, and -x have the meanings described in the OPTIONS section.
Alternately, the user can simply type r.stats on the command line, without program arguments. In this case, the user will be prompted for needed inputs and option choices using the standard GRASS parser interface described in the manual entry for parser.
If a single map layer is specified on the command line, a list of areas in square meters (assuming the map's coordinate system is in meters) for each category in the raster map layer will be printed. (If the -c option is chosen, areas will be stated in number of cells.) If multiple raster map layers are specified on the command line, a cross-tabulation table of areas for each combination of categories in the map layers will be printed.
For example, if one raster map layer were specified, the output would look like:
1:1350000.00 2:4940000.00 3:8870000.00If three raster map layers a, b, and c, were specified, the output would look like:
0:0:0:8027500.00 0:1:0:1152500.00 1:0:0:164227500.00 1:0:1:2177500.00 1:1:0:140092500.00 1:1:1:3355000.00 2:0:0:31277500.00 2:0:1:2490000.00 2:1:0:24207500.00 2:1:1:1752500.00 3:0:0:17140000.00 3:1:0:11270000.00 3:1:1:2500.00Within each grouping, the first field represents the category value of map layer a, the second represents the category values associated with map layer b, the third represents category values for map layer c, and the last field gives the area in square meters for the particular combination of these three map layers' categories. For example, above, combination 3,1,1 covered 2500 square meters. Fields are separated by colons.
If a nicely formatted output is desired, pipe the output into a command which can create columnar output. For example, the command:
r.stats input=a,b,c | pr -3 | cat -s
will create a three-column output
1:4:4:10000.00 2:1:5:290000.00 2:4:5:2090000.00 1:4:5:1340000.00 2:2:5:350000.00 3:1:2:450000.00 2:1:1:1090000.00 2:4:1:700000.00 3:1:3:5280000.00 2:1:3:410000.00 2:4:3:10000.00 3:1:5:3140000.00The output from r.stats on more than one map layer is sorted.
Note that the user has only the option of printing out cell statistics in terms of cell counts and/or area totals. Users wishing to use different units than are available here should use the GRASS program r.report.