Skip to content

Commit

Permalink
Merge branch 'fix_dotc_standardization' of https://github.com/Ouranos…
Browse files Browse the repository at this point in the history
…inc/xclim into fix_dotc_standardization
  • Loading branch information
coxipi committed Sep 4, 2024
2 parents e313e52 + 6a3be9b commit 1999981
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions xclim/sdba/_adjustment.py
Original file line number Diff line number Diff line change
Expand Up @@ -1118,13 +1118,13 @@ def otc_adjust(
_otc_adjust,
hist,
ref,
kwargs=dict(
bin_width=bin_width,
bin_origin=bin_origin,
num_iter_max=num_iter_max,
jitter_inside_bins=jitter_inside_bins,
normalization=normalization,
),
kwargs={
"bin_width": bin_width,
"bin_origin": bin_origin,
"num_iter_max": num_iter_max,
"jitter_inside_bins": jitter_inside_bins,
"normalization": normalization,
},
input_core_dims=[["dim_hist", pts_dim], ["dim_ref", pts_dim]],
output_core_dims=[["dim_hist", pts_dim]],
keep_attrs=True,
Expand Down Expand Up @@ -1365,15 +1365,15 @@ def dotc_adjust(
sim,
ref,
hist,
kwargs=dict(
bin_width=bin_width,
bin_origin=bin_origin,
num_iter_max=num_iter_max,
cov_factor=cov_factor,
jitter_inside_bins=jitter_inside_bins,
kind=kind,
normalization=normalization,
),
kwargs={
"bin_width": bin_width,
"bin_origin": bin_origin,
"num_iter_max": num_iter_max,
"cov_factor": cov_factor,
"jitter_inside_bins": jitter_inside_bins,
"kind": kind,
"normalization": normalization,
},
input_core_dims=[
["dim_sim", pts_dim],
["dim_ref", pts_dim],
Expand Down

0 comments on commit 1999981

Please sign in to comment.