logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

r.surf.random - Produces a raster surface map of uniform random deviates with defined range.

Author

       Jo Wood
       Midlands Regional Research Laboratory (ASSIST)
       University of Leicester
       October1991

Description

r.surf.random produces a raster map layer of uniform random deviates whose range can be expressed by  the
       user.  It is essentially the same as r.surf.gauss, but uses a linear random number generator instead.  It
       uses the random number generator drand48() or rand(), depending on the user’s platform.

Example

       g.region -p n=228500 s=215000 w=630000 e=645000 res=10
       r.surf.random out=random min=0 max=100
       # check result
       r.univar random
       Figure:Randomsurfaceexample(min:10;max:100)

       With the histogram tool the cell values versus count can be shown.

       Figure:Histogramofrandomsurfaceexample(min:10;max:100)

Keywords

       raster, surface, random

Name

r.surf.random  - Produces a raster surface map of uniform random deviates with defined range.

See Also

r.random.surface,r.surf.contour,r.surf.fractal,r.surf.gauss,r.surf.idw,v.surf.rst

Source Code

       Available at: r.surf.random source code (history)

       Accessed: Friday Apr 04 01:19:40 2025

       Main index | Raster index | Topics index | Keywords index | Graphical index | Full index

       © 2003-2025 GRASS Development Team, GRASS GIS 8.4.1 Reference Manual

GRASS 8.4.1                                                                                r.surf.random(1grass)

Synopsis

r.surf.randomr.surf.random--helpr.surf.random  [-i]  output=name   [min=float]    [max=float]    [seed=integer]   [--overwrite]  [--help]
       [--verbose]  [--quiet]  [--ui]

   Flags:-i
           Create an integer raster map

       --overwrite
           Allow output files to overwrite existing files

       --help
           Print usage summary

       --verbose
           Verbose module output

       --quiet
           Quiet module output

       --ui
           Force launching GUI dialog

   Parameters:output=name[required]
           Name for output raster map

       min=float
           Minimum random value
           Default: 0max=float
           Maximum random value
           Default: 100seed=integer
           Seed for random number generator
           The same seed can be used to obtain same results or random seed can be generated by other means.

See Also