-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest_hdf5.py
95 lines (65 loc) · 2.07 KB
/
test_hdf5.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
#!/usr/bin/python3
# -*- coding: utf-8 -*-
"""
Created on Fri Feb 22 10:35:01 2019
@author: Vedran Furtula
"""
import h5py, random
import numpy
run_test = 1
if run_test==0:
dt_ = h5py.vlen_dtype(numpy.dtype('float32'))
with h5py.File('resize_dataset.hdf5', 'w') as f:
d1 = f.create_dataset('dataset1', (0, ), maxshape=(None, ),dtype=dt_)
d2 = f.create_dataset('dataset2', (0, ), maxshape=(None, ))
#d1[:10] = np.random.randn(10)
#d2[:5] = np.random.randn(5)
#d.resize((200,))
#d[100:200] = np.random.randn(100)
with h5py.File('resize_dataset.hdf5', 'r') as f:
dset = f['dataset1']
print("dset: ", dset[:])
for tal in range(10):
with h5py.File('resize_dataset.hdf5', 'a') as f:
dset = f["dataset1"]
print("dset: ",dset.size)
X_train_data = numpy.array([random.random() for i in range(tal+1)])
#dset.resize((dset.shape[0] + X_train_data.shape[0]), axis = 0)
#dset[-X_train_data.shape[0]:] = X_train_data
dset.resize((dset.size+1,))
dset[-1] = X_train_data
for tal in numpy.array([1.11,2.22,3.333,4.5555]):
with h5py.File('resize_dataset.hdf5', 'a') as f:
dset = f['dataset2']
print("dset: ",dset.size)
dset.resize((dset.size+1,))
dset[-1] = tal
with h5py.File('resize_dataset.hdf5', 'r') as f:
print("Header: ", f.keys())
dset1 = f['dataset1']
print(dset1)
print(dset1[:])
dset2 = f['dataset2']
print(dset2)
print(dset2[:])
elif run_test==1:
with h5py.File("data/data_200430-0831.hdf5", 'r') as f:
print("Header: ", f.keys())
dset1 = f["set_wl"]
print("set_wl: ", dset1[0:10])
dset1 = f["real_wl"]
print("real_wl: ",dset1[0:10])
dset1 = f["volt"]
print("volt: ",dset1[0:10])
dset1 = f["ard_bit"]
#print("ard_bit: ",dset1[0:10])
dset1 = f["stepper_pos"]
#print("stepper_pos: ",dset1[0:10])
dset1 = f["timetrace"]
#print("timetrace: ",dset1[0:10])
dset1 = f["set_wl_endpts"]
print("set_wl_endpts: ", dset1[0:10])
dset1 = f["real_wl_endpts"]
print("real_wl_endpts: ",dset1[0:10])
dset1 = f["volt_endpts"]
print("volt_endpts: ",dset1[0:10])