grass.script.raster: auto-seed rand() when no seed provided#7269
Open
tmchow wants to merge 2 commits intoOSGeo:mainfrom
Open
grass.script.raster: auto-seed rand() when no seed provided#7269tmchow wants to merge 2 commits intoOSGeo:mainfrom
tmchow wants to merge 2 commits intoOSGeo:mainfrom
Conversation
mapcalc() and mapcalc_start() fail with 'Pseudo-random number generator not seeded' when the expression uses rand() and no explicit seed parameter is passed. Detect rand() in the expression and auto-generate a seed, matching the existing seed='auto' behavior. Fixes OSGeo#5974
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
mapcalc("random = rand(0.0,1.0)")fails with "Pseudo-random number generator not seeded" becauser.mapcalcrequires an explicit seed for itsrand()function, but the Python wrapper passesNoneby default.The
seed="auto"path already generates a seed correctly (line 144-145), but users have to know to pass it explicitly. This detectsrand(in the expression string and auto-generates a seed when none is provided, matching the existing auto-seed behavior. Applied to bothmapcalc()andmapcalc_start().The check is a simple substring match on the expression before template substitution. It won't false-positive on variable names containing "rand(" since those would be inside
${}template syntax andrand(with a parenthesis is unambiguous as the r.mapcalc function call.This contribution was developed with AI assistance (Claude Code).
Fixes #5974