Anna Petrášová b64d9e63e0 rename section BUGS to KNOWN ISSUES in manuals hace 9 años
..
Makefile d6700ffb2c Update LIBES, DEPENDENCIES from linkage database hace 15 años
README db49180dd7 welcome to GRASS 7.0.svn hace 17 años
count.c 6627fa7784 Promote cell count to long hace 11 años
creat_rand.c 498f194bcc Replace rand/random/lrand48/etc with lib/gis random number functions hace 10 años
local_proto.h c66ce150bb rasterlib: prototypes moved to rasterdefs.h hace 15 años
main.c e20347488f r.random: use standardized options (https://trac.osgeo.org/grass/ticket/2409) hace 10 años
r.random.html b64d9e63e0 rename section BUGS to KNOWN ISSUES in manuals hace 9 años
random.c 413a218aef r.random: set db error hander hace 10 años
support.c 67014631cb Added missing checks for Vect_open_* return value to avoid potential segmentation fault hace 10 años

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
*
*********************************************************************/