Changeset 3270
- Timestamp:
- Jul 3, 2006, 5:22:43 PM (19 years ago)
- Location:
- production/onslow_2006
- Files:
-
- 1 deleted
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
production/onslow_2006/MOST_timeseries.py
r3190 r3270 25 25 # User defined inputs 26 26 production_dirs = {'20060515_001733': '100m boundary', 27 #'20060530_102753': '50m boundary'}#,27 '20060530_102753': '50m boundary', 28 28 'MOST': 'MOST'} 29 29 -
production/onslow_2006/export_results.py
r3261 r3270 7 7 from os import sep 8 8 9 time_dir = "20060629_085137" 9 #time_dir = '20060703_062936' #HAT 10 #time_dir = '20060703_062753' #LAT 11 time_dir = '20060703_062900' #MSL 10 12 directory = project.outputdir 11 name = directory + time_dir +sep + "source"13 name = directory + time_dir +sep + 'source' 12 14 13 15 #normal screen output is stored in 'outname' … … 22 24 #print 'Which variable do you want to export?' 23 25 #which_var = int(raw_input('Stage = 0, Absolute Momentum = 1, Depth = 2, Speed = 3 ' )) 24 which_var = 426 which_var = 2 25 27 #sys.stderr.write(sys.stdout.data) 26 28 if which_var == 0: # Stage -
production/onslow_2006/get_building_inundation.py
r3082 r3270 29 29 30 30 # Inputs 31 #timestampdir = '20060 426_004129' # HAT32 #timestampdir = '20060 426_004237' # LAT33 timestampdir = '20060 515_001733' # MSL31 #timestampdir = '20060703_062936' # HAT 32 #timestampdir = '20060703_062753' # LAT 33 timestampdir = '20060703_062900' # MSL 34 34 file_loc = project.outputdir + timestampdir + sep 35 35 swwfile = file_loc + project.basename + '.sww' -
production/onslow_2006/make_report.py
r3268 r3270 79 79 80 80 # WA DLI data 81 production_dirs = {'20060 630_065348': 'MSL',82 '20060 630_070124': 'HAT',83 '20060 630_070359': 'LAT'}81 production_dirs = {'20060703_062900': 'MSL', 82 '20060703_062936': 'HAT', 83 '20060703_062753': 'LAT'} 84 84 85 85 max_maps = {'MSL': 'MSL_map', … … 215 215 s = '\\begin{table} \\begin{center} \n' 216 216 fid.write(s) 217 s = '\caption{Defined point locations for %s study area.}' % report_title217 s = '\caption{Defined point locations for %s study area.}' %scenario 218 218 fid.write(s) 219 219 s = """ -
production/onslow_2006/project.py
r3265 r3270 15 15 16 16 #Making assumptions about the location of scenario data 17 state = 'western_australia' 17 18 scenario_dir_name = 'onslow_tsunami_scenario_2006' 18 19 … … 54 55 local_time = strftime('%Y%m%d_%H%M%S',gmtime()) #gets time for new dir 55 56 56 meshdir = home+sep+s cenario_dir_name+sep+'meshes'+sep57 datadir = home+sep+s cenario_dir_name+sep+'topographies'+sep58 gaugedir = home+sep+s cenario_dir_name+sep+'gauges'+sep59 polygondir = home+sep+s cenario_dir_name+sep+'polygons'+sep60 boundarydir = home+sep+s cenario_dir_name+sep+'boundaries'+sep57 meshdir = home+sep+state+sep+scenario_dir_name+sep+'anuga'+sep+'meshes'+sep 58 datadir = home+sep+state+sep+scenario_dir_name+sep+'anuga'+sep+'topographies'+sep 59 gaugedir = home+sep+state+sep+scenario_dir_name+sep+'anuga'+sep+'gauges'+sep 60 polygondir = home+sep+state+sep+scenario_dir_name+sep+'anuga'+sep+'polygons'+sep 61 boundarydir = home+sep+state+sep+scenario_dir_name+sep+'anuga'+sep+'boundaries'+sep 61 62 #output dir without time 62 outputdir = home+sep+s cenario_dir_name+sep+'output'+sep63 tidedir = home+sep+s cenario_dir_name+sep+'tide_data'+sep63 outputdir = home+sep+state+sep+scenario_dir_name+sep+'anuga'+sep+'outputs'+sep 64 tidedir = home+sep+state+sep+scenario_dir_name+sep+'anuga'+sep+'tide_data'+sep 64 65 65 66 outputtimedir = outputdir + local_time + sep … … 76 77 community_scenario = gaugedir + 'community_onslow.csv' 77 78 buildings_filename = gaugedir + 'onslow_res.csv' 78 community_filename = gaugedir + 'CHINS_v2.csv'79 community_scenario = gaugedir + 'community_onslow.csv'80 81 79 82 80 gaugetimeseries = gaugedir + 'onslow' -
production/onslow_2006/report/data.tex
r3268 r3270 46 46 47 47 \begin{table} 48 \caption{A Vailable data for the North West shelf tsunami inundation studies.}48 \caption{Available data for the North West shelf tsunami inundation studies.} 49 49 \label{table:data} 50 50 \begin{center}
Note: See TracChangeset
for help on using the changeset viewer.