Changeset 6289


Ignore:
Timestamp:
Feb 6, 2009, 9:40:50 AM (15 years ago)
Author:
jgriffin
Message:

deleted code not needed for Phase 2 work

File:
1 edited

Legend:

Unmodified
Added
Removed
  • anuga_work/production/australia_ph2/sydney/project.py

    r6285 r6289  
    9595# Used in run_busselton,py
    9696# Format for points easting,northing (no header)
    97 land_initial_conditions_filename = [['initial_condition_extend.csv', 0],
    98                                     ['initial_condition_comerong_island.csv', 0],
    99                                     ['initial_condition_gabo_island.csv', 0],
    100                                     ['initial_condition_montague_island.csv', 0]]
     97##land_initial_conditions_filename = [['initial_condition_extend.csv', 0],
     98##                                    ['initial_condition_comerong_island.csv', 0],
     99##                                    ['initial_condition_gabo_island.csv', 0],
     100##                                    ['initial_condition_montague_island.csv', 0]]
    101101
    102102# BOUNDING POLYGON - for data clipping and estimate of triangles in mesh
     
    105105bounding_polygon_filename = 'bounding_polygon.csv'
    106106
    107 # INTERIOR REGIONS -  for designing the mesh
    108 # Used in run_busselton.py
    109 # Format for points easting,northing (no header)                   
    110 #interior_regions_data = [['busselton_1km.csv', 500],
    111  #                        ['bunbury_1km.csv', 500],
    112   #                       ['busselton_2km.csv', 10000],
    113    #                      ['bunbury_2km.csv', 10000],
    114    #                      ['island1.csv', 10000],
    115    #                      ['island2.csv', 10000],
    116    #                      ['coast_5km_d20m.csv', 40000]]
    117 
    118 # GAUGES - for creating timeseries at a specific point
    119 # Used in get_timeseries.py
    120 # Format easting,northing,name,elevation (with header)
    121 #gauges_filename = 'gauges.csv'
    122 
    123 # BUILDINGS EXPOSURE - for identifying inundated houses
    124 # Used in run_building_inundation.py
    125 # Format latitude,longitude etc (geographic)
    126 #building_exposure_filename = 'busselton_res_clip.csv' #from NEXIS
    127107
    128108# BOUNDING POLYGON
     
    140120landward_boundary_filename = 'landward_boundary_extend.csv'
    141121
    142 #------------------------------------------------------------------------------
    143 # Clipping regions for export to asc and regions for clipping data
    144 # Final inundation maps should only be created in regions of the finest mesh
    145 #------------------------------------------------------------------------------
    146 
    147 ### ASCII export grid for Busselton
    148 ##xminBusselton = 340000
    149 ##xmaxBusselton = 352000
    150 ##yminBusselton = 6271500
    151 ##ymaxBusselton = 6280000
    152 ##
    153 ### ASCII export grid for Bunbury
    154 ##xminBunbury = 369000
    155 ##xmaxBunbury = 381000
    156 ##yminBunbury = 6308000
    157 ##ymaxBunbury = 6316500
    158122
    159123
     
    204168output_run_time = join(output_run, scenario_name)
    205169
    206 # The absolute pathname for the gauges file
    207 # Used for get_timeseries.py
    208 #gauges = join(gauges_folder, gauges_filename)       
    209 
    210 # The absolute pathname for the building file
    211 # Used for run_building_inundation.py
    212 #building_exposure = join(gauges_folder, building_exposure_filename)
    213170
    214171#------------------------------------------------------------------------------
     
    217174
    218175# Create list of land polygons with initial conditions
    219 land_initial_conditions = []
    220 for filename, MSL in land_initial_conditions_filename:
    221     polygon = read_polygon(join(polygons_folder, filename))
    222     land_initial_conditions.append([filename, MSL])
     176##land_initial_conditions = []
     177##for filename, MSL in land_initial_conditions_filename:
     178##    polygon = read_polygon(join(polygons_folder, filename))
     179##    land_initial_conditions.append([filename, MSL])
    223180
    224181# Create list of interior polygons with scaling factor
Note: See TracChangeset for help on using the changeset viewer.