mg-pso-gui 0.1.42__py3-none-any.whl → 0.1.44__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {mg_pso_gui-0.1.42.dist-info → mg_pso_gui-0.1.44.dist-info}/METADATA +1 -1
- {mg_pso_gui-0.1.42.dist-info → mg_pso_gui-0.1.44.dist-info}/RECORD +6 -6
- mgpsogui/gui/VisualizeTab/SideBar.py +16 -4
- {mg_pso_gui-0.1.42.dist-info → mg_pso_gui-0.1.44.dist-info}/WHEEL +0 -0
- {mg_pso_gui-0.1.42.dist-info → mg_pso_gui-0.1.44.dist-info}/entry_points.txt +0 -0
- {mg_pso_gui-0.1.42.dist-info → mg_pso_gui-0.1.44.dist-info}/top_level.txt +0 -0
|
@@ -17,7 +17,7 @@ mgpsogui/gui/SetupTab/SetupTab.py,sha256=Doy_6xLq1BjhLTFHRQm7CAbpQzUnNJW4KkBcdfr
|
|
|
17
17
|
mgpsogui/gui/SetupTab/StaticParameterView.py,sha256=iEG-UpBBlAJabZo3MG768oLqOROjUPc23tKOSd47IUc,2739
|
|
18
18
|
mgpsogui/gui/SetupTab/StepView.py,sha256=oG5Q-3xpTRP1f_PbNvohKctrbpD63zLAJzHD00bN44k,5531
|
|
19
19
|
mgpsogui/gui/SetupTab/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
20
|
-
mgpsogui/gui/VisualizeTab/SideBar.py,sha256=
|
|
20
|
+
mgpsogui/gui/VisualizeTab/SideBar.py,sha256=OhKGjlGzwGr4QX8ig5-D_QbcLbK3dOL9fy0md14Y-j8,6025
|
|
21
21
|
mgpsogui/gui/VisualizeTab/VisualizeTab.py,sha256=zYu5NDEYkNa76fx_JU8iZ8hMTzdDNcP77cVZwR7Qhkw,3462
|
|
22
22
|
mgpsogui/gui/VisualizeTab/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
23
23
|
mgpsogui/gui/images/IGOW 4 Logo.png,sha256=JixNXz5gOEj898VF-_PHthAlGU-6W-y9ucb4EVNPtjs,433752
|
|
@@ -45,8 +45,8 @@ mgpsogui/util/recosu/utils/trace_writer.py,sha256=V9BJlOjCbNYGoXGEk3CF5wjifBxvar
|
|
|
45
45
|
mgpsogui/util/recosu/utils/utils.py,sha256=QB8vftq3142ekG0ORjz0ZBHU5YknXbR0oTsrxrPAsF0,3951
|
|
46
46
|
mgpsogui/util/recosu/utils/plot/__init__.py,sha256=h1KjM7_tNDv351pcwt8A6Ibb1jhwWyx5Gbu-zj-sI3Q,71
|
|
47
47
|
mgpsogui/util/recosu/utils/plot/cost_steps.py,sha256=1Ce11AJyweWkmvjXPxEygzS-h8yVLmQEDLS53yjPLqQ,3779
|
|
48
|
-
mg_pso_gui-0.1.
|
|
49
|
-
mg_pso_gui-0.1.
|
|
50
|
-
mg_pso_gui-0.1.
|
|
51
|
-
mg_pso_gui-0.1.
|
|
52
|
-
mg_pso_gui-0.1.
|
|
48
|
+
mg_pso_gui-0.1.44.dist-info/METADATA,sha256=idA0QtoZ9t4DssHp8kW81n886TJLbq0nCOmqZQgrqHs,9458
|
|
49
|
+
mg_pso_gui-0.1.44.dist-info/WHEEL,sha256=Xo9-1PvkuimrydujYJAjF7pCkriuXBpUPEjma1nZyJ0,92
|
|
50
|
+
mg_pso_gui-0.1.44.dist-info/entry_points.txt,sha256=jg82VOFjR1XDGrchs1wJSCqKYE4Ozv12aBcCSp--koA,117
|
|
51
|
+
mg_pso_gui-0.1.44.dist-info/top_level.txt,sha256=y7JuS9xJN5YdxUsQ3PSVjN8MzQAnR146bP3ZN3PYWdE,9
|
|
52
|
+
mg_pso_gui-0.1.44.dist-info/RECORD,,
|
|
@@ -77,8 +77,11 @@ class SideBar(CTkScrollableFrame):
|
|
|
77
77
|
if (self.home_page.selected_csv.get() not in name_list):
|
|
78
78
|
self.home_page.selected_csv.set(name_list[0])
|
|
79
79
|
|
|
80
|
+
file_label = CTkLabel(self.containerFrame, text="CSV File:")
|
|
81
|
+
file_label.grid(row=0, column=0, padx=(20, 20), pady=(20, 5), sticky="w")
|
|
82
|
+
|
|
80
83
|
self.home_page.csv_file_selector = CTkOptionMenu(self.containerFrame, values=name_list, variable=self.home_page.selected_csv, command=self.home_page.update_graph)
|
|
81
|
-
self.home_page.csv_file_selector.grid(row=
|
|
84
|
+
self.home_page.csv_file_selector.grid(row=1, column=0, padx=(20, 20), pady=(5, 5), sticky="ew")
|
|
82
85
|
|
|
83
86
|
selected_file = self.home_page.selected_csv.get()
|
|
84
87
|
if (selected_file in path_map and selected_file != self.home_page.open_file):
|
|
@@ -89,20 +92,29 @@ class SideBar(CTkScrollableFrame):
|
|
|
89
92
|
# Get all column names of CSV
|
|
90
93
|
columns = self.home_page.csv_data.columns
|
|
91
94
|
|
|
95
|
+
x_axis_label = CTkLabel(self.containerFrame, text="X Axis:")
|
|
96
|
+
x_axis_label.grid(row=2, column=0, padx=(20, 20), pady=(40, 5), sticky="w")
|
|
97
|
+
|
|
92
98
|
self.home_page.csv_x_selector = CTkOptionMenu(self.containerFrame, values=columns, variable=self.home_page.selected_x, command=self.home_page.update_graph)
|
|
93
|
-
self.home_page.csv_x_selector.grid(row=
|
|
99
|
+
self.home_page.csv_x_selector.grid(row=3, column=0, padx=(20, 20), pady=(5, 5), sticky="ew")
|
|
94
100
|
|
|
95
101
|
if (self.home_page.csv_x_selector.get() not in columns):
|
|
96
102
|
self.home_page.csv_x_selector.set(columns[1])
|
|
97
103
|
|
|
104
|
+
y1_axis_label = CTkLabel(self.containerFrame, text="Y Axis:")
|
|
105
|
+
y1_axis_label.grid(row=4, column=0, padx=(20, 20), pady=(20, 5), sticky="w")
|
|
106
|
+
|
|
98
107
|
self.home_page.csv_y1_selector = CTkOptionMenu(self.containerFrame, values=columns, variable=self.home_page.selected_y1, command=self.home_page.update_graph)
|
|
99
|
-
self.home_page.csv_y1_selector.grid(row=
|
|
108
|
+
self.home_page.csv_y1_selector.grid(row=5, column=0, padx=(20, 20), pady=(5, 5), sticky="ew")
|
|
100
109
|
|
|
101
110
|
if (self.home_page.csv_y1_selector.get() not in columns):
|
|
102
111
|
self.home_page.csv_y1_selector.set(columns[2])
|
|
103
112
|
|
|
113
|
+
y2_axis_label = CTkLabel(self.containerFrame, text="Secondary Y Axis:")
|
|
114
|
+
y2_axis_label.grid(row=6, column=0, padx=(20, 20), pady=(20, 5), sticky="w")
|
|
115
|
+
|
|
104
116
|
self.home_page.csv_y2_selector = CTkOptionMenu(self.containerFrame, values=columns, variable=self.home_page.selected_y2, command=self.home_page.update_graph)
|
|
105
|
-
self.home_page.csv_y2_selector.grid(row=
|
|
117
|
+
self.home_page.csv_y2_selector.grid(row=7, column=0, padx=(20, 20), pady=(5, 5), sticky="ew")
|
|
106
118
|
|
|
107
119
|
if (self.home_page.csv_y2_selector.get() not in columns):
|
|
108
120
|
self.home_page.csv_y2_selector.set(columns[3])
|
|
File without changes
|
|
File without changes
|
|
File without changes
|