source: sasview/guiframe/data_loader.py @ 3641881

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 3641881 was aebc4cc, checked in by Gervaise Alina <gervyh@…>, 14 years ago

working on guiframe loaded data

  • Property mode set to 100644
File size: 9.7 KB
RevLine 
[b3644f3]1
[6d920cd]2import os, sys,numpy
[de9483d]3import wx
[a618972]4import re
[b3644f3]5
[ff3f900b]6from dataFitting import Data1D
7from dataFitting import Data2D
[c7bc3e7]8from DataLoader.loader import Loader
[b3644f3]9from load_thread import DataReader
10
[4e9583c]11from sans.guicomm.events import NewPlotEvent, StatusEvent
[b3644f3]12
[d792e813]13def enable_add_data(existing_panel, new_plot):
14    """
[d955bf19]15    Enable append data on a plot panel
[d792e813]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
[58eac5d]25
[a618972]26def parse_name(name, expression):
27    """
[d955bf19]28    remove "_" in front of a name
[a618972]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   
[de9483d]38def choose_data_file(parent, location=None):
[d955bf19]39    """
40    """
[de9483d]41    path = None
[196608d]42    if location == None:
[de9483d]43        location = os.getcwd()
[c7bc3e7]44   
45    l = Loader()
46    cards = l.get_wildcards()
47    wlist = '|'.join(cards)
48   
[4e9583c]49    dlg = wx.FileDialog(parent, "Choose a file", location, "", wlist, wx.OPEN)
[de9483d]50    if dlg.ShowModal() == wx.ID_OK:
51        path = dlg.GetPath()
52        mypath = os.path.basename(path)
53    dlg.Destroy()
54   
[4e9583c]55    return path
[de9483d]56
[d792e813]57def open_dialog_append_data(panel_name, data_name):
[b91c736]58    """
[d955bf19]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   
[b91c736]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
[4e9583c]73   
[de9483d]74
[4e9583c]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
[fc2b91a]122
[cb0d17c]123def load_error(error=None):
124    """
[d955bf19]125    Pop up an error message.
126   
127    :param error: details error message to be displayed
[cb0d17c]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
[b3644f3]139def on_load_error(parent):
140    """
141    """
142    wx.PostEvent(parent, StatusEvent(status="Load cancel..", info="warning",
143                                                type="stop"))
[cc1ead1]144   
[6d920cd]145def plot_data(parent, path):
146    """
[d955bf19]147    Use the DataLoader loader to created data to plot.
148   
149    :param path: the path of the data to load
150   
[6d920cd]151    """
[cc1ead1]152    from sans.guicomm.events import NewPlotEvent, StatusEvent
153    from DataLoader.loader import  Loader
[f2776f6]154   
[cc1ead1]155    # Instantiate a loader
156    L = Loader()
157   
158    # Load data
159    try:
160        output = L.load(path)
161    except:
[4e9583c]162        load_error(sys.exc_value)
[cc1ead1]163        return
164   
[cb0d17c]165    # Notify user if the loader completed the load but no data came out
166    if output == None:
[cc1ead1]167        load_error("The data file appears to be empty.")
[cb0d17c]168        return
[cc1ead1]169 
170     
[acb1ad1]171    filename = os.path.basename(path)
[cd84dca]172   
[196608d]173    if not  output.__class__.__name__ == "list":
[12aa9b5]174        ## Creating a Data2D with output
[81812d9]175        if hasattr(output,'data'):
[04349fe]176            msg = "Loading 2D data: %s"%output.filename
177            wx.PostEvent(parent, StatusEvent(status=msg, info="info", type="stop"))
[196608d]178            new_plot = Data2D(image=None, err_image=None)
[ff3f900b]179     
[81812d9]180        else:
[b3644f3]181            msg = "Loading 1D data: %s"%output.filename
182            wx.PostEvent(parent, StatusEvent(status=msg, info="info", type="stop"))
[196608d]183            new_plot = Data1D(x=[], y=[], dx=None, dy=None)
[ff3f900b]184           
185        new_plot.copy_from_datainfo(output) 
186        output.clone_without_data(clone=new_plot)     
187     
[25ccf33]188        ## data 's name
[196608d]189        if output.filename is None or output.filename == "":
[ff3f900b]190            output.filename = str(filename)
[12aa9b5]191        ## name of the data allow to differentiate data when plotted
[a618972]192        name = parse_name(name=output.filename, expression="_")
[aebc4cc]193        #if not name in parent.indice_load_data.keys():
194        #    parent.indice_load_data[name] = 0
195        #else:
[25ccf33]196            ## create a copy of the loaded data
[aebc4cc]197        #    parent.indice_load_data[name] += 1
198        #    name = name +"[%i]"%parent.indice_load_data[name]
[ff3f900b]199       
[35eeea8]200        new_plot.name = name
[12aa9b5]201        ## allow to highlight data when plotted
[81812d9]202        new_plot.interactive = True
[12aa9b5]203        ## when 2 data have the same id override the 1 st plotted
[35eeea8]204        new_plot.id = name
[12aa9b5]205        ##group_id specify on which panel to plot this data
[35eeea8]206        new_plot.group_id = name
[196608d]207        new_plot.is_data = True
[12aa9b5]208        ##post data to plot
[b91c736]209        title = output.filename
[ff3f900b]210        if hasattr(new_plot,"title"):
[b91c736]211            title = str(new_plot.title.lstrip().rstrip())
[196608d]212            if title == "":
213                title = str(name)
[ff3f900b]214        else:
215            title = str(name)
[b91c736]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
[d792e813]220                if enable_add_data(existing_panel, new_plot):
221                    if open_dialog_append_data(panel_name, data_name):
[b91c736]222                        #add this plot the an existing panel
223                        new_plot.group_id = existing_panel.group_id
[aebc4cc]224        parent.set_loaded_data(data_list=[(new_plot, path)])
[12aa9b5]225    ## the output of the loader is a list , some xml files contain more than one data
[81812d9]226    else:
[768656e]227        i=1
[81812d9]228        for item in output:
[b3644f3]229            msg = "Loading 1D data: %s"%str(item.run[0])
230            wx.PostEvent(parent, StatusEvent(status=msg, info="info", type="stop"))
[81812d9]231            try:
[196608d]232                dx = item.dx
233                dxl = item.dxl
234                dxw = item.dxw
[81812d9]235            except:
[196608d]236                dx = None
237                dxl = None
238                dxw = None
[ff3f900b]239
240            new_plot = Data1D(x=item.x,y=item.y,dx=dx,dy=item.dy)
241            new_plot.copy_from_datainfo(item)
[1abcb04]242            item.clone_without_data(clone=new_plot)
[ff3f900b]243            new_plot.dxl = dxl
244            new_plot.dxw = dxw
245           
[a618972]246            name = parse_name(name=str(item.run[0]), expression="_")
[25ccf33]247            if not name in parent.indice_load_data.keys():
[196608d]248                parent.indice_load_data[name] = 0
[25ccf33]249            else:
250                ## create a copy of the loaded data
[675e0ab]251               
252                #TODO: this is a very annoying feature. We should make this
253                # an option. Excel doesn't do this. Why should we?
254                # What is the requirement for this feature, and are the
255                # counter arguments stronger? Is this feature developed
256                # to please at least 80% of the users or a special few?
[196608d]257                parent.indice_load_data[name] += 1
258                name = name + "(copy %i)"%parent.indice_load_data[name]
[25ccf33]259               
[35eeea8]260            new_plot.name = name
[81812d9]261            new_plot.interactive = True
[35eeea8]262            new_plot.group_id = name
263            new_plot.id = name
[b91c736]264            new_plot.is_data = True
265       
[18eba35]266            if hasattr(item,"title"):
[b91c736]267                title = item.title.lstrip().rstrip()
[196608d]268                if title == "":
269                    title = str(name)
[18eba35]270            else:
[196608d]271                title = name
[b91c736]272            if hasattr(parent, "panel_on_focus") and not(parent.panel_on_focus is None):
273                existing_panel  = parent.panel_on_focus
274                panel_name = existing_panel.window_caption
275                data_name = new_plot.name
[d792e813]276                if enable_add_data(existing_panel, new_plot):
277                    if open_dialog_append_data(panel_name, data_name):
[b91c736]278                        #add this plot the an existing panel
279                        new_plot.group_id = existing_panel.group_id
[aebc4cc]280            parent.set_loaded_data(data_list=[(new_plot, path)])
[768656e]281            i+=1
[4e9583c]282         
Note: See TracBrowser for help on using the repository browser.