source: sasview/guiframe/data_loader.py @ 4e9583c

ESS_GUIESS_GUI_DocsESS_GUI_batch_fittingESS_GUI_bumps_abstractionESS_GUI_iss1116ESS_GUI_iss879ESS_GUI_iss959ESS_GUI_openclESS_GUI_orderingESS_GUI_sync_sascalccostrafo411magnetic_scattrelease-4.1.1release-4.1.2release-4.2.2release_4.0.1ticket-1009ticket-1094-headlessticket-1242-2d-resolutionticket-1243ticket-1249ticket885unittest-saveload
Last change on this file since 4e9583c was 4e9583c, checked in by Gervaise Alina <gervyh@…>, 14 years ago

reverse guiframe

  • Property mode set to 100644
File size: 9.7 KB
Line 
1
2import os, sys,numpy
3import wx
4import re
5
6from dataFitting import Data1D
7from dataFitting import Data2D
8from DataLoader.loader import Loader
9from load_thread import DataReader
10
11from sans.guicomm.events import NewPlotEvent, StatusEvent
12
13def enable_add_data(existing_panel, new_plot):
14    """
15    Enable append data on a plot panel
16    """
17    is_theory = len(existing_panel.plots)<= 1 and \
18        existing_panel.plots.values()[0].__class__.__name__=="Theory1D"
19       
20    is_data2d = hasattr(new_plot, 'data')
21    is_data1d = existing_panel.__class__.__name__ == "ModelPanel1D"\
22        and existing_panel.group_id is not None
23   
24    return is_data1d and not is_data2d and not is_theory
25
26def parse_name(name, expression):
27    """
28    remove "_" in front of a name
29    """
30    if re.match(expression, name) is not None:
31        word = re.split(expression, name, 1)
32        for item in word:           
33            if item.lstrip().rstrip() != '':
34                return item
35    else:
36        return name
37   
38def choose_data_file(parent, location=None):
39    """
40    """
41    path = None
42    if location == None:
43        location = os.getcwd()
44   
45    l = Loader()
46    cards = l.get_wildcards()
47    wlist = '|'.join(cards)
48   
49    dlg = wx.FileDialog(parent, "Choose a file", location, "", wlist, wx.OPEN)
50    if dlg.ShowModal() == wx.ID_OK:
51        path = dlg.GetPath()
52        mypath = os.path.basename(path)
53    dlg.Destroy()
54   
55    return path
56
57def open_dialog_append_data(panel_name, data_name):
58    """
59    Pop up an error message.
60   
61    :param panel_name: the name of the current panel
62    :param data_name: the name of the current data
63   
64    """
65    message = " Do you want to append %s data\n in "%(str(data_name))
66    message += " %s panel?\n\n"%(str(panel_name))
67    dial = wx.MessageDialog(None, message, 'Question',
68                       wx.YES_NO|wx.NO_DEFAULT|wx.ICON_QUESTION)
69    if dial.ShowModal() == wx.ID_YES:
70        return True
71    else:
72        return False
73   
74
75def load_ascii_1D(path):
76    """
77    Load a 1D ascii file, with errors
78    """
79    if path and os.path.isfile(path):
80   
81        file_x = numpy.zeros(0)
82        file_y = numpy.zeros(0)
83        file_dy = numpy.zeros(0)
84        file_dx = numpy.zeros(0)
85       
86        input_f = open(path,'r')
87        buff = input_f.read()
88        lines = buff.split('\n')
89       
90        has_dy = False
91        has_dx = False
92       
93        for line in lines:
94            try:
95                toks = line.split()
96                x = float(toks[0])
97                y = float(toks[1])
98                if len(toks)==3:
99                    has_dy = True
100                    errdy = float(toks[2])
101                else:
102                    errdy = 0.0
103                if len(toks) == 4:
104                    has_dx = True
105                    errdx = float(toks[3])
106                else:
107                    errdx = 0.0
108                file_x  = numpy.append(file_x, x)
109                file_y  = numpy.append(file_y, y)
110                file_dy = numpy.append(file_dy, dyerr)
111                file_dx = numpy.append(file_dx, dxerr)
112            except:
113                print "READ ERROR", line
114   
115        if has_dy == False:
116            file_dy = None
117        if has_dx == False:
118            file_dx = None
119           
120        return file_x, file_y, file_dy, file_dx
121    return None, None, None, None
122
123def load_error(error=None):
124    """
125    Pop up an error message.
126   
127    :param error: details error message to be displayed
128    """
129    message = "You had to try this, didn't you?\n\n"
130    message += "The data file you selected could not be loaded.\n"
131    message += "Make sure the content of your file is properly formatted.\n\n"
132   
133    if error is not None:
134        message += "When contacting the DANSE team, mention the following:\n%s" % str(error)
135   
136    dial = wx.MessageDialog(None, message, 'Error Loading File', wx.OK | wx.ICON_EXCLAMATION)
137    dial.ShowModal()   
138
139def on_load_error(parent):
140    """
141    """
142    wx.PostEvent(parent, StatusEvent(status="Load cancel..", info="warning",
143                                                type="stop"))
144   
145def plot_data(parent, path):
146    """
147    Use the DataLoader loader to created data to plot.
148   
149    :param path: the path of the data to load
150   
151    """
152    from sans.guicomm.events import NewPlotEvent, StatusEvent
153    from DataLoader.loader import  Loader
154   
155    # Instantiate a loader
156    L = Loader()
157   
158    # Load data
159    try:
160        output = L.load(path)
161    except:
162        load_error(sys.exc_value)
163        return
164   
165    # Notify user if the loader completed the load but no data came out
166    if output == None:
167        load_error("The data file appears to be empty.")
168        return
169 
170     
171    filename = os.path.basename(path)
172   
173    if not  output.__class__.__name__ == "list":
174        ## Creating a Data2D with output
175        if hasattr(output,'data'):
176            msg = "Loading 2D data: %s"%output.filename
177            wx.PostEvent(parent, StatusEvent(status=msg, info="info", type="stop"))
178            new_plot = Data2D(image=None, err_image=None)
179     
180        else:
181            msg = "Loading 1D data: %s"%output.filename
182            wx.PostEvent(parent, StatusEvent(status=msg, info="info", type="stop"))
183            new_plot = Data1D(x=[], y=[], dx=None, dy=None)
184           
185        new_plot.copy_from_datainfo(output) 
186        output.clone_without_data(clone=new_plot)     
187     
188        ## data 's name
189        if output.filename is None or output.filename == "":
190            output.filename = str(filename)
191        ## name of the data allow to differentiate data when plotted
192        name = parse_name(name=output.filename, expression="_")
193        if not name in parent.indice_load_data.keys():
194            parent.indice_load_data[name] = 0
195        else:
196            ## create a copy of the loaded data
197            parent.indice_load_data[name] += 1
198            name = name +"[%i]"%parent.indice_load_data[name]
199       
200        new_plot.name = name
201        ## allow to highlight data when plotted
202        new_plot.interactive = True
203        ## when 2 data have the same id override the 1 st plotted
204        new_plot.id = name
205        ##group_id specify on which panel to plot this data
206        new_plot.group_id = name
207        new_plot.is_data = True
208        ##post data to plot
209        title = output.filename
210        if hasattr(new_plot,"title"):
211            title = str(new_plot.title.lstrip().rstrip())
212            if title == "":
213                title = str(name)
214        else:
215            title = str(name)
216        if hasattr(parent, "panel_on_focus") and not(parent.panel_on_focus is None):
217                existing_panel  = parent.panel_on_focus
218                panel_name = existing_panel.window_caption
219                data_name = new_plot.name
220                if enable_add_data(existing_panel, new_plot):
221                    if open_dialog_append_data(panel_name, data_name):
222                        #add this plot the an existing panel
223                        new_plot.group_id = existing_panel.group_id
224        wx.PostEvent(parent, NewPlotEvent(plot=new_plot, title=title))
225       
226    ## the output of the loader is a list , some xml files contain more than one data
227    else:
228        i=1
229        for item in output:
230            msg = "Loading 1D data: %s"%str(item.run[0])
231            wx.PostEvent(parent, StatusEvent(status=msg, info="info", type="stop"))
232            try:
233                dx = item.dx
234                dxl = item.dxl
235                dxw = item.dxw
236            except:
237                dx = None
238                dxl = None
239                dxw = None
240
241            new_plot = Data1D(x=item.x,y=item.y,dx=dx,dy=item.dy)
242            new_plot.copy_from_datainfo(item)
243            item.clone_without_data(clone=new_plot)
244            new_plot.dxl = dxl
245            new_plot.dxw = dxw
246           
247            name = parse_name(name=str(item.run[0]), expression="_")
248            if not name in parent.indice_load_data.keys():
249                parent.indice_load_data[name] = 0
250            else:
251                ## create a copy of the loaded data
252               
253                #TODO: this is a very annoying feature. We should make this
254                # an option. Excel doesn't do this. Why should we?
255                # What is the requirement for this feature, and are the
256                # counter arguments stronger? Is this feature developed
257                # to please at least 80% of the users or a special few?
258                parent.indice_load_data[name] += 1
259                name = name + "(copy %i)"%parent.indice_load_data[name]
260               
261            new_plot.name = name
262            new_plot.interactive = True
263            new_plot.group_id = name
264            new_plot.id = name
265            new_plot.is_data = True
266       
267            if hasattr(item,"title"):
268                title = item.title.lstrip().rstrip()
269                if title == "":
270                    title = str(name)
271            else:
272                title = name
273            if hasattr(parent, "panel_on_focus") and not(parent.panel_on_focus is None):
274                existing_panel  = parent.panel_on_focus
275                panel_name = existing_panel.window_caption
276                data_name = new_plot.name
277                if enable_add_data(existing_panel, new_plot):
278                    if open_dialog_append_data(panel_name, data_name):
279                        #add this plot the an existing panel
280                        new_plot.group_id = existing_panel.group_id
281            wx.PostEvent(parent, NewPlotEvent(plot=new_plot, title=str(title)))
282            i+=1
283         
Note: See TracBrowser for help on using the repository browser.