Skip to content

Commit

Permalink
Update scaling.py (#295)
Browse files Browse the repository at this point in the history
  • Loading branch information
s-scherrer committed Mar 28, 2023
1 parent 9d06975 commit 04a0f83
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pytesmo/scaling.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ def get_scaling_method_lut():
"mean_std": mean_std,
"min_max": min_max,
"cdf_match": cdf_match,
"cdf_beta_match": cdf_match,
"cdf_beta_match": cdf_beta_match,
}

return lut
Expand Down Expand Up @@ -251,7 +251,7 @@ def mean_std(src, ref, **kwargs):


@utils.deprecated
def cdf_match(*args, **kwargs):
def cdf_beta_match(*args, **kwargs):
return cdf_match(*args, **kwargs)


Expand Down

0 comments on commit 04a0f83

Please sign in to comment.