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