source: anuga_work/production/perth/export_results_max.py @ 6026

Last change on this file since 6026 was 5952, checked in by kristy, 15 years ago

Running smoothly, for all var and area

File size: 4.8 KB
Line 
1"""
2Generates ascii grids of nominated areas -
3Input: sww file from run_perth.py
4       boundaries for grids from project.py
5Outputs: ascii grids of specified variables
6Stored in the 'outputs_dir' folder for respective .sww file
7
8Note:
9If producing a grid for the enitre extent cellsize should be greater than 30m
10If producing grids for inundation area resolution should be greater than mesh (ie ~22m)
11"""
12
13import project, os
14import sys
15from anuga.shallow_water.data_manager import convert_dem_from_ascii2netcdf, dem2pts
16from anuga.shallow_water.data_manager import sww2dem
17from os import sep
18import maxasc
19
20directory = project.output_dir
21
22#time_dir1 = '20081031_133841_run_final_0_27283_alpha0.1_kvanputt'
23#time_dir1 = '20080924_123626_run_final_0_27283_250m_all_kvanputt' # This uses the 250m bathymetry with all interior polygons
24#time_dir2 = '20080912_154716_run_final_0_27283_alpha0.1_kvanputt' # This uses original bathyemetry data
25#time_dir3 = '20080924_123601_run_final_0_27283_250m_none_kvanputt' # This uses the 250m bathymetry without any interior polygons
26#time_dirs = [time_dir1] #, time_dir2]#, time_dir3]
27
28time_dir1 = '20081031_133353_run_final_0.6_68693_alpha0.1_kvanputt'
29time_dir2 = '20081031_133511_run_final_0_68693_alpha0.1_kvanputt'
30time_dir3 = '20081031_133624_run_final_0_27255_alpha0.1_kvanputt'
31time_dir4 = '20081031_133735_run_final_0.6_27255_alpha0.1_kvanputt'
32time_dir5 = '20081031_133841_run_final_0_27283_alpha0.1_kvanputt'
33time_dir6 = '20081031_133925_run_final_0.6_27283_alpha0.1_kvanputt'
34
35time_dirs = [time_dir1, time_dir2, time_dir3, time_dir4, time_dir5, time_dir6]
36
37 
38
39cellsize = 20
40#cellsize = 250
41
42timestep = None    # None means no timestep!
43#timestep = 0
44
45######
46# Set the special areas of interest.  If none, do: area='All'
47######
48
49area = ['Rockingham', 'Sorrento', 'Fremantle','Geordie' ]  # strings must match keys in var_equations below
50#area = ['All']      # 'All' means no special areas - the whole thing
51
52######
53# Define allowed variable names and associated equations to generate values.
54# This would not normally change.
55######
56var_equations = {'stage':     'stage',
57                 'momentum':  '(xmomentum**2 + ymomentum**2)**0.5',
58                 'depth':     'stage-elevation',
59                 'speed':     '(xmomentum**2 + ymomentum**2)**0.5/(stage-elevation+1.e-6)',
60                 'elevation': 'elevation' }
61
62# one or more key strings from var_equations above
63var = ['depth', 'speed']
64
65######
66# Start running the various conversions we require.
67######
68
69for which_var in var:
70    if which_var not in var_equations:
71        print 'Unrecognized variable name: %s' % which_var
72        break
73
74    for which_area in area:
75        if which_area == 'All':
76            easting_min = None
77            easting_max = None
78            northing_min = None
79            northing_max = None
80        else:
81            try:
82                easting_min = eval('project.xmin%s' % which_area)
83                easting_max = eval('project.xmax%s' % which_area)
84                northing_min = eval('project.ymin%s' % which_area)
85                northing_max = eval('project.ymax%s' % which_area)
86            except AttributeError:
87                print 'Unrecognized area name: %s' % which_area
88                break
89
90        for time_dir in time_dirs:
91
92            name1 = directory+time_dir+sep+project.scenario_name
93            name2 = directory+time_dir+sep+project.scenario_name+'_time_39900_0'
94            name3 = directory+time_dir+sep+project.scenario_name+'_time_79800_0'
95
96            names = [name1, name2, name3]
97     
98            asc_name = []   
99               
100            for name in names:
101                         
102                outname = name + '_' + which_area + '_' + which_var
103                quantityname = var_equations[which_var]
104
105                print 'start sww2dem: time_dir=%s' % time_dir
106               
107                sww2dem(name, basename_out = outname,
108                            quantity = quantityname,
109                            timestep = timestep,
110                            cellsize = cellsize,     
111                            easting_min = easting_min,
112                            easting_max = easting_max,
113                            northing_min = northing_min,
114                            northing_max = northing_max,       
115                            reduction = max, 
116                            verbose = True,
117                            format = 'asc')
118
119                asc_name.append(outname + '.asc')
120   
121            maxasc_outname = directory+time_dir+sep+project.scenario_name+'_'+which_area+'_'+which_var+'_max.asc'
122
123            print 'max asc outname ', maxasc_outname
124            print 'asc_name ', str(asc_name)
125           
126            maxasc.MaxAsc(maxasc_outname, asc_name)
Note: See TracBrowser for help on using the repository browser.