Extend JPK v0.5 parsing back to 0.3 and 0.4 file formats.
authorW. Trevor King <wking@drexel.edu>
Mon, 23 Aug 2010 14:29:14 +0000 (10:29 -0400)
committerW. Trevor King <wking@drexel.edu>
Mon, 23 Aug 2010 14:29:14 +0000 (10:29 -0400)
On Mon, Aug 23, 2010 at 02:15:08PM +0200, Michael Haggerty wrote:
> The fundamentals of our file format has not changed much since it was
> introduced.  Most of the changes involve metadata, such as how we
> describe force spectroscopy scanning patterns, that are not even
> described in the document that I sent you.

hooke/driver/jpk.py

index 6c95fe9fd2aac14f124b9a513ac7fd4cd3b9c57e..3cbe1df8a7815f1ab68b04623f27e6f19470e2e7 100644 (file)
@@ -75,7 +75,7 @@ class JPKDriver (Driver):
             for i in range(len([p for p in f.namelist()
                                 if p.endswith('segment-header.properties')])):
                 segments.append(self._zip_segment(f, path, info, zip_info, i))
-        if zip_info['file-format-version'] not in ['0.5']:
+        if zip_info['file-format-version'] not in ['0.3', '0.4', '0.5']:
             raise NotImplementedError(
                 'JPK file version %s not supported (yet).'
                 % zip_info['file-format-version'])