[ccb560a] | 1 | import os, sys |
---|
[de9483d] | 2 | import wx |
---|
[c7bc3e7] | 3 | from DataLoader.loader import Loader |
---|
[de9483d] | 4 | |
---|
| 5 | def choose_data_file(parent, location=None): |
---|
| 6 | path = None |
---|
| 7 | if location==None: |
---|
| 8 | location = os.getcwd() |
---|
[c7bc3e7] | 9 | |
---|
| 10 | l = Loader() |
---|
| 11 | cards = l.get_wildcards() |
---|
| 12 | wlist = '|'.join(cards) |
---|
| 13 | |
---|
| 14 | dlg = wx.FileDialog(parent, "Choose a file", location, "", wlist, wx.OPEN) |
---|
[de9483d] | 15 | if dlg.ShowModal() == wx.ID_OK: |
---|
| 16 | path = dlg.GetPath() |
---|
| 17 | mypath = os.path.basename(path) |
---|
| 18 | dlg.Destroy() |
---|
| 19 | |
---|
| 20 | return path |
---|
| 21 | |
---|
| 22 | |
---|
| 23 | def load_ascii_1D(path): |
---|
| 24 | """ |
---|
| 25 | Load a 1D ascii file, with errors |
---|
| 26 | """ |
---|
[fc2b91a] | 27 | import numpy |
---|
[de9483d] | 28 | if path and os.path.isfile(path): |
---|
| 29 | |
---|
[fc2b91a] | 30 | file_x = numpy.zeros(0) |
---|
| 31 | file_y = numpy.zeros(0) |
---|
| 32 | file_dy = numpy.zeros(0) |
---|
[de9483d] | 33 | |
---|
| 34 | input_f = open(path,'r') |
---|
| 35 | buff = input_f.read() |
---|
| 36 | lines = buff.split('\n') |
---|
[fc2b91a] | 37 | |
---|
| 38 | has_dy = False |
---|
| 39 | |
---|
[de9483d] | 40 | for line in lines: |
---|
| 41 | try: |
---|
| 42 | toks = line.split() |
---|
| 43 | x = float(toks[0]) |
---|
| 44 | y = float(toks[1]) |
---|
| 45 | if len(toks)==3: |
---|
[fc2b91a] | 46 | has_dy = True |
---|
[de9483d] | 47 | err = float(toks[2]) |
---|
| 48 | else: |
---|
| 49 | err = 0.0 |
---|
[fc2b91a] | 50 | file_x = numpy.append(file_x, x) |
---|
| 51 | file_y = numpy.append(file_y, y) |
---|
| 52 | file_dy = numpy.append(file_dy, err) |
---|
[de9483d] | 53 | except: |
---|
| 54 | print "READ ERROR", line |
---|
| 55 | |
---|
[fc2b91a] | 56 | if has_dy==False: |
---|
| 57 | file_dy = None |
---|
| 58 | |
---|
[de9483d] | 59 | return file_x, file_y, file_dy |
---|
[fc2b91a] | 60 | return None, None, None |
---|
| 61 | |
---|
| 62 | def plot_data(parent, path, name="Loaded Data"): |
---|
[ccb560a] | 63 | from sans.guicomm.events import NewPlotEvent, StatusEvent |
---|
[fc2b91a] | 64 | from sans.guitools.plottables import Data1D, Theory1D |
---|
[4102709] | 65 | from DataLoader.loader import Loader |
---|
[ccb560a] | 66 | import numpy |
---|
[4102709] | 67 | #Instantiate a loader |
---|
| 68 | L=Loader() |
---|
| 69 | |
---|
| 70 | #Recieves data |
---|
[ccb560a] | 71 | try: |
---|
| 72 | output=L.load(path) |
---|
| 73 | except: |
---|
| 74 | wx.PostEvent(parent, StatusEvent(status="Problem loading file: %s" % sys.exc_value)) |
---|
| 75 | return |
---|
| 76 | |
---|
[49b3ddd] | 77 | if output.dy==None: |
---|
| 78 | new_plot = Theory1D(output.x, output.y) |
---|
[fc2b91a] | 79 | else: |
---|
[49b3ddd] | 80 | new_plot = Data1D(output.x, output.y, dy=output.dy) |
---|
[acb1ad1] | 81 | |
---|
| 82 | filename = os.path.basename(path) |
---|
| 83 | |
---|
[fc2b91a] | 84 | new_plot.name = name |
---|
| 85 | new_plot.interactive = True |
---|
| 86 | |
---|
| 87 | # If the data file does not tell us what the axes are, just assume... |
---|
| 88 | new_plot.xaxis("\\rm{Q}", 'A^{-1}') |
---|
| 89 | new_plot.yaxis("\\rm{Intensity} ","cm^{-1}") |
---|
[acb1ad1] | 90 | new_plot.group_id = filename |
---|
[fc2b91a] | 91 | |
---|
[acb1ad1] | 92 | wx.PostEvent(parent, NewPlotEvent(plot=new_plot, title=filename)) |
---|