Codebase list python-igor / 4dc1bacf-6bd0-4934-9316-9fc9dc1770a8/main bin / igorpackedexperiment.py
4dc1bacf-6bd0-4934-9316-9fc9dc1770a8/main

Tree @4dc1bacf-6bd0-4934-9316-9fc9dc1770a8/main (Download .tar.gz)

igorpackedexperiment.py @4dc1bacf-6bd0-4934-9316-9fc9dc1770a8/mainraw · history · blame

#!/usr/bin/env python
#
# Copyright (C) 2012 W. Trevor King <wking@tremily.us>
#
# This file is part of igor.
#
# igor is free software: you can redistribute it and/or modify it under the
# terms of the GNU Lesser General Public License as published by the Free
# Software Foundation, either version 3 of the License, or (at your option) any
# later version.
#
# igor is distributed in the hope that it will be useful, but WITHOUT ANY
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
# A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
# details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with igor.  If not, see <http://www.gnu.org/licenses/>.

"PXP -> ASCII conversion"

import pprint

from igor.packed import load, walk
from igor.record.wave import WaveRecord
from igor.script import Script


class PackedScript (Script):
    def _run(self, args):
        self.args = args
        records,filesystem = load(args.infile)
        if hasattr(args.outfile, 'write'):
            f = args.outfile  # filename is actually a stream object
        else:
            f = open(args.outfile, 'w')
        try:
            f.write(pprint.pformat(records))
            f.write('\n')
        finally:
            if f != args.outfile:
                f.close()
        if args.verbose > 0:
            pprint.pprint(filesystem)
        walk(filesystem, self._plot_wave_callback)

    def _plot_wave_callback(self, dirpath, key, value):
        if isinstance(value, WaveRecord):
            self.plot_wave(self.args, value.wave, title=dirpath + [key])


s = PackedScript(
    description=__doc__, filetype='IGOR Packed Experiment (.pxp) file')
s.run()