-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathapp_static.py
253 lines (199 loc) · 6.74 KB
/
app_static.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
## ------ Dash application for visualizing solutions to the static problem ------
import os
import json
import re
import pandas as pd
import dash
import dash_core_components as dcc
import dash_html_components as html
from dash.dependencies import Input, Output
import plotly.express as px
import plotly.graph_objects as go
from utils_static import *
external_stylesheets = ['https://codepen.io/chriddyp/pen/bWLwgP.css']
app = dash.Dash(__name__, external_stylesheets=external_stylesheets)
## ------ Obtention de la liste des fichiers de sortie ------
pattern = '^solution_([a-zA-Z0-9]*)_(\w+).csv$'
# dates_avion est undictionnaire dont les clés sont les dates des instances et
# dont les clés sont des string donnant l'avion choisi
dates_avion = dict()
for filename in os.listdir('output'):
ans = re.findall(pattern=pattern, string=filename)
if len(ans) == 1: # Sanity check pour vérifier qu'on a bien une solution...
date = ans[0][0]
avion = ans[0][1]
dates_avion[date] = avion
# Test pour vérifier si on arrive ou non à récupérer des données
assert len(dates_avion) != 0, 'Pas de données correctes trouvées dans le dossier "output" !'
# On extrait les clés du dictionnaire dates_avion pour lire plus facilement les dates:
list_dates = list(dates_avion.keys())
## ------ Widgets ------
date_dropdown = dcc.Dropdown(
id='date-dropdown',
options=[
{'label': f"{date} - {avion}", 'value': f"{date}_{avion}"} for date, avion in dates_avion.items()
],
value=f"{list_dates[0]}_{dates_avion[list_dates[0]]}" # on choisit d'avoir par défaut la 1ère date trouvée
)
## ------ Layout ------
app.layout = html.Div([
html.Div(
[
html.H1("Projet AirFrance (ST7) - Groupe 2", className="app__header__title",
style={'color': '#990000', 'text-align': 'center'}),
html.P(
dcc.Markdown(
"Thomas Bouquet, Caio De Prospero Iglesias, Quentin Guilhot, Thomas Melkior, Tony Wu"),
style={
'fontSize': 16,
'color': '#990000',
'text-align': 'center'
},
className="app__header__title--grey",
),
],
className="app__header__desc",
),
html.Div(
[
html.Img(
src=app.get_asset_url("AirFrance_logo.png"),
style={
'width': '20%',
'position': 'absolute',
'right': '4%',
'top': '6%',
},
className="app__menu__img",
)
],
className="app__header__logo",
),
html.Div(
[
html.Img(
src=app.get_asset_url("cs_logo.png"),
style={
'width': '13%',
'position': 'absolute',
'right': '85%',
'top': '2%',
},
className="app__menu__img",
)
],
className="app__header__logo",
),
html.Div(
style={"padding": "10px"}
),
html.P(
dcc.Markdown("Visualisation des solutions optimales"),
style={
'fontSize': 30,
'color': '#000099',
'text-align': 'left'
},
className="app__header__title--grey",
),
html.P(
dcc.Markdown(
"Sélectionnez la date pour laquelle vous voulez regarder la solution ci-dessous : "),
style={
'fontSize': 18,
'color': 'black',
'text-align': 'left'
},
className="app__header__title--grey",
),
date_dropdown,
dcc.Graph(id="scatter-plot"),
html.Div(
[
html.Img(
src=app.get_asset_url("legend2.png"),
style={
'width': '53%',
'position': 'absolute',
'left': '5%',
'bottom': '2%',
},
className="app__menu__img",
)
],
className="app__header__logo",
),
html.Div(
style={"padding": "15px"}
),
])
@app.callback(
Output("scatter-plot", "figure"),
[Input("date-dropdown", "value")])
def update_bar_chart(value):
## --- Récupération des données de l'instance sélectionnée dans le Dropdown ---
date, AVION = value.split("_")
## --- Lecture du CSV ---
filename = f'solution_{date}_{AVION}.csv'
df_ans = pd.read_csv(os.path.join('output', filename))
df_ans = df_ans.astype({"Transit Time": str}).replace({'inf': '∞'}, regex=True)
## --- Calcul du barycentre depuis df_ans directement
barycentre_x, barycentre_y = calcul_barycentre(df_ans)
## --- Récupération des marqueurs pour le tracé dans Plotly
marker_list = get_markers_passagers(df_ans)
## --- Récupération de certaines métadonnées nécessaire à Plotly
with open('./'+AVION+'.json') as f:
preprocess = json.load(f)
avion = {
'x_max': preprocess['x_max'],
'y_max': preprocess['y_max'],
'exit': preprocess['exit'],
'hallway': preprocess['hallway'],
'barycentre': preprocess['barycentre'],
'background': preprocess['background'],
'seats': {
'real': [],
'fictive': [],
'business': [],
'exit': [],
'eco': []
}
}
## --- Plot de la figure avec Plotly ---
fig = px.scatter(
df_ans,
x='x',
y='y',
hover_name='Siège',
color= 'ID Groupe',
size='Poids',
hover_data=df_ans.columns,
template="plotly_white",
color_continuous_scale=px.colors.diverging.RdBu)
fig.update_traces(marker=dict(line=dict(width=2, color='black')),
marker_symbol=marker_list,
selector=dict(mode='markers'))
## Ajout du barycentre
fig.add_trace(
go.Scatter(x=[barycentre_x],
y=[barycentre_y],
name="Barycentre",
showlegend=False,
marker_symbol=["star-triangle-up-dot"],
mode="markers",
marker=dict(size=20,
color="green",
line=dict(width=2, color='DarkSlateGrey'))))
# fig.add_layout_image(source=f"cabine{AVION}AF.jpg")
# Positionnement de la légende
fig.update_layout(legend=dict(
orientation="h",
yanchor="bottom",
y=1.02,
xanchor="right",
x=1
))
# Add images
fig.add_layout_image(avion['background'])
return fig
app.run_server(debug=False)