read_chirps return chrip times in ms

This commit is contained in:
efish 2018-11-15 15:06:47 +01:00
parent 67353f5c0b
commit fa56e2dc04

View File

@ -81,7 +81,7 @@ def read_chirp_times(dataset):
if "#Key" in l:
chirp_times[(index, df, contrast, cs)] = []
if len(l.strip()) != 0 and "#" not in l:
chirp_times[(index, df, contrast, cs)].append(float(l.split()[1]))
chirp_times[(index, df, contrast, cs)].append(float(l.split()[1]) * 1000.)
return chirp_times