Changeset 6289
- Timestamp:
- Feb 6, 2009, 9:40:50 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_work/production/australia_ph2/sydney/project.py
r6285 r6289 95 95 # Used in run_busselton,py 96 96 # 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]] 101 101 102 102 # BOUNDING POLYGON - for data clipping and estimate of triangles in mesh … … 105 105 bounding_polygon_filename = 'bounding_polygon.csv' 106 106 107 # INTERIOR REGIONS - for designing the mesh108 # Used in run_busselton.py109 # 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 point119 # Used in get_timeseries.py120 # Format easting,northing,name,elevation (with header)121 #gauges_filename = 'gauges.csv'122 123 # BUILDINGS EXPOSURE - for identifying inundated houses124 # Used in run_building_inundation.py125 # Format latitude,longitude etc (geographic)126 #building_exposure_filename = 'busselton_res_clip.csv' #from NEXIS127 107 128 108 # BOUNDING POLYGON … … 140 120 landward_boundary_filename = 'landward_boundary_extend.csv' 141 121 142 #------------------------------------------------------------------------------143 # Clipping regions for export to asc and regions for clipping data144 # Final inundation maps should only be created in regions of the finest mesh145 #------------------------------------------------------------------------------146 147 ### ASCII export grid for Busselton148 ##xminBusselton = 340000149 ##xmaxBusselton = 352000150 ##yminBusselton = 6271500151 ##ymaxBusselton = 6280000152 ##153 ### ASCII export grid for Bunbury154 ##xminBunbury = 369000155 ##xmaxBunbury = 381000156 ##yminBunbury = 6308000157 ##ymaxBunbury = 6316500158 122 159 123 … … 204 168 output_run_time = join(output_run, scenario_name) 205 169 206 # The absolute pathname for the gauges file207 # Used for get_timeseries.py208 #gauges = join(gauges_folder, gauges_filename)209 210 # The absolute pathname for the building file211 # Used for run_building_inundation.py212 #building_exposure = join(gauges_folder, building_exposure_filename)213 170 214 171 #------------------------------------------------------------------------------ … … 217 174 218 175 # 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]) 223 180 224 181 # Create list of interior polygons with scaling factor
Note: See TracChangeset
for help on using the changeset viewer.