mirror of https://gitlab.com/pamhyr/pamhyr2
Results: Fix results export.
parent
3e085dd7c6
commit
36b62260b1
|
|
@ -614,12 +614,11 @@ class ResultsWindow(PamhyrWindow):
|
|||
quotechar='|', quoting=csv.QUOTE_MINIMAL)
|
||||
|
||||
writer.writerow(["timestamp", "z", "q"])
|
||||
for profile in reach.profiles:
|
||||
timestamps = self._results.get("timestamps")
|
||||
timestamps = sorted(self._results.get("timestamps"))
|
||||
|
||||
for ts in timestamps:
|
||||
writer.writerow([
|
||||
ts,
|
||||
profile.get_ts_key(ts, "Z"),
|
||||
profile.get_ts_key(ts, "Q"),
|
||||
])
|
||||
for ts in timestamps:
|
||||
writer.writerow([
|
||||
ts,
|
||||
profile.get_ts_key(ts, "Z"),
|
||||
profile.get_ts_key(ts, "Q"),
|
||||
])
|
||||
|
|
|
|||
Loading…
Reference in New Issue