1 | """Common filenames and locations for topographic data, meshes and outputs. |
---|
2 | Also includes origin for slump scenario. |
---|
3 | """ |
---|
4 | |
---|
5 | from os import sep, environ, getenv, getcwd |
---|
6 | from os.path import expanduser |
---|
7 | from anuga.utilities.polygon import read_polygon, polygon_area |
---|
8 | import sys |
---|
9 | |
---|
10 | from anuga.coordinate_transforms.redfearn import convert_from_latlon_to_utm |
---|
11 | |
---|
12 | from anuga.coordinate_transforms.redfearn import degminsec2decimal_degrees |
---|
13 | |
---|
14 | from time import localtime, strftime, gmtime |
---|
15 | |
---|
16 | #Making assumptions about the location of scenario data |
---|
17 | state = 'western_australia' |
---|
18 | scenario_dir_name = 'onslow_tsunami_scenario_2006' |
---|
19 | scenario_name = 'onslow' |
---|
20 | |
---|
21 | # 250m data to be provided |
---|
22 | coarsename = 'onsl_bathydem250' # get from Neil/Ingo (DEM or topo data) |
---|
23 | |
---|
24 | # 30m data to be provided |
---|
25 | onshore_name_dted = 'onslow_onshore_30m_dted2' # get from Neil/Ingo (DEM or topo data) |
---|
26 | |
---|
27 | # 20m data to be provided |
---|
28 | onshore_name_dli = 'onslow_onshore_20m_dli' # get from Neil/Ingo (DEM or topo data) |
---|
29 | |
---|
30 | coast_name = 'onslow_coast' |
---|
31 | islands_name = 'onslow_islands_dted2' |
---|
32 | offshore_name = 'onslow_offshore_points' |
---|
33 | |
---|
34 | boundary_basename = 'SU-AU_clip' |
---|
35 | |
---|
36 | #swollen/ all data output |
---|
37 | basename = 'source' |
---|
38 | |
---|
39 | codename = 'project.py' |
---|
40 | |
---|
41 | if sys.platform == 'win32': |
---|
42 | home = getenv('INUNDATIONHOME') |
---|
43 | # python_home = getenv('PWD') |
---|
44 | # home = environ['INUNDATIONHOME'] #Sandpit's parent dir |
---|
45 | user = getenv('USERPROFILE') |
---|
46 | # user = basename(user_path) |
---|
47 | |
---|
48 | else: |
---|
49 | home = getenv('INUNDATIONHOME', sep+'d'+sep+'cit'+sep+'1'+sep+'cit'+sep+'risk_assessment_methods_project'+sep+'inundation') |
---|
50 | user = getenv('LOGNAME') |
---|
51 | print 'USER:', user |
---|
52 | |
---|
53 | # INUNDATIONHOME is the inundation directory, not the data directory. |
---|
54 | home += sep +'data' |
---|
55 | |
---|
56 | #Derive subdirectories and filenames |
---|
57 | #time = strftime('%Y%m%d_%H%M%S',localtime()) #gets time for new dir |
---|
58 | local_time = strftime('%Y%m%d_%H%M%S',gmtime()) #gets time for new dir |
---|
59 | |
---|
60 | meshdir = home+sep+state+sep+scenario_dir_name+sep+'anuga'+sep+'meshes'+sep |
---|
61 | datadir = home+sep+state+sep+scenario_dir_name+sep+'anuga'+sep+'topographies'+sep |
---|
62 | gaugedir = home+sep+state+sep+scenario_dir_name+sep+'anuga'+sep+'gauges'+sep |
---|
63 | polygondir = home+sep+state+sep+scenario_dir_name+sep+'anuga'+sep+'polygons'+sep |
---|
64 | boundarydir = home+sep+state+sep+scenario_dir_name+sep+'anuga'+sep+'boundaries'+sep |
---|
65 | #output dir without time |
---|
66 | outputdir = home+sep+state+sep+scenario_dir_name+sep+'anuga'+sep+'outputs'+sep |
---|
67 | tidedir = home+sep+state+sep+scenario_dir_name+sep+'anuga'+sep+'tide_data'+sep |
---|
68 | comparereportdir = '..'+sep+'..'+sep+'documentation'+sep+'experimentation'+sep+'boundary_ANUGA_MOST'+sep+'report' |
---|
69 | |
---|
70 | outputtimedir = outputdir + local_time + sep |
---|
71 | |
---|
72 | print'bound', boundarydir |
---|
73 | |
---|
74 | #gauge_filename = gaugedir + 'onslow_gauges.xya' |
---|
75 | #for MOST |
---|
76 | gauge_filename = gaugedir + 'gauge_location_onslow.csv' |
---|
77 | gauge_filename_bindi = gaugedir + 'gauge_location_bindi.csv' |
---|
78 | gauges50 = gaugedir + '50_gauges.xya' |
---|
79 | gauge_comparison = gaugedir + 'MOST_comparison_gauges.xya' |
---|
80 | gauge_comparison_3d = gaugedir + 'MOST_comparison_gauges_3d.xya' |
---|
81 | community_filename = gaugedir + 'CHINS_v2.csv' |
---|
82 | community_scenario = gaugedir + 'community_onslow.csv' |
---|
83 | #buildings_filename = gaugedir + 'onslow_res.csv' |
---|
84 | buildings_filename = gaugedir + 'extra_points_nbed.csv' |
---|
85 | #buildings_filename_out = gaugedir + 'onslow_res_modified.csv' |
---|
86 | buildings_filename_damage_out = 'extra_points_nbed_modified.csv' |
---|
87 | |
---|
88 | gaugetimeseries = gaugedir + 'onslow' |
---|
89 | |
---|
90 | tidal_filename = tidedir + 'onsl.txt' |
---|
91 | tidal_outname = tidedir + 'max_min.txt' |
---|
92 | |
---|
93 | # boundary source data |
---|
94 | #MOST_dir = 'f:'+sep+'3'+sep+'ehn'+sep+'users'+sep+'davidb'+sep+'tsunami'+sep+'WA_project'+sep+'SU-AU_90'+sep+'most_2'+sep+'detailed'+sep |
---|
95 | |
---|
96 | codedir = getcwd()+sep |
---|
97 | |
---|
98 | codedirname = codedir + 'project.py' |
---|
99 | |
---|
100 | #meshname = meshdir + basename |
---|
101 | meshname = outputtimedir + 'mesh_' + basename |
---|
102 | print 'meshname',meshname |
---|
103 | coarsedemname = datadir + coarsename |
---|
104 | |
---|
105 | onshore_dem_name = datadir + onshore_name_dli |
---|
106 | |
---|
107 | offshore_dem_name = datadir + offshore_name |
---|
108 | coast_dem_name = datadir + coast_name |
---|
109 | islands_dem_name = datadir + islands_name |
---|
110 | combined_dem_name = datadir + 'onslow_combined_elevation' |
---|
111 | |
---|
112 | outputname = outputtimedir + basename #Used by post processing |
---|
113 | |
---|
114 | #!gauge_filename = outputdir + 'onslow_gauges.xya' |
---|
115 | #!gauge_outname = outputdir + 'gauges_max_output.xya' |
---|
116 | |
---|
117 | # clipping region to make DEM (pts file) from fine elevation data |
---|
118 | eastingmin = 240000 |
---|
119 | eastingmax = 340000 |
---|
120 | northingmin = 7580000 |
---|
121 | northingmax = 7700000 |
---|
122 | |
---|
123 | south = degminsec2decimal_degrees(-22,15,0) |
---|
124 | north = degminsec2decimal_degrees(-20,30,0) |
---|
125 | west = degminsec2decimal_degrees(114,15,0) |
---|
126 | east = degminsec2decimal_degrees(115,50,0) |
---|
127 | ''' |
---|
128 | # region for visualisation |
---|
129 | eminviz = 260000 |
---|
130 | emaxviz = 320000 |
---|
131 | nminviz = 7590000 |
---|
132 | nmaxviz = 7630000 |
---|
133 | ''' |
---|
134 | # region to export |
---|
135 | |
---|
136 | e_min_area = 300000 |
---|
137 | e_max_area = 310000 |
---|
138 | n_min_area = 7600000 |
---|
139 | n_max_area = 7610000 |
---|
140 | |
---|
141 | # region to export to make elevation map: JS 22/9/06 - NOTE, this won't |
---|
142 | # work as region needs to be inside bounding box (polyAll)!! |
---|
143 | |
---|
144 | e_min_area = 240000 |
---|
145 | e_max_area = 340000 |
---|
146 | n_min_area = 7580000 |
---|
147 | n_max_area = 7690000 |
---|
148 | export_region = [[e_min_area, n_min_area], |
---|
149 | [e_min_area, n_max_area], |
---|
150 | [e_max_area, n_max_area], |
---|
151 | [e_max_area, n_min_area]] |
---|
152 | #Georeferencing |
---|
153 | from anuga.coordinate_transforms.redfearn import degminsec2decimal_degrees |
---|
154 | |
---|
155 | refzone = 50 |
---|
156 | |
---|
157 | #Updated Main Domain of Onslow: first run NB 6/4/06 |
---|
158 | d0 = [310000, 7690000] |
---|
159 | d1 = [280000, 7690000] |
---|
160 | d2 = [270000, 7645000] |
---|
161 | d3 = [240000, 7625000] |
---|
162 | d4 = [270000, 7580000] |
---|
163 | d5 = [300000, 7590000] |
---|
164 | d6 = [340000, 7610000] |
---|
165 | |
---|
166 | polyAll = [d0, d1, d2, d3, d4, d5, d6] |
---|
167 | print 'bounding polygon area', polygon_area(polyAll)/1000000.0 |
---|
168 | polygons = [polyAll, export_region] |
---|
169 | figname = 'checking.png' |
---|
170 | #from anuga.utilities.polygon import plot_polygons |
---|
171 | #plot_polygons(polygons, figname, verbose = False) |
---|
172 | #print figname |
---|
173 | #Interior region - Onslow town |
---|
174 | |
---|
175 | #first run! |
---|
176 | #i0 = [304000, 7608000] |
---|
177 | #i1 = [302000, 7605000] |
---|
178 | #i2 = [303000, 7602000] |
---|
179 | #i3 = [305000, 7601000] |
---|
180 | #i4 = [309000, 7603000] |
---|
181 | #i5 = [307000, 7606500] |
---|
182 | |
---|
183 | #refined run |
---|
184 | #i0 = [304000, 7607000] |
---|
185 | #i1 = [302000, 7605000] |
---|
186 | #i2 = [304000, 7603000] |
---|
187 | #i3 = [307000, 7602000] |
---|
188 | #i4 = [309000, 7603000] |
---|
189 | #i5 = [307000, 7606000] |
---|
190 | |
---|
191 | #for visualisation |
---|
192 | #i0 = [304000, 7609000] |
---|
193 | #i1 = [301500, 7605000] |
---|
194 | #i2 = [304000, 7603000] |
---|
195 | #i3 = [307000, 7602000] |
---|
196 | #i4 = [309000, 7603000] |
---|
197 | #i5 = [311000, 7607000] |
---|
198 | |
---|
199 | #i0 = [304000, 7608000] |
---|
200 | i0 = [304000, 7607000] |
---|
201 | i1 = [302000, 7605000] |
---|
202 | #i2 = [303000, 7602000] |
---|
203 | i2 = [304000, 7603000] |
---|
204 | #i3 = [305000, 7601000] |
---|
205 | i3 = [307000, 7602000] |
---|
206 | i4 = [309000, 7603000] |
---|
207 | #i5 = [307000, 7606500] |
---|
208 | i5 = [307000, 7606000] |
---|
209 | |
---|
210 | |
---|
211 | poly_onslow = [i0, i1, i2, i3, i4, i5] |
---|
212 | print 'onslow polygon area', polygon_area(poly_onslow)/1000000.0 |
---|
213 | #Thevenard Island |
---|
214 | j0 = [294000, 7629000] |
---|
215 | j1 = [285000, 7625000] |
---|
216 | j2 = [294000, 7621000] |
---|
217 | j3 = [299000, 7625000] |
---|
218 | |
---|
219 | poly_thevenard = [j0, j1, j2, j3] |
---|
220 | print 'thevenard polygon area', polygon_area(poly_thevenard)/1000000.0 |
---|
221 | ''' |
---|
222 | # Direction Is |
---|
223 | k0 = [309000, 7619000] |
---|
224 | k1 = [304000, 7619000] |
---|
225 | k2 = [304000, 7616500] |
---|
226 | k3 = [309000, 7616500] |
---|
227 | |
---|
228 | poly_direction = [k0, k1, k2, k3] |
---|
229 | ''' |
---|
230 | |
---|
231 | #med res around onslow |
---|
232 | l0 = [300000, 7610000] |
---|
233 | l1 = [285000, 7600000] |
---|
234 | l2 = [300000, 7597500] |
---|
235 | l3 = [310000, 7600000] |
---|
236 | l4 = [315000, 7610000] |
---|
237 | #l5 = [310000, 7612500] |
---|
238 | |
---|
239 | #poly_coast = [l0, l1, l2, l3, l4, l5] |
---|
240 | poly_coast = [l0, l1, l2, l3, l4] |
---|
241 | print 'coast polygon area', polygon_area(poly_coast)/1000000.0 |
---|
242 | #general coast and local area to onslow region |
---|
243 | m0 = [270000, 7581000] |
---|
244 | m1 = [300000, 7591000] |
---|
245 | m2 = [339000, 7610000] |
---|
246 | m3 = [330000, 7630000] |
---|
247 | m4 = [290000, 7640000] |
---|
248 | m5 = [260000, 7600000] |
---|
249 | |
---|
250 | poly_region = [m0, m1, m2, m3, m4, m5] |
---|
251 | print 'region polygon area', polygon_area(poly_region)/1000000.0 |
---|