Add drag-n-drop load data from directory
This commit is contained in:
parent
5e3d4a4328
commit
2f28d6f122
@ -19,6 +19,7 @@ from .widgets.about import MarkdownView
|
|||||||
from .widgets.led_script import LedScriptViewer
|
from .widgets.led_script import LedScriptViewer
|
||||||
# from .widgets.treeview import TreeView
|
# from .widgets.treeview import TreeView
|
||||||
|
|
||||||
|
import pickle
|
||||||
import logging
|
import logging
|
||||||
log = logging.getLogger(__name__)
|
log = logging.getLogger(__name__)
|
||||||
|
|
||||||
@ -101,9 +102,7 @@ class MainWindow(QMainWindow):
|
|||||||
def dropEvent(self, event):
|
def dropEvent(self, event):
|
||||||
for url in event.mimeData().urls():
|
for url in event.mimeData().urls():
|
||||||
file_path = url.path()[1:]
|
file_path = url.path()[1:]
|
||||||
if file_path.endswith("csv"):
|
self.call_f(file_path)
|
||||||
self.call_f(file_path)
|
|
||||||
return
|
|
||||||
# Right: Tabs: Script, Plot
|
# Right: Tabs: Script, Plot
|
||||||
self.w_right_tab = RightTab(self.measurement_load)
|
self.w_right_tab = RightTab(self.measurement_load)
|
||||||
layout.addWidget(self.w_right_tab)
|
layout.addWidget(self.w_right_tab)
|
||||||
@ -381,7 +380,6 @@ class MainWindow(QMainWindow):
|
|||||||
elif file_path.endswith(".pkl"):
|
elif file_path.endswith(".pkl"):
|
||||||
AppConfig.MAIN_CFG.set("tmp_last_measurement_save_ext", "pkl")
|
AppConfig.MAIN_CFG.set("tmp_last_measurement_save_ext", "pkl")
|
||||||
data = self.data_collector.get_data()
|
data = self.data_collector.get_data()
|
||||||
import pickle
|
|
||||||
with open(file_path, "wb") as f:
|
with open(file_path, "wb") as f:
|
||||||
pickle.dump(data, f)
|
pickle.dump(data, f)
|
||||||
else:
|
else:
|
||||||
@ -391,11 +389,18 @@ class MainWindow(QMainWindow):
|
|||||||
self.set_status(f"Aborted saving data, no file selected")
|
self.set_status(f"Aborted saving data, no file selected")
|
||||||
|
|
||||||
def measurement_load(self, filepath):
|
def measurement_load(self, filepath):
|
||||||
|
log.info(f"Loading measurement data from '{filepath}'")
|
||||||
if self.measurement_is_running():
|
if self.measurement_is_running():
|
||||||
QMessageBox.critical(self, "Measurement running", "Can not load data while measurement is running")
|
QMessageBox.critical(self, "Measurement running", "Can not load data while measurement is running")
|
||||||
return
|
return
|
||||||
if os.path.isfile(filepath):
|
if os.path.isfile(filepath):
|
||||||
data, mdata = DataCollector.load_data_from_csv(filepath)
|
if filepath.endswith(".pkl"):
|
||||||
|
with open(filepath, "rb") as file:
|
||||||
|
data, mdata = pickle.load(file)
|
||||||
|
elif filepath.endswith(".csv"):
|
||||||
|
data, mdata = DataCollector.load_data_from_csv(filepath)
|
||||||
|
else:
|
||||||
|
raise NotImplementedError(f"Unknown file extension in path: '{filepath}'.\nOnly .pkl and .csv can be loaded")
|
||||||
elif os.path.isdir(filepath):
|
elif os.path.isdir(filepath):
|
||||||
data, mdata = DataCollector.load_data_from_dir(filepath)
|
data, mdata = DataCollector.load_data_from_dir(filepath)
|
||||||
else:
|
else:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user