source: production/pt_hedland_2006/project.py @ 3372

Last change on this file since 3372 was 3366, checked in by sexton, 19 years ago

pt hedland report now

File size: 6.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, basename
7#from utilities.polygon import read_polygon
8import sys
9from pmesh.create_mesh import convert_points_from_latlon_to_utm
10from coordinate_transforms.redfearn import degminsec2decimal_degrees
11from time import localtime, strftime
12from geospatial_data import *
13
14#Making assumptions about the location of scenario data
15state = 'western_australia'
16scenario_dir_name = 'pt_hedland_tsunami_scenario_2006'
17
18# onshore data from 30m DTED level 2
19onshore_name_dted = 'pt_hedland_onshore_30m_dted' # get from Neil/Ingo (DEM or topo data)
20onshore_name_dli = 'pt_hedland_onshore_20m_dli' # get from Neil/Ingo (DEM or topo data)
21
22# offshore data from GA digitised charts
23offshore_name1 = 'pt_hedland_offshore_points_orig'
24
25# offshore data from AHO fairsheets
26offshore_name2 = 'pt_hedland_offshore_points_fairsheet_orig'
27
28# coastline developed from aerial photography and 1.5m DLI contour
29#coast_name = 'pt_hedland_coastline_points_dted2_new'
30coast_name = 'coast_with_extracted_z'
31
32
33boundary_basename = 'SU-AU_clip'
34
35#swollen/ all data output
36basename = 'source'
37
38codename = 'project.py'
39
40if sys.platform == 'win32':
41    home = getenv('INUNDATIONHOME') #Sandpit's parent dir
42#    python_home = getenv('PWD')     
43    user = getenv('USERPROFILE')
44    #print 'USER:', user
45else:
46    # original
47    #home = getenv('INUNDATIONHOME', sep+'d'+sep+'cit'+sep+'1'+sep+'cit'+sep+'risk_assessment_methods_project'+sep+'inundation')
48    # update to perlite 2
49    home = getenv('INUNDATIONHOME', sep+'d'+sep+'cit'+sep+'2'+sep+'cit'+sep+'inundation'+sep+'data')     
50    user = getenv('LOGNAME')
51
52#Derive subdirectories and filenames
53time = strftime('%Y%m%d_%H%M%S',localtime()) #gets time for new dir
54outputtimedir = home+sep+state+sep+scenario_dir_name+sep+'anuga'+sep+'outputs'+sep+time+sep
55
56#print 'outputtimedir', outputtimedir
57#meshdir = home+sep+scenario_dir_name+sep+'meshes'+sep
58#datadir = home+sep+scenario_dir_name+sep+'topographies'+sep
59#gaugedir = home+sep+scenario_dir_name+sep+'gauges'+sep
60#polygondir = home+sep+scenario_dir_name+sep+'polygons'+sep
61#boundarydir = home+sep+scenario_dir_name+sep+'boundaries'+sep
62#outputdir = home+sep+scenario_dir_name+sep+'outputs'+sep
63#tidedir = home+sep+scenario_dir_name+sep+'tide_data'+sep
64
65meshdir = home+sep+state+sep+scenario_dir_name+sep+'anuga'+sep+'meshes'+sep
66datadir = home+sep+state+sep+scenario_dir_name+sep+'anuga'+sep+'topographies'+sep
67gaugedir = home+sep+state+sep+scenario_dir_name+sep+'anuga'+sep+'gauges'+sep
68polygondir = home+sep+state+sep+scenario_dir_name+sep+'anuga'+sep+'polygons'+sep
69boundarydir = home+sep+state+sep+scenario_dir_name+sep+'anuga'+sep+'boundaries'+sep
70outputdir = home+sep+state+sep+scenario_dir_name+sep+'anuga'+sep+'outputs'+sep
71tidedir = home+sep+state+sep+scenario_dir_name+sep+'anuga'+sep+'tide_data'+sep
72
73gauge_filename = gaugedir + 'gauge_location_port_hedland.csv'
74buildings_filename = gaugedir + 'pt_hedland_res.csv'
75buildings_filename_out = 'pt_hedland_res_modified.csv'
76buildings_filename_damage_out = 'pt_hedland_res_modified_damage.csv'
77community_filename = gaugedir + 'CHINS_v2.csv'
78community_scenario = gaugedir + 'community_pt_hedland.csv'
79tidal_filename = tidedir + 'pt_hedland_tide.txt'
80
81meshname = meshdir + basename
82#onshore_dem_name = datadir + onshore_name_dted
83onshore_dem_name = datadir + onshore_name_dli
84offshore_dem_name1 = datadir + offshore_name1
85offshore_dem_name2 = datadir + offshore_name2
86coast_dem_name = datadir + coast_name
87combined_dem_name = datadir + 'pt_hedland_combined_elevation'
88outputname = outputtimedir + basename  #Used by post processing
89
90# clipping region to make DEM (pts file) from onshore data
91eastingmin = 594000
92eastingmax = 715000
93northingmin = 7720000
94northingmax = 7880000
95
96# for ferret2sww
97south = degminsec2decimal_degrees(-20,30,0)
98north = degminsec2decimal_degrees(-17,10,0)
99west = degminsec2decimal_degrees(117,00,0)
100east = degminsec2decimal_degrees(120,00,0)
101
102# region to export (used from export_results.py)
103e_min_area = 648000
104e_max_area = 675000
105n_min_area = 7745000
106n_max_area = 7761000
107
108export_region = [[e_min_area,n_min_area],[e_min_area,n_max_area],[e_max_area,n_max_area],[e_max_area,n_min_area]]
109                 
110refzone = 50 
111
112from coordinate_transforms.redfearn import redfearn
113# boundary up to 50 m contour
114lat1_50 = degminsec2decimal_degrees(-19,20,0)
115lat2_50 = degminsec2decimal_degrees(-19,30,0)
116lat3_50 = degminsec2decimal_degrees(-19,45,0)
117lon1_50 = degminsec2decimal_degrees(119,05,0)
118lon2_50 = degminsec2decimal_degrees(118,20,0)
119lon3_50 = degminsec2decimal_degrees(117,45,0)
120z, easting, northing = redfearn(lat1_50, lon1_50)
121d0_50 = [easting, northing]
122z, easting, northing = redfearn(lat2_50, lon2_50)
123d1_50 = [easting, northing]
124z, easting, northing= redfearn(lat3_50, lon3_50)
125d2_50 = [easting, northing]
126
127d4_50 = [285000, 7585000]
128d6_50 = [330000, 7605000]
129#bounding_poly50 = [p0_50, p1_50, p2_50, d6_50, d5, d4_50]
130
131d0 = [763852.0, 7934358.0]
132d1 = [710987.0, 7925797.0]
133d2 = [658264.0, 7926314.0]
134d3 = [552686.0, 7871580.0]
135#d4 = [604415.81, 7733013.56]
136d4 = [638000.0, 7733013.56]
137#d5 = [656561.15, 7732615.11]
138d5 = [662000.0, 7732615.11]
139#d6 = [708940.32, 7750510.33]
140d6 = [690000.0, 7740510.33]
141#polyAll = [d0, d1, d2, d3, d4, d5, d6]
142#polyAll = [d0_50, d1_50, d2_50, d4, d5, d6]
143# from Hamish
144h0=[629262.17, 7747205.47]
145h1=[552686.00, 7871579.99] #d3
146h2=[658264.00, 7926314.00] #d2
147h3=[710986.99, 7925796.99] #d1
148h4=[763851.99, 7934357.99] #d0
149h5=[701485.21, 7770656.86]
150h6=[698273.75, 7762227.38]
151h7=[698194.23, 7762018.65]
152h8=[691627.41, 7744781.98]
153h9=[679220.75, 7743604.59]
154h10=[653512.59, 7740528.56]
155h11=[634777.71, 7738247.17]
156h12=[629443.86, 7746910.37]
157h13=[629396.84, 7746986.75]
158h14=[629352.32, 7747059.06]
159h15=[629276.24, 7747182.63]
160h16=[629262.17, 7747205.47] #repeat of h0
161# using Hamish's new bounding polygon
162#polyAll = [d0_50, d1_50, d2_50, h16,h15,h14,h13,h12,h11,h10,h9,h8,h7,h6,h5]
163polyAll = [d0_50, d1_50, d2_50, h16,h11,h8,h6, h5]
164
165#Interior region - Pt Hedland town
166i0 = [668000, 7757000]
167i1 = [659000, 7755000]
168i2 = [660000, 7749000]
169i3 = [667000, 7746000]
170i4 = [678000, 7751000]
171
172poly_pt_hedland = [i0, i1, i2, i3, i4]
173
174#Are there other significant features?
175j0 = [670000, 7760000]
176j1 = [633000, 7745000]
177j2 = [665000, 7743000]
178j3 = [690000, 7755000]
179
180poly_region = [j0, j1, j2, j3]
Note: See TracBrowser for help on using the repository browser.