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
Just got this model and working through your code. For me, the rain total (in mm) is the sum of the first number multiplied by 10 plus the last 2 numbers your code extracts, all divided by 10. I.e. ( [60:61]*10 + [61:62] + [63:64] ) / 10
In my case, 10.0mm total and the numbers are:
[60:61] = 9
[61:62] = 6
[63:64] = 4
((9*10)+6+4)/10 = 10.0mm (not 49.6mm as is currently given in the code).
The text was updated successfully, but these errors were encountered:
Just got this model and working through your code. For me, the rain total (in mm) is the sum of the first number multiplied by 10 plus the last 2 numbers your code extracts, all divided by 10. I.e. ( [60:61]*10 + [61:62] + [63:64] ) / 10
In my case, 10.0mm total and the numbers are:
[60:61] = 9
[61:62] = 6
[63:64] = 4
((9*10)+6+4)/10 = 10.0mm (not 49.6mm as is currently given in the code).
The text was updated successfully, but these errors were encountered: