Increase lower streak limit.

This commit is contained in:
mattbk
2017-12-01 19:09:47 +00:00
parent 8f5daad0ea
commit cbe48732e9

View File

@ -128,7 +128,7 @@ def history():
timestep_minutes = 1
# Calculate minutes for each streak
streak_minutes = streak_lengths(time_series_temperature_values)*timestep_minutes
streak_minutes = [x-1 for x in streak_minutes] #Turn this into a duration
streak_minutes = [x-1 for x in streak_minutes if x > 2] #Turn this into a duration, filter out < 2
# Send output to page
return render_template("history.html", timezone = timezone,
@ -217,4 +217,4 @@ def validate_date(d):
return False
if __name__ == "__main__":
app.run(host='0.0.0.0', port=8080)
app.run(host='0.0.0.0', port=8080)