source: anuga_work/production/onslow_2006/project.py @ 4856

Last change on this file since 4856 was 4856, checked in by sexton, 16 years ago

rename plot_polygons_points to original name of plot_polygons

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