Merge ea0af69da090bdc03984053399caf19029325e22 into 28d92c0574088b1657db204c3ebbdf767e8fcb87
This commit is contained in:
commit
e2d00246b8
4
pyedf.py
4
pyedf.py
@ -16,8 +16,8 @@ def read_edf_file(fileobj):
|
||||
header = {}
|
||||
# Parse header information based on the EDF/EDF+ specs
|
||||
# http://www.edfplus.info/specs/index.html
|
||||
header['version'] = data[0:7].strip()
|
||||
header['patient_id'] = data[7:88].strip()
|
||||
header['version'] = data[0:8].strip()
|
||||
header['patient_id'] = data[8:88].strip()
|
||||
header['rec_id'] = data[88:168].strip()
|
||||
header['startdate'] = data[168:176].strip()
|
||||
header['starttime'] = data[176:184].strip()
|
||||
|
Reference in New Issue
Block a user