Skip to content

Commit

Permalink
uniform: forward low/high
Browse files Browse the repository at this point in the history
  • Loading branch information
MuellerSeb committed Jun 15, 2023
1 parent e9cd639 commit 01c9e14
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/gstools/transform/field.py
Original file line number Diff line number Diff line change
Expand Up @@ -585,7 +585,10 @@ def normal_to_uniform(
if not process:
_check_for_default_normal(fld)
kw = dict(
mean=0.0 if process and not keep_mean else fld.mean, var=fld.model.sill
mean=0.0 if process and not keep_mean else fld.mean,
var=fld.model.sill,
low=low,
high=high,
)
return apply_function(
fld=fld,
Expand Down

0 comments on commit 01c9e14

Please sign in to comment.