Skip to content
Snippets Groups Projects
Commit e6c20eeb authored by Tammo Jan Dijkema's avatar Tammo Jan Dijkema
Browse files

Skip old data

parent a0440c1d
No related branches found
No related tags found
No related merge requests found
......@@ -132,6 +132,12 @@ class PowerPlotMainWindow(QMainWindow):
if first_time is None:
first_time = datetime.utcfromtimestamp(float(values[0]))
else:
while datetime.utcfromtimestamp(float(values[0])) < first_time:
while not values[0][0].isnumeric():
line = sys.stdin.readline()
values = line.split(",")
self.time_dt = np.array(date2num(first_time))
self.data = np.array([float(values[self.col_num])])
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment