Changeset 7300 for DVD_images/extra_files/GoldCoast/project
- Timestamp:
- Jul 3, 2009, 4:47:17 PM (15 years ago)
- Location:
- DVD_images/extra_files/GoldCoast/project
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
DVD_images/extra_files/GoldCoast/project/project.py
r7205 r7300 36 36 event_number = 51469 # the event number or the mux file name 37 37 38 event_number_list = [51469, 50863, 51392] # To piggy back multiple events 39 40 tide = 0 38 event_number_list = [51469, 51392, 50863] # To piggy back multiple events 39 40 # Event Details: 41 # Event 1 (51469) 42 # Source Zone = New Hebrides 43 # Return Period = 10 000 years 44 # Wave height at 100 m = 2.3 m 45 # 46 # Event 2 (51392) 47 # Source Zone = New Hebrides 48 # Return Period = 5000 years 49 # Wave height at 100 m = 1.7 m 50 # 51 # Event 3 (50863) 52 # Source Zone = New Hebrides 53 # Return Period = 200 years 54 # Wave height at 100 m = 0.3 m 55 56 tide = 0 # Mean Sea Level = 0, 57 # Highest Astronomical Tide = 1.1 m for Gold Coast 41 58 alpha = 0.1 # smoothing parameter for mesh 42 friction =0.01 # manning's friction coefficient43 starttime =0 # start time for simulation44 finaltime =80000 # final time for simulation59 friction = 0.01 # manning's friction coefficient 60 starttime = 0 # start time for simulation 61 finaltime = 80000 # final time for simulation 45 62 46 63 setup = 'final' # This can be one of three values … … 60 77 #------------------------------------------------------------------------------- 61 78 62 output_comment = [setup, tide, '250m',event_number]79 output_comment = [setup, tide, event_number] 63 80 64 81 #------------------------------------------------------------------------------- … … 69 86 # Used in build_elevation.py 70 87 # Format for ascii grids, as produced in ArcGIS + a projection file 71 ascii_grid_filenames = ['grid250m_all_pro'] # 2005 250m grid 72 ## ['GC_DTM_30m']] # supplied DEM 88 ascii_grid_filenames = [] 73 89 74 90 # Format for point is x,y,elevation (with header) 75 91 point_filenames = [] 76 77 ### Add csv header list to all files in point_filenames78 ##headerlist = ['x', 'y', 'elevation']79 ##for f in point_filenames:80 ## add_csv_header(join(topographies_folder, f), headerlist)81 92 82 93 # BOUNDING POLYGON - for data clipping and estimate of triangles in mesh 83 94 # Used in build_elevation.py 84 95 # Format for points easting,northing (no header) 85 bounding_polygon_filename = 'bounding_polygon _sml.csv'96 bounding_polygon_filename = 'bounding_polygon.csv' 86 97 bounding_polygon_maxarea = 125000 87 98 … … 89 100 # Used in run_model.py 90 101 # Format for points easting,northing (no header) 91 interior_regions_data = [] 102 interior_regions_data = [['area_of_interest.csv', 500], 103 ['intermediate.csv', 25000]] 92 104 93 105 # LAND - used to set the initial stage/water to be offcoast only 94 106 # Used in run_model.py. Format for points easting,northing (no header) 95 land_initial_conditions_filename = [['initial_conditions _sml.csv', 0]]107 land_initial_conditions_filename = [['initial_conditions.csv', 0]] 96 108 97 109 # GAUGES - for creating timeseries at a specific point … … 103 115 # Used in run_building_inundation.py 104 116 # Format latitude,longitude etc (geographic) 105 building_exposure_filename = ' gold_coast_res_clip.csv' # from NEXIS117 building_exposure_filename = '' # from NEXIS 106 118 107 119 # AREA OF IMAGES - Extent of each image to find out highest runup … … 118 130 # Thinned ordering file from Hazard Map (geographic) 119 131 # Format is index,latitude,longitude (with header) 120 urs_order_filename = 'urs_order _sml.csv'132 urs_order_filename = 'urs_order.csv' 121 133 122 134 # Landward bounding points 123 135 # Format easting,northing (no header) 124 landward_boundary_filename = 'landward_boundary _sml.csv'136 landward_boundary_filename = 'landward_boundary.csv' 125 137 126 138 # MUX input filename. … … 138 150 #------------------------------------------------------------------------------- 139 151 140 # ASCII export grid for Gold Coast 141 xminGold_Coast = 541500 142 xmaxGold_Coast = 546000 143 yminGold_Coast = 6893500 144 ymaxGold_Coast = 6898500 145 146 # ASCII export grid for dune study 147 xminDune = 536710 148 xmaxDune = 556150 149 yminDune = 6881125 150 ymaxDune = 6926860 152 153 151 154 152 155 ################################################################################ … … 172 175 # Output filename for elevation 173 176 # this is a combination of all the data generated in build_elevation.py 174 combined_elevation_basename = scenario_name + '_combined_elevation _250m'177 combined_elevation_basename = scenario_name + '_combined_elevation' 175 178 176 179 #------------------------------------------------------------------------------- … … 246 249 images = join(polygons_folder, images_filename) 247 250 248 # full path to where MUX files (or meta-files) live 249 mux_input = join(event_folder, mux_input_filename) 250 251 -
DVD_images/extra_files/GoldCoast/project/setup_model.py
r7205 r7300 77 77 sanity_error = True 78 78 79 # if multi_mux is True, check if multi-mux file exists80 if project.multi_mux:81 if not exists(project.mux_input):82 print ("Sorry, MUX input file '%s' doesn't exist"83 % project.mux_input)84 sanity_error = True85 86 79 #----- 87 80 # If this directory don't exist, EventSelection hasn't been run.
Note: See TracChangeset
for help on using the changeset viewer.