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 | |
---|
24 | ##time_dir1 = '20081217_101310_run_final_0_27283_250m_none_dt_kvanputt' |
---|
25 | ##time_dir2 = '20081217_115336_run_final_0_27283_250m_none_dp_kvanputt' |
---|
26 | ###time_dir1 = '20080924_123626_run_final_0_27283_250m_all_kvanputt' # This uses the 250m bathymetry with all interior polygons |
---|
27 | ###time_dir2 = '20080912_154716_run_final_0_27283_alpha0.1_kvanputt' # This uses original bathyemetry data |
---|
28 | ###time_dir3 = '20080924_123601_run_final_0_27283_250m_none_kvanputt' # This uses the 250m bathymetry without any interior polygons |
---|
29 | ##time_dirs = [time_dir1, time_dir2]#, time_dir3] |
---|
30 | |
---|
31 | time_dir1 = '20090130_165532_run_final_0.6_27255_extend_dt_kvanputt' |
---|
32 | ##time_dir2 = '20081211_162311_run_final_0_27255_alpha0.1_kvanputt' |
---|
33 | ##time_dir3 = '20081211_162346_run_final_0_68693_alpha0.1_kvanputt' |
---|
34 | ##time_dir4 = '20081211_162433_run_final_0.6_68693_alpha0.1_kvanputt' |
---|
35 | ##time_dir5 = '20081211_162656_run_final_0.6_27283_alpha0.1_kvanputt' |
---|
36 | ##time_dir6 = '20081211_162744_run_final_0_27283_alpha0.1_kvanputt' |
---|
37 | ## |
---|
38 | time_dirs = [time_dir1] #5, time_dir4]# , time_dir4, time_dir5, time_dir6] |
---|
39 | |
---|
40 | |
---|
41 | cellsize = 250 |
---|
42 | ##cellsize = 5 |
---|
43 | |
---|
44 | #timestep = None # None means no timestep! |
---|
45 | timestep = 0 |
---|
46 | |
---|
47 | ###### |
---|
48 | # Set the special areas of interest. If none, do: area='All' |
---|
49 | ###### |
---|
50 | |
---|
51 | #area = ['Bunbury', 'Busselton'] # strings must match keys in var_equations below |
---|
52 | area = ['All'] # 'All' means no special areas - the whole thing |
---|
53 | |
---|
54 | ###### |
---|
55 | # Define allowed variable names and associated equations to generate values. |
---|
56 | # This would not normally change. |
---|
57 | ###### |
---|
58 | var_equations = {'stage': 'stage', |
---|
59 | 'momentum': '(xmomentum**2 + ymomentum**2)**0.5', |
---|
60 | 'depth': 'stage-elevation', |
---|
61 | 'speed': '(xmomentum**2 + ymomentum**2)**0.5/(stage-elevation+1.e-6)', |
---|
62 | 'elevation': 'elevation' } |
---|
63 | |
---|
64 | # one or more key strings from var_equations above |
---|
65 | var = ['elevation'] |
---|
66 | |
---|
67 | ###### |
---|
68 | # Start running the various conversions we require. |
---|
69 | ###### |
---|
70 | |
---|
71 | for which_var in var: |
---|
72 | if which_var not in var_equations: |
---|
73 | print 'Unrecognized variable name: %s' % which_var |
---|
74 | break |
---|
75 | |
---|
76 | for which_area in area: |
---|
77 | if which_area == 'All': |
---|
78 | easting_min = None |
---|
79 | easting_max = None |
---|
80 | northing_min = None |
---|
81 | northing_max = None |
---|
82 | else: |
---|
83 | try: |
---|
84 | easting_min = eval('project.xmin%s' % which_area) |
---|
85 | easting_max = eval('project.xmax%s' % which_area) |
---|
86 | northing_min = eval('project.ymin%s' % which_area) |
---|
87 | northing_max = eval('project.ymax%s' % which_area) |
---|
88 | except AttributeError: |
---|
89 | print 'Unrecognized area name: %s' % which_area |
---|
90 | break |
---|
91 | |
---|
92 | for time_dir in time_dirs: |
---|
93 | |
---|
94 | name1 = join(directory, time_dir, project.scenario_name) |
---|
95 | #name2 = join(directory, time_dir, project.scenario_name)+'_time_39600_0' |
---|
96 | #name3 = join(directory, time_dir, project.scenario_name)+'_time_79200_0' |
---|
97 | |
---|
98 | names = [name1] #, name2]#, name3] |
---|
99 | |
---|
100 | # asc_name = [] |
---|
101 | |
---|
102 | for name in names: |
---|
103 | |
---|
104 | outname = name + '_' + which_area + '_' + which_var |
---|
105 | quantityname = var_equations[which_var] |
---|
106 | |
---|
107 | print 'start sww2dem: time_dir=%s' % time_dir |
---|
108 | |
---|
109 | sww2dem(name, basename_out = outname, |
---|
110 | quantity = quantityname, |
---|
111 | timestep = timestep, |
---|
112 | cellsize = cellsize, |
---|
113 | easting_min = easting_min, |
---|
114 | easting_max = easting_max, |
---|
115 | northing_min = northing_min, |
---|
116 | northing_max = northing_max, |
---|
117 | reduction = max, |
---|
118 | verbose = True, |
---|
119 | format = 'asc') |
---|
120 | |
---|
121 | ## asc_name.append(outname + '.asc') |
---|
122 | ## |
---|
123 | ## maxasc_outname = join(directory, time_dir, project.scenario_name)+'_'+which_area+'_'+which_var+'_max.asc' |
---|
124 | ## |
---|
125 | ## print 'max asc outname ', maxasc_outname |
---|
126 | ## print 'asc_name ', str(asc_name) |
---|
127 | ## |
---|
128 | ## MaxAsc(maxasc_outname, asc_name) |
---|