Skip to content

Commit 2d3588b

Browse files
committed
d'oh
1 parent dc59b28 commit 2d3588b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

data/expected/fb/convert2hdf5.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@
1616
for line in csvFile:
1717
u, v, re, im, sigma = line[0].split()
1818
udata.append(float(u))
19-
vdata.append(float(u))
20-
rdata.append(float(u))
21-
idata.append(float(u))
22-
sdata.append(float(u))
19+
vdata.append(float(v))
20+
rdata.append(float(re))
21+
idata.append(float(im))
22+
sdata.append(float(sigma))
2323

2424
f = h5py.File(h5_name, 'w')
2525
f.create_dataset('u', data=udata)

0 commit comments

Comments
 (0)