source: anuga_work/production/busselton/project.py @ 5526

Last change on this file since 5526 was 5526, checked in by kristy, 16 years ago

updated data input

File size: 7.4 KB
Line 
1# -*- coding: cp1252 -*-
2"""Common filenames and locations for topographic data, meshes and outputs.
3"""
4
5from os import sep, environ, getenv, getcwd ,umask
6from os.path import expanduser
7import sys
8from time import localtime, strftime, gmtime
9from anuga.utilities.polygon import read_polygon, plot_polygons, is_inside_polygon, number_mesh_triangles
10#from anuga.coordinate_transforms.redfearn import degminsec2decimal_degrees, convert_points_from_latlon_to_utm
11from anuga.utilities.system_tools import get_user_name, get_host_name
12
13# file and system info
14#---------------------------------
15#codename = 'project.py'
16
17home = getenv('INUNDATIONHOME') + sep +'data'+sep #Sandpit's parent dir   
18user = get_user_name()
19host = get_host_name()
20
21# INUNDATIONHOME is the inundation directory, not the data directory.
22
23#time stuff
24time = strftime('%Y%m%d_%H%M%S',localtime()) #gets time for new dir
25gtime = strftime('%Y%m%d_%H%M%S',gmtime()) #gets time for new dir
26build_time = time+'_build'
27run_time = time+'_run'
28print 'gtime: ', gtime
29
30#Making assumptions about the location of scenario data
31state = 'western_australia'
32scenario_name = 'busselton'
33scenario = 'busselton_tsunami_scenario'
34
35tide = 0
36
37alpha = 0.1 
38friction=0.01
39starttime=0
40finaltime=50000 # changed for rev_number trial
41export_cellsize=25
42setup='final'
43source='exmouth'
44
45
46if setup =='trial':
47    print'trial'
48    res_factor=10
49    time_thinning=48
50    yieldstep=240
51if setup =='basic': 
52    print'basic'
53    res_factor=4
54    time_thinning=12
55    yieldstep=120
56if setup =='final': 
57    print'final'
58    res_factor=1
59    time_thinning=4
60    yieldstep=60
61
62rev_num = 'newExtent'
63#rev_num = '5449'
64#rev_num = '4695' # 2nd Sept 2007
65#rev_num = '4743' # 3nd Oct 2007
66#rev_num = '4777' # 1st Nov 2007
67#rev_num = '4874' # 3rd Dec 2007
68#rev_num = '4901' # 3rd Jan 2007
69#rev_num = '4990' # 5th Feb 2007
70#rev_num = '5103' # 3rd March 2007
71#rev_num = '5120' # 5th March 2007
72#rev_num = '5140' # 7th March 2007
73#rev_num = '5160' # 11th March 2007
74#rev_num = '5185' # 1st April 2007
75#rev_num = '5273' # 2nd May 2007
76
77
78dir_comment='_'+setup+'_'+str(tide)+'_'+str(source)+'_'+str(rev_num)+'_'+str(user)
79
80
81# onshore data provided by WA DLI - provided by Hamish on the 17th June 2008
82
83onshore_name = 'busselton_v2_gda94_mga50' # original
84
85# AHO + DPI data
86coast_name = 'Busselton_Contour0' # provided by hamish, represent better coastline than the 100km as compared to charts
87coast_name1 = 'Busselton_BeachSurvey'
88offshore_name = 'Busselton_NavyFinal'
89offshore_name1 = 'Busselton_Chart'
90offshore_name2 = 'Busselton_Digitised'
91offshore_name3 = 'Busselton_250m' # for areas that were heading to zero - 2005 Bathymetry grid
92
93
94#final topo name
95combined_name ='busselton_combined_elevation'
96combined_name_small = 'busselton_combined_elevation_smaller'
97
98anuga_dir = home+state+sep+scenario+sep+'anuga'+sep
99
100topographies_in_dir = home+state+sep+scenario+sep+'elevation_final'+sep+'points'+sep
101topographies_dir = anuga_dir+'topographies'+sep
102
103# input topo file location
104onshore_in_dir_name = topographies_in_dir + onshore_name #topo
105
106coast_in_dir_name = topographies_in_dir + coast_name #coastline
107coast_in_dir_name1 = topographies_in_dir + coast_name1 #beach survey
108
109offshore_in_dir_name = topographies_in_dir + offshore_name #bathymetry
110offshore_in_dir_name1 = topographies_in_dir + offshore_name1 #bathymetry Charts
111offshore_in_dir_name2 = topographies_in_dir + offshore_name2 #Digitised Fairsheet
112offshore_in_dir_name3 = topographies_in_dir + offshore_name3 #250m
113
114#output to anuga from build file
115onshore_dir_name = topographies_dir + onshore_name
116
117coast_dir_name = topographies_dir + coast_name
118coast_dir_name1 = topographies_dir + coast_name1
119
120offshore_dir_name = topographies_dir + offshore_name
121offshore_dir_name1 = topographies_dir + offshore_name1
122offshore_dir_name2 = topographies_dir + offshore_name2
123offshore_dir_name3 = topographies_dir + offshore_name3
124
125#final topo files
126combined_dir_name = topographies_dir + combined_name
127combined_dir_name_small = topographies_dir + combined_name_small
128
129meshes_dir = anuga_dir+'meshes'+sep
130meshes_dir_name = meshes_dir + scenario_name
131
132polygons_dir = anuga_dir+'polygons'+sep+'New_Extents'+sep
133tide_dir = anuga_dir+'tide_data'+sep
134
135#boundaries_source = '1'
136
137if source=='exmouth':
138    boundaries_name = 'busselton_3103_30052008' #exmouth gun
139    boundaries_in_dir = anuga_dir+'boundaries'+sep+'urs'+sep+'exmouth'+sep+'1_10000'+sep
140
141if source=='test':
142    boundaries_name = 'other' #exmouth gun
143    boundaries_in_dir = anuga_dir+'boundaries'+sep
144
145
146#boundaries locations
147boundaries_in_dir_name = boundaries_in_dir + boundaries_name
148boundaries_dir = anuga_dir+'boundaries'+sep
149boundaries_dir_name = boundaries_dir + scenario_name
150
151#output locations
152output_dir = anuga_dir+'outputs'+sep
153#output_build_time_dir = output_dir +'test'+sep + build_time + dir_comment + sep
154output_build_time_dir = output_dir +build_time + dir_comment + sep
155#output_run_time_dir = output_dir +run_time+dir_comment+sep
156output_run_time_dir = output_dir +'test'+sep + run_time + dir_comment +sep # take test out
157output_run_time_dir_name = output_run_time_dir + scenario_name  #Used by post processing
158
159#gauges
160gauge_name = 'busselton.csv'
161gauges_dir = home+state+sep+scenario+sep+'anuga'+sep+'gauges'+sep
162gauges_dir_name = gauges_dir + gauge_name
163
164buildings_filename = gauges_dir + 'Busselton_res_Project.csv'
165buildings_filename_out = 'Busselton_res_Project_modified.csv'
166
167community_filename = gauges_dir +''
168community_broome = gauges_dir + ''
169
170
171###############################
172# Domain definitions
173###############################
174
175from anuga.utilities.polygon import read_polygon, plot_polygons, polygon_area, is_inside_polygon
176
177# bounding polygon for study area
178poly_all = read_polygon(polygons_dir+'poly_all_extend.csv')
179res_poly_all = 100000*res_factor
180
181
182###############################
183# Interior region definitions
184###############################
185
186#digitized polygons
187poly_large = read_polygon(polygons_dir+'coast_5km_d20m.csv')
188res_large = 40000*res_factor
189
190poly_busselton = read_polygon(polygons_dir+'busselton_1km.csv')
191res_busselton = 500*res_factor
192
193poly_bunbury = read_polygon(polygons_dir+'bunbury_1km.csv')
194res_bunbury = 500*res_factor
195
196poly_dunsborough = read_polygon(polygons_dir+'dunsborough_1km.csv')
197res_dunsborough = 500*res_factor
198
199poly_busselton2 = read_polygon(polygons_dir+'busselton_2km.csv')
200res_busselton2 = 10000*res_factor
201
202poly_bunbury2 = read_polygon(polygons_dir+'bunbury_2km.csv')
203res_bunbury2 = 10000*res_factor
204
205
206interior_regions = [[poly_large,res_large],[poly_busselton,res_busselton],[poly_bunbury,res_bunbury]
207                    ,[poly_dunsborough,res_dunsborough],[poly_busselton2,res_busselton2]
208                    ,[poly_bunbury2,res_bunbury2]]
209
210
211boundary_tags={'back': [3, 4, 5, 6, 7],
212               'side': [2, 8], 'ocean': [0, 1, 9]}
213
214trigs_min = number_mesh_triangles(interior_regions, poly_all, res_poly_all)
215
216poly_mainland=read_polygon(polygons_dir+'initial_condition.csv')
217
218print 'min number triangles', trigs_min
219
220
221###################################################################
222# Clipping regions for export to asc and regions for clipping data
223###################################################################
224
225# exporting asc grid for Busselton
226xminBusselton = 340000
227xmaxBusselton = 352000
228yminBusselton = 6271500
229ymaxBusselton = 6280000
230
231# exporting asc grid for Bunbury
232xminBunbury = 369000
233xmaxBunbury = 381000
234yminBunbury = 6308000
235ymaxBunbury = 6316500
236
237# exporting asc grid for Dunsborough
238xminDunsborough = 321000
239xmaxDunsborough = 327500
240yminDunsborough = 6277000
241ymaxDunsborough = 6282000
242
Note: See TracBrowser for help on using the repository browser.