1 | import os, sys,numpy |
---|
2 | import wx |
---|
3 | from dataFitting import Data1D |
---|
4 | from dataFitting import Data2D |
---|
5 | from DataLoader.loader import Loader |
---|
6 | |
---|
7 | def choose_data_file(parent, location=None): |
---|
8 | path = None |
---|
9 | if location == None: |
---|
10 | location = os.getcwd() |
---|
11 | |
---|
12 | l = Loader() |
---|
13 | cards = l.get_wildcards() |
---|
14 | wlist = '|'.join(cards) |
---|
15 | |
---|
16 | dlg = wx.FileDialog(parent, "Choose a file", location, "", wlist, wx.OPEN) |
---|
17 | if dlg.ShowModal() == wx.ID_OK: |
---|
18 | path = dlg.GetPath() |
---|
19 | mypath = os.path.basename(path) |
---|
20 | dlg.Destroy() |
---|
21 | |
---|
22 | return path |
---|
23 | |
---|
24 | |
---|
25 | def load_ascii_1D(path): |
---|
26 | """ |
---|
27 | Load a 1D ascii file, with errors |
---|
28 | """ |
---|
29 | if path and os.path.isfile(path): |
---|
30 | |
---|
31 | file_x = numpy.zeros(0) |
---|
32 | file_y = numpy.zeros(0) |
---|
33 | file_dy = numpy.zeros(0) |
---|
34 | file_dx = numpy.zeros(0) |
---|
35 | |
---|
36 | input_f = open(path,'r') |
---|
37 | buff = input_f.read() |
---|
38 | lines = buff.split('\n') |
---|
39 | |
---|
40 | has_dy = False |
---|
41 | has_dx = False |
---|
42 | |
---|
43 | for line in lines: |
---|
44 | try: |
---|
45 | toks = line.split() |
---|
46 | x = float(toks[0]) |
---|
47 | y = float(toks[1]) |
---|
48 | if len(toks)==3: |
---|
49 | has_dy = True |
---|
50 | errdy = float(toks[2]) |
---|
51 | else: |
---|
52 | errdy = 0.0 |
---|
53 | if len(toks) == 4: |
---|
54 | has_dx = True |
---|
55 | errdx = float(toks[3]) |
---|
56 | else: |
---|
57 | errdx = 0.0 |
---|
58 | file_x = numpy.append(file_x, x) |
---|
59 | file_y = numpy.append(file_y, y) |
---|
60 | file_dy = numpy.append(file_dy, dyerr) |
---|
61 | file_dx = numpy.append(file_dx, dxerr) |
---|
62 | except: |
---|
63 | print "READ ERROR", line |
---|
64 | |
---|
65 | if has_dy == False: |
---|
66 | file_dy = None |
---|
67 | if has_dx == False: |
---|
68 | file_dx = None |
---|
69 | |
---|
70 | return file_x, file_y, file_dy, file_dx |
---|
71 | return None, None, None, None |
---|
72 | |
---|
73 | def load_error(error=None): |
---|
74 | """ |
---|
75 | Pop up an error message. |
---|
76 | |
---|
77 | @param error: details error message to be displayed |
---|
78 | """ |
---|
79 | message = "You had to try this, didn't you?\n\n" |
---|
80 | message += "The data file you selected could not be loaded.\n" |
---|
81 | message += "Make sure the content of your file is properly formatted.\n\n" |
---|
82 | |
---|
83 | if error is not None: |
---|
84 | message += "When contacting the DANSE team, mention the following:\n%s" % str(error) |
---|
85 | |
---|
86 | dial = wx.MessageDialog(None, message, 'Error Loading File', wx.OK | wx.ICON_EXCLAMATION) |
---|
87 | dial.ShowModal() |
---|
88 | |
---|
89 | def plot_data(parent, path): |
---|
90 | """ |
---|
91 | Use the DataLoader loader to created data to plot. |
---|
92 | @param path: the path of the data to load |
---|
93 | """ |
---|
94 | from sans.guicomm.events import NewPlotEvent, StatusEvent |
---|
95 | from DataLoader.loader import Loader |
---|
96 | |
---|
97 | # Instantiate a loader |
---|
98 | L = Loader() |
---|
99 | |
---|
100 | # Load data |
---|
101 | try: |
---|
102 | output = L.load(path) |
---|
103 | except: |
---|
104 | load_error(sys.exc_value) |
---|
105 | return |
---|
106 | |
---|
107 | # Notify user if the loader completed the load but no data came out |
---|
108 | if output == None: |
---|
109 | load_error("The data file appears to be empty.") |
---|
110 | return |
---|
111 | |
---|
112 | filename = os.path.basename(path) |
---|
113 | |
---|
114 | if not output.__class__.__name__ == "list": |
---|
115 | ## Creating a Data2D with output |
---|
116 | if hasattr(output,'data'): |
---|
117 | new_plot = Data2D(image=None, err_image=None) |
---|
118 | |
---|
119 | else: |
---|
120 | msg = "Loading 1D data: " |
---|
121 | wx.PostEvent(parent, StatusEvent(status="%s %s"%(msg, output.filename))) |
---|
122 | new_plot = Data1D(x=[], y=[], dx=None, dy=None) |
---|
123 | |
---|
124 | new_plot.copy_from_datainfo(output) |
---|
125 | output.clone_without_data(clone=new_plot) |
---|
126 | |
---|
127 | ## data 's name |
---|
128 | if output.filename is None or output.filename == "": |
---|
129 | output.filename = str(filename) |
---|
130 | ## name of the data allow to differentiate data when plotted |
---|
131 | name = output.filename |
---|
132 | if not name in parent.indice_load_data.keys(): |
---|
133 | parent.indice_load_data[name] = 0 |
---|
134 | else: |
---|
135 | ## create a copy of the loaded data |
---|
136 | parent.indice_load_data[name] += 1 |
---|
137 | name = name +"[%i]"%parent.indice_load_data[name] |
---|
138 | |
---|
139 | new_plot.name = name |
---|
140 | ## allow to highlight data when plotted |
---|
141 | new_plot.interactive = True |
---|
142 | ## when 2 data have the same id override the 1 st plotted |
---|
143 | new_plot.id = name |
---|
144 | |
---|
145 | ##group_id specify on which panel to plot this data |
---|
146 | new_plot.group_id = name |
---|
147 | new_plot.is_data = True |
---|
148 | ##post data to plot |
---|
149 | if hasattr(new_plot,"title"): |
---|
150 | title = str(new_plot.title) |
---|
151 | if title == "": |
---|
152 | title = str(name) |
---|
153 | else: |
---|
154 | title = str(name) |
---|
155 | wx.PostEvent(parent, NewPlotEvent(plot=new_plot, title=title )) |
---|
156 | |
---|
157 | ## the output of the loader is a list , some xml files contain more than one data |
---|
158 | else: |
---|
159 | i=1 |
---|
160 | for item in output: |
---|
161 | try: |
---|
162 | dx = item.dx |
---|
163 | dxl = item.dxl |
---|
164 | dxw = item.dxw |
---|
165 | except: |
---|
166 | dx = None |
---|
167 | dxl = None |
---|
168 | dxw = None |
---|
169 | |
---|
170 | new_plot = Data1D(x=item.x,y=item.y,dx=dx,dy=item.dy) |
---|
171 | new_plot.copy_from_datainfo(item) |
---|
172 | item.clone_without_data(clone=new_plot) |
---|
173 | new_plot.dxl = dxl |
---|
174 | new_plot.dxw = dxw |
---|
175 | |
---|
176 | name = str(item.run[0]) |
---|
177 | if not name in parent.indice_load_data.keys(): |
---|
178 | parent.indice_load_data[name] = 0 |
---|
179 | else: |
---|
180 | ## create a copy of the loaded data |
---|
181 | |
---|
182 | #TODO: this is a very annoying feature. We should make this |
---|
183 | # an option. Excel doesn't do this. Why should we? |
---|
184 | # What is the requirement for this feature, and are the |
---|
185 | # counter arguments stronger? Is this feature developed |
---|
186 | # to please at least 80% of the users or a special few? |
---|
187 | parent.indice_load_data[name] += 1 |
---|
188 | name = name + "(copy %i)"%parent.indice_load_data[name] |
---|
189 | |
---|
190 | new_plot.name = name |
---|
191 | new_plot.interactive = True |
---|
192 | |
---|
193 | new_plot.group_id = name |
---|
194 | new_plot.id = name |
---|
195 | |
---|
196 | new_plot.is_data =True |
---|
197 | if hasattr(item,"title"): |
---|
198 | title = item.title |
---|
199 | if title == "": |
---|
200 | title = str(name) |
---|
201 | else: |
---|
202 | title = name |
---|
203 | wx.PostEvent(parent, NewPlotEvent(plot=new_plot, title=str(title))) |
---|
204 | i+=1 |
---|
205 | |
---|
206 | |
---|