mg-pso-gui 0.1.53__py3-none-any.whl → 0.1.54__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.53.dist-info → mg_pso_gui-0.1.54.dist-info}/METADATA +1 -1
- {mg_pso_gui-0.1.53.dist-info → mg_pso_gui-0.1.54.dist-info}/RECORD +6 -6
- mgpsogui/gui/VisualizeTab/SideBar.py +7 -0
- {mg_pso_gui-0.1.53.dist-info → mg_pso_gui-0.1.54.dist-info}/WHEEL +0 -0
- {mg_pso_gui-0.1.53.dist-info → mg_pso_gui-0.1.54.dist-info}/entry_points.txt +0 -0
- {mg_pso_gui-0.1.53.dist-info → mg_pso_gui-0.1.54.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=8UU0Y-dCRdcK6wwj7J6XiLJtOvx1hXXN7HWWUVDgMmU,11276
|
|
21
21
|
mgpsogui/gui/VisualizeTab/VisualizeTab.py,sha256=y3ZjLR78yXjHTcHMpB637ipBKxb1CCEM3qzG8OUJvpQ,3477
|
|
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.54.dist-info/METADATA,sha256=Ug1j1UdaEy0rWzjvanoTtpRIsW1JPOE_lsOve3sv8QU,9458
|
|
49
|
+
mg_pso_gui-0.1.54.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
50
|
+
mg_pso_gui-0.1.54.dist-info/entry_points.txt,sha256=jg82VOFjR1XDGrchs1wJSCqKYE4Ozv12aBcCSp--koA,117
|
|
51
|
+
mg_pso_gui-0.1.54.dist-info/top_level.txt,sha256=y7JuS9xJN5YdxUsQ3PSVjN8MzQAnR146bP3ZN3PYWdE,9
|
|
52
|
+
mg_pso_gui-0.1.54.dist-info/RECORD,,
|
|
@@ -86,6 +86,9 @@ class SideBar(CTkScrollableFrame):
|
|
|
86
86
|
selected_file = self.home_page.selected_csv.get()
|
|
87
87
|
if (selected_file in path_map and selected_file != self.home_page.open_file):
|
|
88
88
|
self.home_page.csv_data = pd.read_csv(path_map[selected_file], skiprows=3)
|
|
89
|
+
if (self.home_page.csv_data.columns[0] != "@H"):
|
|
90
|
+
self.home_page.csv_data = pd.read_csv(path_map[selected_file], skiprows=9)
|
|
91
|
+
|
|
89
92
|
self.home_page.open_file = selected_file
|
|
90
93
|
|
|
91
94
|
if (self.home_page.csv_data is not None):
|
|
@@ -155,11 +158,15 @@ class SideBar(CTkScrollableFrame):
|
|
|
155
158
|
selected_file = self.home_page.selected_csv.get()
|
|
156
159
|
if (selected_file in path_map and selected_file != self.home_page.open_file):
|
|
157
160
|
self.home_page.csv_data = pd.read_csv(path_map[selected_file], skiprows=3)
|
|
161
|
+
if (self.home_page.csv_data.columns[0] != "@H"):
|
|
162
|
+
self.home_page.csv_data = pd.read_csv(path_map[selected_file], skiprows=9)
|
|
158
163
|
self.home_page.open_file = selected_file
|
|
159
164
|
|
|
160
165
|
selected_file2 = self.home_page.selected_csv2.get()
|
|
161
166
|
if (selected_file2 in path_map and selected_file2 != self.home_page.open_file2):
|
|
162
167
|
self.home_page.csv_data2 = pd.read_csv(path_map[selected_file2], skiprows=3)
|
|
168
|
+
if (self.home_page.csv_data2.columns[0] != "@H"):
|
|
169
|
+
self.home_page.csv_data2 = pd.read_csv(path_map[selected_file2], skiprows=9)
|
|
163
170
|
self.home_page.open_file2 = selected_file2
|
|
164
171
|
|
|
165
172
|
if (self.home_page.csv_data is not None and self.home_page.csv_data2 is not None):
|
|
File without changes
|
|
File without changes
|
|
File without changes
|