You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 13, 2022. It is now read-only.
timeInterval is the minimum time expected between tips. This can be variable by rain gauge, and so may be more practical to calculate something like min(diff.time(pdate[i], pdate[i-1])) and use it as input to functions.
Currently implemented in RMevents_sko -- use elsewhere where timeInterval is needed.
The text was updated successfully, but these errors were encountered:
In erosivity function, we need to internally calculate timeInterval, but we don't have the original (raw) data to calculate df(time). Export df(time) somehow from RMevents.
This is now an output of RMevents -- still deciding if this should still be an argument in the function where the user can subset the list from RMevents or just use behind the scenes.
This can be behind the scenes, if the user changed it to something other than the minimum time then rainmaker will be giving them a less correct answer. In the past, the program 'trusted' the user to know this value, much better to just figure it out for the user.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
timeInterval is the minimum time expected between tips. This can be variable by rain gauge, and so may be more practical to calculate something like
min(diff.time(pdate[i], pdate[i-1]))
and use it as input to functions.Currently implemented in
RMevents_sko
-- use elsewhere where timeInterval is needed.The text was updated successfully, but these errors were encountered: