Changeset 7119


Ignore:
Timestamp:
May 28, 2009, 10:11:56 AM (15 years ago)
Author:
kristy
Message:
 
Location:
anuga_work/production/busselton/busselton_rerun
Files:
3 added
3 edited

Legend:

Unmodified
Added
Removed
  • anuga_work/production/busselton/busselton_rerun/Arc_txt2feature_class.py

    r6984 r7119  
    2626time_dir6 = '20090330_120458_run_final_0_27283_Bt_kvanputt'
    2727
    28 time_dirs = [time_dir6] #1, time_dir2] #, time_dir5] #4, time_dir5, time_dir6]
     28time_dirs = [time_dir1, time_dir4] #, time_dir5] #4, time_dir5, time_dir6]
    2929
    3030for time_dir in time_dirs:
  • anuga_work/production/busselton/busselton_rerun/export_results_max.py

    r6984 r7119  
    3030time_dir6 = '20090330_120458_run_final_0_27283_Bt_kvanputt'
    3131
    32 time_dirs = [time_dir6] #1,time_dir2, time_dir3, time_dir4, time_dir5]
     32time_dirs = [time_dir1] #1,time_dir2, time_dir3, time_dir4, time_dir5]
    3333 
    3434
     
    5757
    5858# one or more key strings from var_equations above
    59 var = ['depth', 'speed']
     59var = ['elevation']
    6060
    6161######
     
    9090            name3 = join(directory, time_dir, project.scenario_name)+'_time_71040_0'
    9191
    92             names = [name1, name2, name3]
     92            names = [name1] #, name2, name3]
    9393     
    94             asc_name = []   
     94            #asc_name = []   
    9595               
    9696            for name in names:
     
    113113                            format = 'asc')
    114114
    115                 asc_name.append(outname + '.asc')
    116    
    117             maxasc_outname = join(directory, time_dir, project.scenario_name)+'_'+which_area+'_'+which_var+'_max.asc'
    118 
    119             print 'max asc outname ', maxasc_outname
    120             print 'asc_name ', str(asc_name)
    121            
    122             MaxAsc(maxasc_outname, asc_name)
     115##                asc_name.append(outname + '.asc')
     116##   
     117##            maxasc_outname = join(directory, time_dir, project.scenario_name)+'_'+which_area+'_'+which_var+'_max.asc'
     118##
     119##            print 'max asc outname ', maxasc_outname
     120##            print 'asc_name ', str(asc_name)
     121##           
     122##            MaxAsc(maxasc_outname, asc_name)
  • anuga_work/production/busselton/busselton_rerun/project.py

    r6984 r7119  
    110110# Format latitude,longitude etc (geographic)
    111111building_exposure_filename = 'busselton_res_clip.csv' # from NEXIS
     112
     113# AREA OF IMAGES - Extent of each image to find out highest runup
     114# Header - easting,northing,id,value
     115# Used in get_runup.py
     116images_filename = 'define_area_clip.csv'
    112117
    113118# BOUNDING POLYGON - used in build_boundary.py and run_model.py respectively
     
    248253    building_exposure = join(gauges_folder, building_exposure_filename)
    249254
     255# The absolute pathname for the image file
     256# Used for get_runup.py
     257if images_filename:
     258    images = join(polygons_folder, images_filename)
     259
    250260# full path to where MUX files (or meta-files) live
    251261mux_input = join(event_folder, mux_input_filename)
Note: See TracChangeset for help on using the changeset viewer.