[6393] | 1 | """ |
---|
| 2 | Generates ascii grids of nominated areas - |
---|
| 3 | Input: sww file from run_perth.py |
---|
| 4 | boundaries for grids from project.py |
---|
| 5 | Outputs: ascii grids of specified variables |
---|
| 6 | Stored in the 'outputs_dir' folder for respective .sww file |
---|
| 7 | |
---|
| 8 | Note: |
---|
| 9 | If producing a grid for the enitre extent cellsize should be greater than 30m |
---|
| 10 | If producing grids for inundation area resolution should be greater than mesh (ie ~22m) |
---|
| 11 | """ |
---|
| 12 | |
---|
| 13 | import project, os |
---|
| 14 | import sys |
---|
| 15 | from os.path import join |
---|
| 16 | from anuga.lib.maxasc.maxasc import MaxAsc |
---|
| 17 | from anuga.shallow_water.data_manager import convert_dem_from_ascii2netcdf, dem2pts |
---|
| 18 | from anuga.shallow_water.data_manager import sww2dem |
---|
| 19 | from os import sep |
---|
| 20 | |
---|
| 21 | |
---|
| 22 | directory = project.output_folder |
---|
| 23 | |
---|
[6531] | 24 | ##time_dir1 = '20090311_152848_run_final_0_70385_1203_Bf_jgriffin' |
---|
| 25 | ##time_dir2 = '20090311_152929_run_final_0_70385_1203_Tb_jgriffin' |
---|
| 26 | ##time_dir3 = '20090311_153009_run_final_0_70454_1203_Bf_jgriffin' |
---|
| 27 | time_dir4 = '20090316_095609_run_final_0_51453_3727_Bf_jgriffin' |
---|
| 28 | time_dirs = [time_dir4]#,time_dir2,time_dir3,time_dir4] |
---|
[6393] | 29 | |
---|
| 30 | cellsize = 250 |
---|
| 31 | ##cellsize = 5 |
---|
| 32 | |
---|
| 33 | #timestep = None # None means no timestep! |
---|
| 34 | timestep = 0 |
---|
| 35 | |
---|
| 36 | ###### |
---|
| 37 | # Set the special areas of interest. If none, do: area='All' |
---|
| 38 | ###### |
---|
| 39 | |
---|
| 40 | #area = ['Bunbury', 'Busselton'] # strings must match keys in var_equations below |
---|
| 41 | area = ['All'] # 'All' means no special areas - the whole thing |
---|
| 42 | |
---|
| 43 | ###### |
---|
| 44 | # Define allowed variable names and associated equations to generate values. |
---|
| 45 | # This would not normally change. |
---|
| 46 | ###### |
---|
| 47 | var_equations = {'stage': 'stage', |
---|
| 48 | 'momentum': '(xmomentum**2 + ymomentum**2)**0.5', |
---|
| 49 | 'depth': 'stage-elevation', |
---|
| 50 | 'speed': '(xmomentum**2 + ymomentum**2)**0.5/(stage-elevation+1.e-6)', |
---|
| 51 | 'elevation': 'elevation' } |
---|
| 52 | |
---|
| 53 | # one or more key strings from var_equations above |
---|
[6531] | 54 | var = ['stage'] |
---|
[6393] | 55 | |
---|
| 56 | ###### |
---|
| 57 | # Start running the various conversions we require. |
---|
| 58 | ###### |
---|
| 59 | |
---|
| 60 | for which_var in var: |
---|
| 61 | if which_var not in var_equations: |
---|
| 62 | print 'Unrecognized variable name: %s' % which_var |
---|
| 63 | break |
---|
| 64 | |
---|
| 65 | for which_area in area: |
---|
| 66 | if which_area == 'All': |
---|
| 67 | easting_min = None |
---|
| 68 | easting_max = None |
---|
| 69 | northing_min = None |
---|
| 70 | northing_max = None |
---|
| 71 | else: |
---|
| 72 | try: |
---|
| 73 | easting_min = eval('project.xmin%s' % which_area) |
---|
| 74 | easting_max = eval('project.xmax%s' % which_area) |
---|
| 75 | northing_min = eval('project.ymin%s' % which_area) |
---|
| 76 | northing_max = eval('project.ymax%s' % which_area) |
---|
| 77 | except AttributeError: |
---|
| 78 | print 'Unrecognized area name: %s' % which_area |
---|
| 79 | break |
---|
| 80 | |
---|
| 81 | for time_dir in time_dirs: |
---|
| 82 | |
---|
| 83 | name1 = join(directory, time_dir, project.scenario_name) |
---|
[6531] | 84 | name2 = join(directory, time_dir, project.scenario_name)+'_time_21060_0' |
---|
| 85 | name3 = join(directory, time_dir, project.scenario_name)+'_time_42120_0' |
---|
| 86 | name4 = join(directory, time_dir, project.scenario_name)+'_time_63180_0' |
---|
| 87 | ## name5 = join(directory, time_dir, project.scenario_name)+'_time_53280_0' |
---|
| 88 | ## name6 = join(directory, time_dir, project.scenario_name)+'_time_66600_0' |
---|
| 89 | ## name7 = join(directory, time_dir, project.scenario_name)+'_time_79920_0' |
---|
| 90 | |
---|
| 91 | names = [name1, name2, name3,name4]#,name5,name6,name7] |
---|
[6393] | 92 | |
---|
[6531] | 93 | asc_name = [] |
---|
[6393] | 94 | |
---|
| 95 | for name in names: |
---|
| 96 | |
---|
| 97 | outname = name + '_' + which_area + '_' + which_var |
---|
| 98 | quantityname = var_equations[which_var] |
---|
| 99 | |
---|
| 100 | print 'start sww2dem: time_dir=%s' % time_dir |
---|
| 101 | |
---|
| 102 | sww2dem(name, basename_out = outname, |
---|
| 103 | quantity = quantityname, |
---|
| 104 | timestep = timestep, |
---|
| 105 | cellsize = cellsize, |
---|
| 106 | easting_min = easting_min, |
---|
| 107 | easting_max = easting_max, |
---|
| 108 | northing_min = northing_min, |
---|
| 109 | northing_max = northing_max, |
---|
| 110 | reduction = max, |
---|
| 111 | verbose = True, |
---|
| 112 | format = 'asc') |
---|
| 113 | |
---|
[6531] | 114 | asc_name.append(outname + '.asc') |
---|
| 115 | |
---|
| 116 | maxasc_outname = join(directory, time_dir, project.scenario_name)+'_'+which_area+'_'+which_var+'_max.asc' |
---|
| 117 | |
---|
| 118 | print 'max asc outname ', maxasc_outname |
---|
| 119 | print 'asc_name ', str(asc_name) |
---|
| 120 | |
---|
| 121 | MaxAsc(maxasc_outname, asc_name) |
---|