Changeset 6390
- Timestamp:
- Feb 24, 2009, 9:18:06 AM (16 years ago)
- Location:
- anuga_work/production/patong
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_work/production/patong/asc2raster_WGS84z47N.py
r6273 r6390 26 26 27 27 28 time_dir1 = '20090 130_135044_run_final_0.8_buildings_onielsen'29 time_dir2 = '20090123_135355_run_final_0.8_buildings_onielsen'28 time_dir1 = '20090213_142042_run_final_0.8_buildings_onielsen' 29 #time_dir2 = '20090204_143421_run_final_0.8_buildings_transmissive_onielsen' 30 30 31 31 time_dirs = [time_dir1] #, time_dir2] 32 32 33 33 for time_dir in time_dirs: 34 34 … … 50 50 51 51 generate_filename = [] 52 input_ascii = glob.glob(folder + '* speed.asc')52 input_ascii = glob.glob(folder + '*depth.asc') 53 53 54 54 for infile in input_ascii: … … 74 74 ",PARAMETER['Latitude_Of_Origin',0.0],UNIT['Meter',1.0]]") 75 75 76 ##output_extract = output_DEM + 'E'77 ##print 'Output Extract ',output_extract78 ##print 'Process: Extract by Mask'79 ##gp.ExtractByMask_sa(output_DEM, land, output_extract)76 output_extract = output_DEM + 'E' 77 print 'Output Extract ',output_extract 78 print 'Process: Extract by Mask' 79 gp.ExtractByMask_sa(output_DEM, land, output_extract) 80 80 81 81 -
anuga_work/production/patong/export_results_max.py
r6274 r6390 20 20 directory = project.output_dir 21 21 22 time_dir1 = '20090 123_150043_run_final_0.8_nobuildings_onielsen'23 time_dir2 = '20090130_135044_run_final_0.8_buildings_onielsen'22 time_dir1 = '20090213_142042_run_final_0.8_buildings_onielsen' 23 #time_dir2 = '20090204_143421_run_final_0.8_buildings_transmissive_onielsen' 24 24 25 time_dirs = [time_dir 2] #1, time_dir2]25 time_dirs = [time_dir1]#, time_dir2] 26 26 27 27 28 cellsize = 1029 #cellsize = 25028 #cellsize = 10 29 cellsize = 250 30 30 31 timestep = None # None means no timestep!32 #timestep = 031 #timestep = None # None means no timestep! 32 timestep = 0 33 33 34 34 ###### … … 36 36 ###### 37 37 38 area = ['CBD' ] # strings must match keys in var_equations below39 #area = ['All'] # 'All' means no special areas - the whole thing38 #area = ['CBD' ] # strings must match keys in var_equations below 39 area = ['All'] # 'All' means no special areas - the whole thing 40 40 41 41 ###### … … 50 50 51 51 # one or more key strings from var_equations above 52 var = [' depth', 'speed']52 var = ['elevation'] 53 53 54 54 ######
Note: See TracChangeset
for help on using the changeset viewer.