[8bd8ea4] | 1 | """ |
---|
| 2 | This software was developed by the University of Tennessee as part of the |
---|
| 3 | Distributed Data Analysis of Neutron Scattering Experiments (DANSE) |
---|
| 4 | project funded by the US National Science Foundation. |
---|
| 5 | |
---|
| 6 | See the license text in license.txt |
---|
| 7 | |
---|
| 8 | copyright 2008, University of Tennessee |
---|
| 9 | """ |
---|
| 10 | |
---|
| 11 | import numpy |
---|
| 12 | import os |
---|
| 13 | from DataLoader.data_info import Data1D |
---|
| 14 | |
---|
| 15 | class Reader: |
---|
| 16 | """ |
---|
| 17 | Class to load ascii files (2 or 3 columns) |
---|
| 18 | """ |
---|
[8780e9a] | 19 | ## File type |
---|
| 20 | type = ["ASCII files (*.txt)|*.txt", |
---|
| 21 | "ASCII files (*.dat)|*.dat"] |
---|
[8bd8ea4] | 22 | ## List of allowed extensions |
---|
| 23 | ext=['.txt', '.TXT', '.dat', '.DAT'] |
---|
| 24 | |
---|
| 25 | def read(self, path): |
---|
| 26 | """ |
---|
| 27 | Load data file |
---|
| 28 | |
---|
| 29 | @param path: file path |
---|
| 30 | @return: Data1D object, or None |
---|
| 31 | @raise RuntimeError: when the file can't be opened |
---|
| 32 | @raise ValueError: when the length of the data vectors are inconsistent |
---|
| 33 | """ |
---|
| 34 | if os.path.isfile(path): |
---|
| 35 | basename = os.path.basename(path) |
---|
| 36 | root, extension = os.path.splitext(basename) |
---|
| 37 | if extension.lower() in self.ext: |
---|
| 38 | try: |
---|
| 39 | input_f = open(path,'r') |
---|
| 40 | except : |
---|
| 41 | raise RuntimeError, "ascii_reader: cannot open %s" % path |
---|
| 42 | buff = input_f.read() |
---|
| 43 | lines = buff.split('\n') |
---|
| 44 | x = numpy.zeros(0) |
---|
| 45 | y = numpy.zeros(0) |
---|
| 46 | dy = numpy.zeros(0) |
---|
| 47 | output = Data1D(x, y, dy=dy) |
---|
| 48 | self.filename = output.filename = basename |
---|
| 49 | |
---|
| 50 | # The first good line of data will define whether |
---|
| 51 | # we have 2-column or 3-column ascii |
---|
| 52 | has_error = None |
---|
| 53 | |
---|
| 54 | for line in lines: |
---|
| 55 | toks = line.split() |
---|
| 56 | try: |
---|
| 57 | _x = float(toks[0]) |
---|
| 58 | _y = float(toks[1]) |
---|
| 59 | |
---|
| 60 | # If we have an extra token, check |
---|
| 61 | # whether it can be interpreted as a |
---|
| 62 | # third column. |
---|
| 63 | _dy = None |
---|
| 64 | if len(toks)>2: |
---|
| 65 | try: |
---|
| 66 | _dy = float(toks[2]) |
---|
| 67 | except: |
---|
| 68 | # The third column is not a float, skip it. |
---|
| 69 | pass |
---|
| 70 | |
---|
| 71 | # If we haven't set the 3rd column |
---|
| 72 | # flag, set it now. |
---|
| 73 | if has_error == None: |
---|
| 74 | has_error = False if _dy == None else True |
---|
| 75 | |
---|
| 76 | x = numpy.append(x, _x) |
---|
| 77 | y = numpy.append(y, _y) |
---|
| 78 | if has_error == True: |
---|
| 79 | dy = numpy.append(dy, _dy) |
---|
| 80 | |
---|
| 81 | except: |
---|
| 82 | # Couldn't parse this line, skip it |
---|
| 83 | pass |
---|
| 84 | |
---|
| 85 | |
---|
| 86 | # Sanity check |
---|
| 87 | if has_error == True and not len(y) == len(dy): |
---|
| 88 | raise ValueError, "ascii_reader: y and dy have different length" |
---|
| 89 | |
---|
| 90 | # If the data length is zero, consider this as |
---|
| 91 | # though we were not able to read the file. |
---|
| 92 | if len(x)==0: |
---|
| 93 | raise ValueError, "ascii_reader: could not load file" |
---|
| 94 | |
---|
| 95 | output.x = x |
---|
| 96 | output.y = y |
---|
[4d2a0d1] | 97 | output.dy = dy if has_error == True else None |
---|
[8bd8ea4] | 98 | output.xaxis("\\rm{Q}", 'A^{-1}') |
---|
| 99 | output.yaxis("\\rm{I(Q)}","cm^{-1}") |
---|
| 100 | |
---|
| 101 | |
---|
| 102 | return output |
---|
| 103 | else: |
---|
| 104 | raise RuntimeError, "%s is not a file" % path |
---|
| 105 | return None |
---|
| 106 | |
---|
| 107 | if __name__ == "__main__": |
---|
| 108 | reader = Reader() |
---|
| 109 | #print reader.read("../test/test_3_columns.txt") |
---|
| 110 | print reader.read("../test/empty.txt") |
---|
| 111 | |
---|
| 112 | |
---|
| 113 | |
---|