Changeset 6769 for anuga_work/production/australia_ph2/cairns
- Timestamp:
- Apr 8, 2009, 1:18:00 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_work/production/australia_ph2/cairns/project.py
r6756 r6769 26 26 # One or all can be changed each time the run_model script is executed 27 27 28 central_meridian = 147# Central meridian for projection (optional)29 #zone = 5528 central_meridian = None # Central meridian for projection (optional) 29 zone = 55 30 30 import sys 31 31 if len(sys.argv) > 1: 32 32 event_number = int(sys.argv[1]) 33 33 else: 34 event_number = # the event number or the mux file name35 36 event_number_list = [ ] # To piggy back multiple events34 event_number = 31975 # the event number or the mux file name 35 36 event_number_list = [31975, 51469, 63737] # To piggy back multiple events 37 37 38 38 tide = 0 # difference between MSL and HAT … … 47 47 48 48 # index is only used when wave = Tb 49 index = # index from the PTHA - Y2000 0.257m49 index = 2172 # index from the PTHA - Y2000 0.257m 50 50 wave = 'Tb' # Bf (sts wave) Tb (index wave) 51 51 … … 81 81 82 82 # Format for points is x,y,elevation (with header) 83 point_filenames = ['ahs100_0.txt', 84 'ahs100_1.txt', 85 'ahs100_2.txt', 86 'ahs100_3.txt', 87 'ahs100_4.txt', 88 'ahs100_5.txt', 89 'ahs100_6.txt', 90 'ahs100_7.txt', 91 'ahs100_8.txt', 92 'ahs100_9.txt', 93 'ahs100_10.txt', 94 'ahs100_11.txt', 95 'ahs100_12.txt', 96 'ahs100_13.txt'] # LADS data 83 point_filenames = [] 84 ##point_filenames = ['ahs100_0.txt', 85 ## 'ahs100_1.txt', 86 ## 'ahs100_2.txt', 87 ## 'ahs100_3.txt', 88 ## 'ahs100_4.txt', 89 ## 'ahs100_5.txt', 90 ## 'ahs100_6.txt', 91 ## 'ahs100_7.txt', 92 ## 'ahs100_8.txt', 93 ## 'ahs100_9.txt', 94 ## 'ahs100_10.txt', 95 ## 'ahs100_11.txt', 96 ## 'ahs100_12.txt', 97 ## 'ahs100_13.txt'] # LADS data 97 98 98 99 ### Add csv header list to all files in point_filenames
Note: See TracChangeset
for help on using the changeset viewer.