1 | # -*- coding: cp1252 -*- |
---|
2 | """Common filenames and locations for topographic data, meshes and outputs. |
---|
3 | """ |
---|
4 | |
---|
5 | from os import sep, environ, getenv, getcwd |
---|
6 | from os.path import expanduser |
---|
7 | import sys |
---|
8 | from time import localtime, strftime, gmtime |
---|
9 | |
---|
10 | #Making assumptions about the location of scenario data |
---|
11 | state = 'tasmania' |
---|
12 | scenario_dir_name = 'hobart_tsunami_scenario_2006' |
---|
13 | |
---|
14 | # data provided by Tas SES and checked by NM&I |
---|
15 | #onshore_name = 'hob3_topo' # original |
---|
16 | onshore_name = 'hob5_topo' # 12.5m grid and clipped to 100m elevation or 3000m from coast |
---|
17 | #onshore_name_25 = 'hob5_topo_25m' # 25m grid and clipped to 100m elevation or 3000m from coast |
---|
18 | onshore_name_25 = 'hob6_topo_25m' # 25m grid NOT clipped |
---|
19 | offshore_name_tas1 = 'derwent_2m' |
---|
20 | offshore_name_tas2 = 'derwent_5m' |
---|
21 | offshore_name_tas3 = 'south_east_tas' #actually this is AHO |
---|
22 | offshore_name_tas4 = 'hobart_1m' |
---|
23 | |
---|
24 | # AHO data and checked by NM&I |
---|
25 | offshore_name1 = 'xy100003760' |
---|
26 | offshore_name2 = 'xy100003761' |
---|
27 | offshore_name3 = 'xy100003762' |
---|
28 | offshore_name4 = 'xy100003907' |
---|
29 | offshore_name5 = 'xy100003908' |
---|
30 | offshore_name6 = 'xy100003909' |
---|
31 | offshore_name7 = 'xy100003910' |
---|
32 | offshore_name8 = 'xy100003932' |
---|
33 | offshore_name9 = 'xy100003933' |
---|
34 | offshore_name10 = 'xy100003934' |
---|
35 | offshore_name11 = 'xy100003935' |
---|
36 | offshore_name12 = 'xy100003936' |
---|
37 | offshore_name13 = 'xy100003964' |
---|
38 | offshore_name14 = 'xy100014250' |
---|
39 | offshore_name15 = 'xy100014253' |
---|
40 | offshore_name16 = 'xy100016142' |
---|
41 | |
---|
42 | # developed by NM&I |
---|
43 | coast_name = 'coastline_points' |
---|
44 | |
---|
45 | boundary_basename = 'SU-AU_clip' |
---|
46 | |
---|
47 | #swollen/ all data output |
---|
48 | basename = 'source' |
---|
49 | |
---|
50 | codename = 'project.py' |
---|
51 | |
---|
52 | if sys.platform == 'win32': |
---|
53 | home = getenv('INUNDATIONHOME') |
---|
54 | user = getenv('USERPROFILE') |
---|
55 | else: |
---|
56 | home = getenv('INUNDATIONHOME', sep+'d'+sep+'xrd'+sep+'gem'+sep+'2'+sep+'ramp'+'risk_assessment_methods_project'+sep+'inundation'+sep+'data') |
---|
57 | user = getenv('LOGNAME') |
---|
58 | print 'USER:', user |
---|
59 | |
---|
60 | #Derive subdirectories and filenames |
---|
61 | #time = strftime('%Y%m%d_%H%M%S',localtime()) #gets time for new dir |
---|
62 | local_time = strftime('%Y%m%d_%H%M%S',gmtime()) #gets time for new dir |
---|
63 | |
---|
64 | meshdir = home+sep+state+sep+scenario_dir_name+sep+'anuga'+sep+'meshes'+sep |
---|
65 | datadir = home+sep+state+sep+scenario_dir_name+sep+'anuga'+sep+'topographies'+sep |
---|
66 | gaugedir = home+sep+state+sep+scenario_dir_name+sep+'anuga'+sep+'gauges'+sep |
---|
67 | polygondir = home+sep+state+sep+scenario_dir_name+sep+'anuga'+sep+'polygons'+sep |
---|
68 | boundarydir = home+sep+state+sep+scenario_dir_name+sep+'anuga'+sep+'boundaries'+sep |
---|
69 | #output dir without time |
---|
70 | outputdir = home+sep+state+sep+scenario_dir_name+sep+'anuga'+sep+'outputs'+sep |
---|
71 | outputtimedir = outputdir + local_time + sep |
---|
72 | polygondir = home+sep+state+sep+scenario_dir_name+sep+'anuga'+sep+'polygons'+sep |
---|
73 | |
---|
74 | gauge_filename = gaugedir + 'hobart_gauges.xya' |
---|
75 | buildings_filename = gaugedir + 'hobart_res.csv' |
---|
76 | buildings_filename_damage_out = 'hobart_res_modified.csv' |
---|
77 | |
---|
78 | gaugetimeseries = gaugedir + 'hobart' |
---|
79 | |
---|
80 | # boundary source data |
---|
81 | #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 |
---|
82 | |
---|
83 | codedir = getcwd()+sep |
---|
84 | |
---|
85 | codedirname = codedir + 'project.py' |
---|
86 | |
---|
87 | meshname = outputtimedir + 'mesh_' + basename |
---|
88 | |
---|
89 | onshore_dem_name = datadir + onshore_name |
---|
90 | onshore_dem_name_25 = datadir + onshore_name_25 |
---|
91 | all_onshore_dem_name = datadir + 'combined_onshore' |
---|
92 | offshore_dem_name_local1 = datadir + offshore_name_tas1 |
---|
93 | offshore_dem_name_local2 = datadir + offshore_name_tas2 |
---|
94 | offshore_dem_name_local3 = datadir + offshore_name_tas3 |
---|
95 | offshore_dem_name_local4 = datadir + offshore_name_tas4 |
---|
96 | offshore_dem_name_aho1 = datadir + offshore_name1 |
---|
97 | offshore_dem_name_aho2 = datadir + offshore_name2 |
---|
98 | offshore_dem_name_aho3 = datadir + offshore_name3 |
---|
99 | offshore_dem_name_aho4 = datadir + offshore_name4 |
---|
100 | offshore_dem_name_aho5 = datadir + offshore_name5 |
---|
101 | offshore_dem_name_aho6 = datadir + offshore_name6 |
---|
102 | offshore_dem_name_aho7 = datadir + offshore_name7 |
---|
103 | offshore_dem_name_aho8 = datadir + offshore_name8 |
---|
104 | offshore_dem_name_aho9 = datadir + offshore_name9 |
---|
105 | offshore_dem_name_aho10 = datadir + offshore_name10 |
---|
106 | offshore_dem_name_aho11 = datadir + offshore_name11 |
---|
107 | offshore_dem_name_aho12 = datadir + offshore_name12 |
---|
108 | offshore_dem_name_aho13 = datadir + offshore_name13 |
---|
109 | offshore_dem_name_aho14 = datadir + offshore_name14 |
---|
110 | offshore_dem_name_aho15 = datadir + offshore_name15 |
---|
111 | offshore_dem_name_aho16 = datadir + offshore_name16 |
---|
112 | coast_dem_name = datadir + coast_name |
---|
113 | combined_dem_name = datadir + 'hobart_combined_elevation' |
---|
114 | |
---|
115 | outputname = outputtimedir + basename #Used by post processing |
---|
116 | |
---|
117 | # clipping 12.5m onshore data set |
---|
118 | eastingmin = 520000 |
---|
119 | eastingmax = 536000 |
---|
120 | northingmin = 5245000 |
---|
121 | northingmax = 5260000 |
---|
122 | |
---|
123 | # region to export for inundation map |
---|
124 | e_min_area = 490000 |
---|
125 | e_max_area = 580000 |
---|
126 | n_min_area = 5160000 |
---|
127 | n_max_area = 5275000 |
---|
128 | |
---|
129 | from anuga.coordinate_transforms.redfearn import degminsec2decimal_degrees, convert_points_from_latlon_to_utm |
---|
130 | |
---|
131 | # bounding box |
---|
132 | south = degminsec2decimal_degrees(-43,45,0) |
---|
133 | north = degminsec2decimal_degrees(-42,30,0) |
---|
134 | west = degminsec2decimal_degrees(146,45,0) |
---|
135 | east = degminsec2decimal_degrees(148,15,0) |
---|
136 | |
---|
137 | #Main Domain of Hobart: first run JS 18/9/06 |
---|
138 | d0 = [south, west] |
---|
139 | d1 = [south, east] |
---|
140 | d2 = [north, east] |
---|
141 | d3 = [north, west] |
---|
142 | |
---|
143 | polyAll, zone = convert_points_from_latlon_to_utm([d0, d1, d2, d3]) |
---|
144 | refzone = zone |
---|
145 | polyAll = [[500000, 5200000],[520000, 5200000],[520000, 5400000],[500000,5400000]] |
---|
146 | |
---|
147 | # region to export for Alex to make bathymetry map |
---|
148 | e_min_area = 500000 #490000 |
---|
149 | e_max_area = 560000 #580000 |
---|
150 | n_min_area = 5240000#5160000 |
---|
151 | n_max_area = 5260000#5270000 |
---|
152 | |
---|
153 | #Interior region - Hobart city area + Glenorchy, Kingston |
---|
154 | i0 = [517000, 5267000] |
---|
155 | i1 = [517000, 5255000] |
---|
156 | i2 = [520000, 5250000] |
---|
157 | i3 = [522000, 5239000] |
---|
158 | i4 = [524000, 5238000] |
---|
159 | i5 = [526000, 5236000] |
---|
160 | i6 = [530000, 5244000] |
---|
161 | i7 = [530000, 5250000] |
---|
162 | i8 = [534000, 5254000] |
---|
163 | i9 = [520000, 5270000] |
---|
164 | |
---|
165 | poly_hobart = [i0, i1, i2, i3, i4, i5, i6, i7, i8, i9] |
---|
166 | |
---|
167 | # Tasman Peninsula |
---|
168 | l0 = [550000, 5247000] |
---|
169 | l1 = [550000, 5211000] |
---|
170 | l2 = [583000, 5211000] |
---|
171 | l3 = [583000, 5247000] |
---|
172 | |
---|
173 | poly_tasman_peninsula = [l0, l1, l2, l3] |
---|
174 | |
---|
175 | # Bruny Island |
---|
176 | from anuga.utilities.polygon import read_polygon |
---|
177 | poly_bruny = read_polygon(polygondir+'bruny.csv') |
---|