Changeset 7214


Ignore:
Timestamp:
Jun 18, 2009, 2:47:06 PM (15 years ago)
Author:
rwilson
Message:

Back- (and forward)-merge, Numeric to numpy.

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/numpy_misc/tools/event_selection/EventSelection.py

    r7200 r7214  
    5353# program name and version
    5454APP_NAME = 'EventSelection'
    55 APP_VERSION = '1.0'
     55APP_VERSION = '1.1'
    5656
    5757# name of the configuration filename
     
    803803            quake_ID = self.txtQuakeID.GetValue()
    804804            if len(quake_ID) == 0:
    805                 self.error('You must enter a quake ID first')
    806                 return
    807             try:
    808                 quake_ID = int(quake_ID)
    809             except:
    810                 self.error("You must enter a Quake ID integer")
    811                 return
     805                self.error("You must enter a quake ID by clicking in "
     806                           "the 'list' result box")
     807                return
     808            quake_ID = int(quake_ID)
    812809
    813810            region_select = self.cbRegion.GetValue()
     
    891888                filenames.append(filename)
    892889               
    893 ## No longer generate the python data file
    894 ##            # write data to the file
    895 ##            urs_filename = '%s/%s' % (ResultSubdir, URSDataFilename % quake_ID)
    896 ##            try:
    897 ##                out_fd = open(urs_filename, "w")
    898 ##            except IOError, msg:
    899 ##                self.error("Error opening output file %s': %s" %
    900 ##                           (urs_filename, msg))
    901 ##                return
    902 ##            if last_weight and filenames:
    903 ##                out_fd.write('# Data for region %s,\n'
    904 ##                             '#          hazard %d,\n'
    905 ##                             '#          min height %.2f,\n'
    906 ##                             '#          max height %.2f,\n'
    907 ##                             '#          quake ID %d\n' %
    908 ##                             (Region, GaugeNumber, MinimumHeight,
    909 ##                              MaximumHeight, quake_ID))
    910 ##                out_fd.write('# Generated on %s.\n' % time.asctime(time.localtime()))
    911 ##                out_fd.write('\n')
    912 ##                out_fd.write('import os.path\n')
    913 ##                out_fd.write('\n')
    914 ##                out_fd.write('def getInfo(base_directory):\n')
    915 ##                out_fd.write('    """\n')
    916 ##                out_fd.write('    Return the weight factor and list of URS data filenames\n')
    917 ##                out_fd.write('\n')
    918 ##                out_fd.write('        (weight_factor, [filenames]) <- get_urs_data(base_directory)\n')
    919 ##                out_fd.write('\n')
    920 ##                out_fd.write('    where base_directory is the path to the mux files.\n')
    921 ##                out_fd.write('    """\n')
    922 ##                out_fd.write('\n')
    923 ##                out_fd.write('    weight_factor = %f\n' % last_weight)
    924 ##                out_fd.write('    mux_filenames = [')
    925 ##                if filenames:
    926 ##                    for fn in filenames[:-1]:
    927 ##                        out_fd.write('"%%s" %% os.path.join(base_directory, "%s"),\n                     ' % fn)
    928 ##                    out_fd.write('"%%s" %% os.path.join(base_directory, "%s")\n                    ' % filenames[-1])
    929 ##                out_fd.write(']\n')
    930 ##                out_fd.write('\n')
    931 ##                out_fd.write('    return (weight_factor, mux_filenames)\n')
    932 ##            out_fd.close()
    933            
    934890        ######
    935891        # Call the get_grid function.
     
    939895            quake_ID = self.txtQuakeID.GetValue()
    940896            if len(quake_ID) == 0:
    941                 self.error('You must enter a quake ID first')
    942                 return
    943             try:
    944                 quake_ID = int(quake_ID)
    945             except:
    946                 self.error("You must enter a Quake ID")
    947                 return
     897                self.error("You must enter a quake ID by clicking in "
     898                           "the 'list' result box")
     899                return
     900            quake_ID = int(quake_ID)
    948901
    949902            region_select = self.cbRegion.GetValue()
     
    963916            multimux_dir = os.path.join(BaseDirectory, region_dir_name, 'multimux')
    964917            grid_dir = os.path.join(BaseDirectory, region_dir_name, 'static_2m')
     918
    965919            # check that the sub-directory has been created
    966920            if ResultSubdir == '' or not os.path.isdir(ResultSubdir):
  • misc/tools/mk_digest/README

    r6631 r7214  
    66    mk_digest.py <datafile> <digestfile>
    77
    8 where <datafile>   is the for which a digest is required, and
     8where <datafile>   is the file for which a digest is required, and
    99      <digestfile> is the created digest file containing the
    1010                   128 bit hex digest string from <datafile>.
  • misc/tools/plotcsv/plotcsv.py

    r7056 r7214  
    413413                     size=(BOX_PLOT_WIDTH, BOX_PLOT_HEIGHT))
    414414        Y_OFFSET += GEN_DELTAY
    415        
     415
    416416        wx.StaticText(p, -1, 'X-Column',
    417417                      pos=(COLLAB_X_OFFSET, Y_OFFSET+LAB_CTRL_OFFSET), style=wx.ALIGN_LEFT)
     
    490490        self.Bind(wx.EVT_BUTTON, self.PlotFiles, self.btnPlot)
    491491        self.Bind(wx.EVT_CHECKBOX, self.ChangeLegend, self.chkLegend)
    492 
    493492        self.Bind(wx.EVT_CHOICE, self.ChangeXLabel, self.cbXColHdr)
    494493        self.Bind(wx.EVT_CHOICE, self.ChangeYLabel, self.cbYColHdr)
     
    656655                index = self.common_headers.index(selected_x)
    657656                self.cbXColHdr.SetSelection(index)
    658 #                self.txtXLabel.SetValue(selected_x.title())
    659657            if selected_y in self.common_headers:
    660658                index = self.common_headers.index(selected_y)
    661659                self.cbYColHdr.SetSelection(index)
    662 #                self.txtYLabel.SetValue(selected_y.title())
    663660            self.txtXLabel.Enable()
    664661            self.txtYLabel.Enable()
Note: See TracChangeset for help on using the changeset viewer.