- Timestamp:
- Mar 9, 2010, 1:54:17 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_work/production/bunbury_storm_surge_2009/project.py
r7647 r7657 85 85 'Busselton_Chart_Clip_ss.txt', # Clipped from Busselton_Chart - see Busselton Tsunami Scenario 2009 86 86 'Busselton_NavyFinal_Clip_ss.txt', # Clipped from Busselton_NavyFinal - see Busselton Tsunami Scenario 2009 87 'Leschenault_TIN.txt', # TIN created over the Leschenault Estuary 88 'Leschenault_inlet_TIN.txt' # TIN created over the Leschenault Inlet 89 'DPI5U1A02_01a_edited.txt', # Bathymetric LiDAR from DPI - split into manageable pieces 90 'DPI5U1A02_01b_edited.txt', 91 'DPI5U1A02_01c_edited.txt', 87 'DPI5U1A02_01a_edited.txt', # Bathymetric LiDAR from DPI - split into manageable pieces and edited so 88 'DPI5U1A02_01b_edited.txt', # depths below 0 m are negative, and all soundings on land (ie positive) 89 'DPI5U1A02_01c_edited.txt', # are removed as these are not corrected to "bare earth". 92 90 'DPI5U1A02_01d_edited.txt', 93 'DPI5U1A02_01e_edited.txt'] 91 'DPI5U1A02_01e_edited.txt', 92 'Leschenault_TIN.txt'] # TIN created over the Leschenault Estuary and Inlet] 94 93 95 94 # BOUNDING POLYGON - for data clipping and estimate of triangles in mesh … … 105 104 ['area_of_interest.csv', 100], 106 105 ['storm_gate_area.csv', 1], 107 [' floodgates.csv', floodgate_resolution]]106 ['stormgates.csv', 1]] 108 107 109 108 # LAND - used to set the initial stage/water to be offcoast only … … 114 113 # Format is index,northing, easting, elevation (without header) 115 114 gems_order_filename = 'gems_boundary_order_thinned.csv' 115 116 # Storm gate filename 117 # Format is as for a building file to be read by csv2building_polygons, 118 # easting, northing, id, floors (with header) 119 storm_gate_filename = 'storm_gates.csv' 116 120 117 121 # GAUGES - for creating timeseries at a specific point … … 231 235 log.log_filename = join(output_run, scenario_name) + '.log' 232 236 237 # The absolute pathname for the storm gate file 238 # Used for run_model.py 239 if storm_gate_filename: 240 storm_gate = join(polygons_folder, storm_gate_filename) 241 233 242 # The absolute pathname for the gauges file 234 243 # Used for get_timeseries.py
Note: See TracChangeset
for help on using the changeset viewer.