Markus Neteler f5ea6c27bb testsuite: convert the following test to a proper python module name (fixes https://trac.osgeo.org/grass/ticket/3792) 6 lat temu
..
testsuite f5ea6c27bb testsuite: convert the following test to a proper python module name (fixes https://trac.osgeo.org/grass/ticket/3792) 6 lat temu
Makefile d6700ffb2c Update LIBES, DEPENDENCIES from linkage database 15 lat temu
README db49180dd7 welcome to GRASS 7.0.svn 17 lat temu
count.c 71690b87d1 r.random: use long long when available 8 lat temu
local_proto.h 158a6f2a5a bulk fixing of typos in comments (using tools/fix_typos.sh) 6 lat temu
main.c f36a0d89f0 r.random: add seed option to set the seed of the RNG (fixes https://trac.osgeo.org/grass/ticket/3594) 7 lat temu
r.random.html b64d9e63e0 rename section BUGS to KNOWN ISSUES in manuals 10 lat temu
random.c f36a0d89f0 r.random: add seed option to set the seed of the RNG (fixes https://trac.osgeo.org/grass/ticket/3594) 7 lat temu
support.c 71690b87d1 r.random: use long long when available 8 lat temu

README

/*********************************************************************
* GRASS program to create a raster map with non-zero data
* in random locations.
* Locations will be within non-zero data in the input layer.
* (unless -z option specified)
* If it necessary to restrict the locations to only some categories
* of the input map, a reclass map should be constructed first
* and used as input to this program.
*
* Number of random cells can be a fixed number or a percentage of cells.
*
* Resulting raster map consists of original cell values at the selected
* random locations and zero elsewhere.
*
* A sitefile may optionally be created.
*
* Usage:
* r.random [-iqz] input=name [raster_output=name] [sites_output=name] n=n[%]
*
* -i mean report number of total cells and null cells
* -q means run quietly
* -z means generate random locations for zero-data as well
*
*********************************************************************/