AquaBEHER 1.4.0 #10
-
AquaBEHER 1.4.0🆕 Added
🔄 Changed
This discussion was created from the release AquaBEHER 1.4.0. |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
How can we get the input for the seasonal forecast of rainfall ? |
Beta Was this translation helpful? Give feedback.
-
One way to obtain seasonal forecast of rainfall in the form of categorical tercile forecasts is from national meteorological offices, get the forecast and import it as a dataframe. eg. for the seasonal rainfall forecast with tercile probability of Below Normal = 15%, Normal = 10% and Above Normal = 75%; you can import it as: |
Beta Was this translation helpful? Give feedback.
-
One way to obtain seasonal forecast of rainfall in the form of categorical tercile forecasts is from national meteorological offices, get the forecast and import it as a dataframe. eg. for the seasonal rainfall forecast with tercile probability of Below Normal = 15%, Normal = 10% and Above Normal = 75%; you can import it as: |
Beta Was this translation helpful? Give feedback.
One way to obtain seasonal forecast of rainfall in the form of categorical tercile forecasts is from national meteorological offices, get the forecast and import it as a dataframe.
eg. for the seasonal rainfall forecast with tercile probability of Below Normal = 15%, Normal = 10% and Above Normal = 75%; you can import it as:
rainTerc <- data.frame(T1 = 0.15, T2 = 0.10, T3 = 0.75)