Changeset 6761 for anuga_work/production/australia_ph2/gold_coast
- Timestamp:
- Apr 8, 2009, 10:44:16 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_work/production/australia_ph2/gold_coast/project.py
r6756 r6761 26 26 # One or all can be changed each time the run_model script is executed 27 27 28 central_meridian = 153.0# Central meridian for projection (optional)29 #zone = 5628 central_meridian = None # Central meridian for projection (optional) 29 zone = 56 30 30 import sys 31 31 if len(sys.argv) > 1: … … 36 36 event_number_list = [50883, 51318, 51453] # To piggy back multiple events 37 37 38 # events: 27346 (java 2.1e-6), 58334 (puysegur 8.8e-7), 64322 (sandwich 8.2e-6), 39 # other events: 51466 (newHebrides 7.2e-7), 57537 (peru 4.7e-7), 46591 (midAmerica 1.3e-6), 40 # 68791 (sumatra 7.5e-7), 11100 (andaman 4.9e-7), 65368 (shetland 2.5e-6), 7867 (altiplano 1.0e-6) 38 41 tide = 0 # difference between MSL and HAT 39 42 alpha = 0.1 # smoothing parameter for mesh … … 78 81 # Used in build_elevation.py 79 82 # Format for ascii grids, as produced in ArcGIS + a projection file 80 ascii_grid_filenames = [ ]83 ascii_grid_filenames = ['grid_250m_simple'] 81 84 82 85 # Format for points is x,y,elevation (with header) 83 point_filenames = ['brisbane_250m.txt', 84 'GBR_250m.txt', 85 'Sydney_250m.txt'] # 250m grid 2005 86 point_filenames = [] 87 ##point_filenames = ['brisbane_250m.txt', 88 ## 'GBR_250m.txt', 89 ## 'Sydney_250m.txt'] # 250m grid 2005 86 90 87 91 ### Add csv header list to all files in point_filenames … … 93 97 # Used in build_elevation.py 94 98 # Format for points: easting,northing (no header) 95 bounding_polygon_filename = 'bounding_polygon .csv'99 bounding_polygon_filename = 'bounding_polygon_simple.csv' 96 100 bounding_polygon_maxarea = 125000 97 101 … … 134 138 # Landward bounding points 135 139 # Format easting,northing (no header) 136 landward_boundary_filename = 'landward_boundary .csv'140 landward_boundary_filename = 'landward_boundary_simple.csv' 137 141 138 142 # MUX input filename. … … 175 179 # Output filename for elevation 176 180 # this is a combination of all the data generated in build_elevation.py 177 combined_elevation_basename = scenario_name + ' _combined_elevation'181 combined_elevation_basename = scenario_name + 'simple_combined_elevation' 178 182 179 183 #-------------------------------------------------------------------------------
Note: See TracChangeset
for help on using the changeset viewer.