Skip to content

Commit

Permalink
Remove tasmean units temporarily
Browse files Browse the repository at this point in the history
  • Loading branch information
eyvorchuk committed Apr 12, 2024
1 parent 057b86e commit 15c5201
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 10 deletions.
8 changes: 0 additions & 8 deletions chickadee/io.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,14 +82,6 @@
default="celsius",
data_type="string",
),
LiteralInput(
"tasmean_units",
"Tasmean Units",
abstract="Units used for tasmean in output file",
max_occurs=1,
default="celsius",
data_type="string",
),
LiteralInput(
"pr_units",
"Precipitation Units",
Expand Down
3 changes: 1 addition & 2 deletions chickadee/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ def set_general_options(
n_pr_bool,
tasmax_units,
tasmin_units,
tasmean_units,
pr_units,
max_gb,
start_date,
Expand All @@ -46,7 +45,7 @@ def set_general_options(
max.GB={max_gb},
check.units={r_boolean(units_bool)},
check.neg.precip={r_boolean(n_pr_bool)},
target.units=c(tasmax='{tasmax_units}', tasmin='{tasmin_units}', tasmean='{tasmean_units}', pr='{pr_units}'),
target.units=c(tasmax='{tasmax_units}', tasmin='{tasmin_units}', pr='{pr_units}'),
calibration.start=as.POSIXct('{start_date}', tz='GMT'),
calibration.end=as.POSIXct('{end_date}', tz='GMT')
)
Expand Down

0 comments on commit 15c5201

Please sign in to comment.