Skip to content

Commit

Permalink
Merge pull request #150 from armingensler/hl_blocks_vlsd
Browse files Browse the repository at this point in the history
Allow HL blocks for VLSD data.
  • Loading branch information
ratal authored Aug 12, 2018
2 parents 3eeca53 + 9142918 commit cc1fca2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mdfreader/mdf4reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@ def load(self, record, info, nameList=None, sortedFlag=True, vlsd=False):
temp.read(self.fid)
temps.update(temp)
self.pointerTodata = temps['hl_dl_first']
temps['data'] = self.load(record, info, nameList=nameList, sortedFlag=sortedFlag)
temps['data'] = self.load(record, info, nameList=nameList, sortedFlag=sortedFlag, vlsd=vlsd)
elif temps['id'] in ('##DT', '##RD', b'##DT', b'##RD'): # normal sorted data block, direct read
temps['data'] = record.readSortedRecord(self.fid, info, channelSet=nameList)
elif temps['id'] in ('##SD', b'##SD'): # VLSD
Expand Down

0 comments on commit cc1fca2

Please sign in to comment.