Made filtering deploxments optional
This commit is contained in:
parent
99f44adfc9
commit
2cd91859e5
8
graph.py
8
graph.py
@ -7,6 +7,7 @@ from matplotlib import pyplot as plt
|
||||
import matplotlib.dates as md
|
||||
|
||||
SHOW_DEPLOYMENTS = True
|
||||
FILTER_DEPLOYMENTS = True
|
||||
|
||||
plt.rcParams["figure.autolayout"] = True
|
||||
|
||||
@ -85,9 +86,10 @@ latest_available_temp_date = max(datenums)
|
||||
earliest_available_temp_date = min(datenums)
|
||||
|
||||
deployments_data = zip(deployment_names, deployment_dates)
|
||||
filtered_deployments_data = filter(lambda tup:
|
||||
tup[1] >= earliest_available_temp_date and
|
||||
tup[1] <= latest_available_temp_date, deployments_data)
|
||||
filtered_deployments_data = (filter(lambda tup:
|
||||
tup[1] >= earliest_available_temp_date and
|
||||
tup[1] <= latest_available_temp_date, deployments_data)
|
||||
if FILTER_DEPLOYMENTS else deployments_data)
|
||||
|
||||
max_temp = max(max(data_frame.tempWarmSide1C), max(data_frame.tempWarmSide2C))
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user