Home
last modified time | relevance | path

Searched refs:rain_minute (Results 1 – 1 of 1) sorted by relevance

/dports/comms/xastir/Xastir-Release-2.1.8/src/
H A Dwx.c99 float rain_minute[60]; // Total rain for each min. of last hour, hundredths of an inch variable
158 rain_minute[x] = 0.0; in clear_rain_data()
189 rain_minute[ (current + 1) % 60 ] = 0.0; // Zero out the next bucket (probably have data in in compute_rain_hour()
193 if (rain_minute[current] == 0.0) // If no rain_total stored yet in this minute's bucket in compute_rain_hour()
195 rain_minute[current] = rain_total; // Write into current bucket in compute_rain_hour()
203 if ( (rain_minute[j] > 0.0) && (rain_minute[j] < lowest) ) // Found a lower non-zero value? in compute_rain_hour()
205 lowest = rain_minute[j]; // Snag it in compute_rain_hour()