source: sasview/guiframe/data_loader.py @ 837a043

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 837a043 was b91c736, checked in by Gervaise Alina <gervyh@…>, 15 years ago

append more than one dat into the panel on focus

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