source: sasview/guiframe/data_loader.py @ cb0d17c

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 cb0d17c was cb0d17c, checked in by Mathieu Doucet <doucetm@…>, 15 years ago

guiframe: pop up error message when a file can't be loaded.

  • Property mode set to 100644
File size: 6.8 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
24
25def 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
73def 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
89def 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==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        ## info is a reference to output of dataloader that can be used
145        ## to save  data 1D as cansas xml file
146        new_plot.info= output
147        ##group_id specify on which panel to plot this data
148        new_plot.group_id = name
149        new_plot.is_data =True
150        ##post data to plot
151        if hasattr(new_plot,"title"):
152            title= str(new_plot.title)
153            if title =="":
154                title=str(name)
155        else:
156            title = str(name)
157        wx.PostEvent(parent, NewPlotEvent(plot=new_plot, title= title ))
158       
159    ## the output of the loader is a list , some xml files contain more than one data
160    else:
161        i=1
162        for item in output:
163            try:
164                dx=item.dx
165                dxl=item.dxl
166                dxw=item.dxw
167            except:
168                dx=None
169                dxl=None
170                dxw=None
171
172            new_plot = Data1D(x=item.x,y=item.y,dx=dx,dy=item.dy)
173            new_plot.copy_from_datainfo(item)
174            item.clone_without_data(clone=new_plot)
175            new_plot.dxl = dxl
176            new_plot.dxw = dxw
177           
178            name= str(item.run[0])
179            if not name in parent.indice_load_data.keys():
180                parent.indice_load_data[name]=0
181            else:
182                ## create a copy of the loaded data
183               
184                #TODO: this is a very annoying feature. We should make this
185                # an option. Excel doesn't do this. Why should we?
186                # What is the requirement for this feature, and are the
187                # counter arguments stronger? Is this feature developed
188                # to please at least 80% of the users or a special few?
189                parent.indice_load_data[name]+=1
190                name = name +"(copy %i)"%parent.indice_load_data[name]
191               
192            new_plot.name = name
193            new_plot.interactive = True
194         
195            new_plot.group_id = name
196            new_plot.id = name
197            new_plot.info= item
198            new_plot.is_data =True
199            if hasattr(item,"title"):
200                title= item.title
201                if title=="":
202                    title=str(name)
203            else:
204                title= name
205            wx.PostEvent(parent, NewPlotEvent(plot=new_plot, title=str(title)))
206            i+=1
207           
208           
Note: See TracBrowser for help on using the repository browser.