Stay organized with collections
Save and categorize content based on your preferences.
Generates a random number at each pixel location. When using the 'uniform' distribution, outputs are in the range of [0, 1). Using the 'normal' distribution, the outputs have μ=0, σ=1, but no explicit limits.
Usage
Returns
ee.Image.random(seed, distribution)
Image
Argument
Type
Details
seed
Long, default: 0
Seed for the random number generator.
distribution
String, default: "uniform"
The distribution type of random numbers to produce. One of 'uniform' or 'normal'.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-09-19 UTC."],[[["Generates random numbers at each pixel location of an image."],["Offers two distribution options: 'uniform' (range \\[0, 1)) and 'normal' (μ=0, σ=1)."],["Allows specification of a seed for reproducible results, defaulting to 0 if not provided."],["Returns an Earth Engine Image object containing the generated random numbers."]]],[]]