Skip to main content

Hello,

I have several year's worth of rain gauge data at 15 minute intervals. What I am trying to get out of it is sorting the dataset by days when it rained over, and under a certain value (that would be a sum total of rainfall in mm for each day).

Any suggestion on how to achieve this are muchly appreciated.

Cheers.

If you use the datetimeconverter, to convert the datetime to just a date, statistics calculator with a group by of the date and sum the rainfall attribute, then a tester to see if the total is over or under your specified value


That's exactly what I needed. Thank you!


Reply