We are trying to implement a peak detection algorithm using BigQuery. Basically we want to track if there is a threshold exceedance, and then just output the start and end time.
For example, with GSOD weather data pick an arbitrary temperature threshold. Basically for a given GSOD location, find the dates where it is above 70 degrees but don't count it as an event until it drops back below 70 degrees.
LAG() and LEAD() will help us peek at the next and previous days temperature. We'll know an event has started when the previous day is below 70, and the next day is over it. Same, but reversed, to detect the end.
Results: