diff --git a/docs/tutorials/input.md b/docs/tutorials/input.md index 57bd9577..ab344f6e 100644 --- a/docs/tutorials/input.md +++ b/docs/tutorials/input.md @@ -277,8 +277,10 @@ FORMAT - response_curve_rule: name: description: - input_values: [] - output_values: [] + response_table: + - [ "input", "output"] + - [, ] + - [, ] input_variable: output_variable: ``` @@ -295,9 +297,16 @@ The rule needs to be applied to an existing 2D/3D variable with or without time - response_curve_rule: name: HSI Pond weed water depth description: Reponse of Pond weed (Potamogeton nodosus) to water depth - input_values: [-999.0, 0.0, 0.5, 1.0, 2.0, 999.0] - output_values: [ 0.0, 0.0, 1.0, 1.0, 0.0, 0.0] + response_table: + - ["input", "output"] + - [-999.0 , 0.0 ] + - [ 0.0 , 0.0 ] + - [ 0.5 , 1.0 ] + - [ 1.0 , 1.0 ] + - [ 2.0 , 0.0 ] + - [ 999.0 , 0.0 ] input_variable: water_depth + output_variable: HSI_Pnodosus_water_depth ```