Revert "Add logging"
This reverts commit 6e3b9ceebd0ee6b6a0c27e3af983969799068e5e.
This commit is contained in:
parent
cab06e483e
commit
0309438cf6
@ -4,14 +4,11 @@ import os
|
|||||||
import matplotlib.pyplot as plt
|
import matplotlib.pyplot as plt
|
||||||
import datetime
|
import datetime
|
||||||
import pickle
|
import pickle
|
||||||
import logging
|
|
||||||
log = logging.getLogger(__name__)
|
|
||||||
|
|
||||||
from cpdctrl.utility.file_io import get_next_filename, sanitize_filename
|
from cpdctrl.utility.file_io import get_next_filename, sanitize_filename
|
||||||
FLUSH_TYPE = "pickle-ndarray"
|
FLUSH_TYPE = "pickle-ndarray"
|
||||||
METADATA_FILENAME = "_measurement_metadata.pkl"
|
METADATA_FILENAME = "_measurement_metadata.pkl"
|
||||||
|
|
||||||
|
|
||||||
class DataCollector:
|
class DataCollector:
|
||||||
columns = ["idx", "t [s]", "V [V]", "LED [%]"]
|
columns = ["idx", "t [s]", "V [V]", "LED [%]"]
|
||||||
def __init__(self,
|
def __init__(self,
|
||||||
@ -59,7 +56,6 @@ class DataCollector:
|
|||||||
None.
|
None.
|
||||||
"""
|
"""
|
||||||
filepath = os.path.join(self.dirpath, METADATA_FILENAME)
|
filepath = os.path.join(self.dirpath, METADATA_FILENAME)
|
||||||
log.debug(f"Writing metadata to {filepath}")
|
|
||||||
with open(filepath, "wb") as file:
|
with open(filepath, "wb") as file:
|
||||||
pickle.dump(self.metadata, file)
|
pickle.dump(self.metadata, file)
|
||||||
|
|
||||||
@ -89,13 +85,11 @@ class DataCollector:
|
|||||||
if FLUSH_TYPE == "csv":
|
if FLUSH_TYPE == "csv":
|
||||||
filename = self._get_filename() + ".csv"
|
filename = self._get_filename() + ".csv"
|
||||||
filepath = os.path.join(self.dirpath, filename)
|
filepath = os.path.join(self.dirpath, filename)
|
||||||
log.info(f"Flushing data to {filepath}")
|
|
||||||
if verbose: print(f"Flushing data to {filepath}")
|
if verbose: print(f"Flushing data to {filepath}")
|
||||||
self.to_dataframe().to_csv(filepath, sep=",", index=False, metadata=True)
|
self.to_dataframe().to_csv(filepath, sep=",", index=False, metadata=True)
|
||||||
elif FLUSH_TYPE == "pickle-ndarray":
|
elif FLUSH_TYPE == "pickle-ndarray":
|
||||||
filename = self._get_filename() + ".ndarray.pkl"
|
filename = self._get_filename() + ".ndarray.pkl"
|
||||||
filepath = os.path.join(self.dirpath, filename)
|
filepath = os.path.join(self.dirpath, filename)
|
||||||
log.info(f"Flushing data to {filepath}")
|
|
||||||
if verbose: print(f"Flushing data to {filepath}")
|
if verbose: print(f"Flushing data to {filepath}")
|
||||||
with open(filepath, "wb") as file:
|
with open(filepath, "wb") as file:
|
||||||
pickle.dump(np.array(self.data), file)
|
pickle.dump(np.array(self.data), file)
|
||||||
@ -123,8 +117,7 @@ class DataCollector:
|
|||||||
|
|
||||||
def save_csv(self, sep=",", verbose=False):
|
def save_csv(self, sep=",", verbose=False):
|
||||||
filepath = os.path.join(self.path, self.dirname + ".csv")
|
filepath = os.path.join(self.path, self.dirname + ".csv")
|
||||||
if verbose: print(f"Writing csv to {filepath}")
|
if verbose: print(f"Writing data to {filepath}")
|
||||||
log.info(f"Writing csv to {filepath}")
|
|
||||||
with open(filepath, "w") as file:
|
with open(filepath, "w") as file:
|
||||||
file.write(self.to_csv(sep=sep))
|
file.write(self.to_csv(sep=sep))
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user