Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rain total #3

Open
ThomPy71 opened this issue Mar 13, 2020 · 0 comments
Open

Rain total #3

ThomPy71 opened this issue Mar 13, 2020 · 0 comments

Comments

@ThomPy71
Copy link

ThomPy71 commented Mar 13, 2020

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).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant