source: anuga_work/production/hobart_2006/project.py @ 3724

Last change on this file since 3724 was 3721, checked in by sexton, 18 years ago

hobart testing and report making

File size: 6.7 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
6from os.path import expanduser
7import sys
8from time import localtime, strftime, gmtime
9from anuga.utilities.polygon import read_polygon, plot_polygons, polygon_area
10from anuga.coordinate_transforms.redfearn import degminsec2decimal_degrees, convert_points_from_latlon_to_utm
11
12if sys.platform == 'win32':
13    home = getenv('INUNDATIONHOME')
14    user = getenv('USERPROFILE')
15
16else:   
17    home = getenv('INUNDATIONHOME', sep+'d'+sep+'xrd'+sep+'gem'+sep+'2'+sep+'ramp'+sep+'risk_assessment_methods_project'+sep+'inundation')     
18    user = getenv('LOGNAME')
19    print 'USER:', user
20
21# INUNDATIONHOME is the inundation directory, not the data directory.
22home += sep +'data'
23
24#Making assumptions about the location of scenario data
25state = 'tasmania'
26scenario_dir_name = 'hobart_tsunami_scenario_2006'
27
28# data provided by Tas SES and checked by NM&I
29#onshore_name = 'hob3_topo' # original
30onshore_name_25 = 'hob5_topo_25m' # 25m grid and clipped to 100m elevation or 3000m from coast
31onshore_name = 'hob5_topo' # 12.5m grid and clipped to 100m elevation or 3000m from coast
32#onshore_name_25 = 'hob6_topo_25m' # 25m grid NOT clipped
33offshore_name_tas1 = 'derwent_2m'
34offshore_name_tas2 = 'derwent_5m'
35offshore_name_tas3 = 'south_east_tas' #actually this is AHO
36offshore_name_tas4 = 'hobart_1m'
37
38# AHO data and checked by NM&I
39offshore_name1 = 'xy100003760'
40offshore_name2 = 'xy100003761'
41offshore_name3 = 'xy100003762'
42offshore_name4 = 'xy100003907'
43offshore_name5 = 'xy100003908'
44offshore_name6 = 'xy100003909'
45offshore_name7 = 'xy100003910'
46offshore_name8 = 'xy100003932'
47offshore_name9 = 'xy100003933'
48offshore_name10 = 'xy100003934'
49offshore_name11 = 'xy100003935'
50offshore_name12 = 'xy100003936'
51offshore_name13 = 'xy100003964'
52offshore_name14 = 'xy100014250'
53offshore_name15 = 'xy100014253'
54offshore_name16 = 'xy100016142'
55
56# developed by NM&I
57coast_name = 'coastline_points'
58
59#boundary_basename = 'puysegur' # Mw 8.7
60boundary_basename = 'puysegur_clip' # Mw 8.5
61
62#swollen/ all data output
63basename = 'source'
64
65codename = 'project.py'
66
67#Derive subdirectories and filenames
68#time = strftime('%Y%m%d_%H%M%S',localtime()) #gets time for new dir
69local_time = strftime('%Y%m%d_%H%M%S',gmtime()) #gets time for new dir
70meshdir = home+sep+state+sep+scenario_dir_name+sep+'anuga'+sep+'meshes'+sep
71datadir = home+sep+state+sep+scenario_dir_name+sep+'anuga'+sep+'topographies'+sep
72gaugedir = home+sep+state+sep+scenario_dir_name+sep+'anuga'+sep+'gauges'+sep
73polygondir = home+sep+state+sep+scenario_dir_name+sep+'anuga'+sep+'polygons'+sep
74boundarydir = home+sep+sep+state+sep+scenario_dir_name+sep+'anuga'+sep+'boundaries'+sep
75outputdir = home+sep+state+sep+scenario_dir_name+sep+'anuga'+sep+'outputs'+sep
76outputtimedir = outputdir + local_time + sep
77polygondir = home+sep+state+sep+scenario_dir_name+sep+'anuga'+sep+'polygons'+sep
78
79gauge_filename = gaugedir + 'hobart_gauges_final.csv'
80
81codedir = getcwd()+sep                           
82codedirname = codedir + 'project.py'
83meshname = outputtimedir + 'mesh_' + basename
84
85# Necessary if using point datasets, rather than grid
86onshore_dem_name = datadir + onshore_name
87onshore_dem_name_25 = datadir + onshore_name_25
88all_onshore_dem_name = datadir + 'combined_onshore'
89offshore_dem_name_local1 = datadir + offshore_name_tas1
90offshore_dem_name_local2 = datadir + offshore_name_tas2
91offshore_dem_name_local3 = datadir + offshore_name_tas3
92offshore_dem_name_local4 = datadir + offshore_name_tas4
93offshore_dem_name_aho1 = datadir + offshore_name1
94offshore_dem_name_aho2 = datadir + offshore_name2
95offshore_dem_name_aho3 = datadir + offshore_name3
96offshore_dem_name_aho4 = datadir + offshore_name4
97offshore_dem_name_aho5 = datadir + offshore_name5
98offshore_dem_name_aho6 = datadir + offshore_name6
99offshore_dem_name_aho7 = datadir + offshore_name7
100offshore_dem_name_aho8 = datadir + offshore_name8
101offshore_dem_name_aho9 = datadir + offshore_name9
102offshore_dem_name_aho10 = datadir + offshore_name10
103offshore_dem_name_aho11 = datadir + offshore_name11
104offshore_dem_name_aho12 = datadir + offshore_name12
105offshore_dem_name_aho13 = datadir + offshore_name13
106offshore_dem_name_aho14 = datadir + offshore_name14
107offshore_dem_name_aho15 = datadir + offshore_name15
108offshore_dem_name_aho16 = datadir + offshore_name16
109coast_dem_name = datadir + coast_name
110
111# addition once total grid delivered
112onshore_offshore_dem_name_25 = datadir + '25m_se_tas' #25m grid
113onshore_offshore_dem_name    = datadir + '50m_se_tas' #50m grid
114
115# output names
116bruny_dem_name_25   = datadir + 'bruny_25_dem'
117hobart_dem_name_25  = datadir + 'hobart_25_dem'
118combined_dem_name   = datadir + 'hobart_combined_elevation'
119combined_dem_name_2 = datadir + 'hobart_combined_elevation_2'
120combined_dem_name_3 = datadir + 'hobart_combined_elevation_jane'
121combined_dem_name_4 = datadir + 'hobart_combined_elevation_test'
122
123#outputname = outputtimedir + basename  #Used by post processing
124
125
126###############################
127# Domain definitions
128###############################
129
130# bounding box for clipping MOST output (much bigger than study area)
131south = degminsec2decimal_degrees(-44,45,0)
132north = degminsec2decimal_degrees(-42,0,0)
133west  = degminsec2decimal_degrees(146,45,0)
134east  = degminsec2decimal_degrees(148,25,0) 
135
136###Main Domain of Hobart:
137d0 = [south, west]
138d1 = [south, east]
139d2 = [north, east]
140d3 = [north, west]
141polyAll2, zone = convert_points_from_latlon_to_utm([d0, d1, d2, d3])
142refzone = zone
143
144# Mark run - morning Fri 29 Sep; surrounds -100m and 20mish elevation
145polyAll = read_polygon(polygondir+'new_extent_2.csv')
146plot_polygons([polyAll, polyAll2],'boundingpoly',verbose=False)
147print 'Area of bounding polygon', polygon_area(polyAll)
148
149###################################################################
150# Clipping regions for export to asc and regions for clipping data
151###################################################################
152
153# clipping 12.5m onshore data set
154eastingmin = 520000
155eastingmax = 536000
156northingmin = 5245000
157northingmax = 5260000
158
159# clipping 25m data set - Hobart
160eastingmin25 = 524208.387
161eastingmax25 = 554867.24
162northingmin25 = 5229154.555
163northingmax25 = 5258511.857
164
165# clipping 25m data set - Bruny
166eastingmin25_2 = 523672.502
167eastingmax25_2 = 536020.057
168northingmin25_2 = 5203120.035
169northingmax25_2 = 5212052.309
170
171###############################
172# Interior region definitions
173###############################
174
175# Hobart digitized polygons
176poly_hobart1 = read_polygon(polygondir+'Hob_poly1.csv')
177poly_hobart2 = read_polygon(polygondir+'Hob_poly2.csv')
178poly_hobart3 = read_polygon(polygondir+'Hob_poly3.csv')
179poly_hobart4 = read_polygon(polygondir+'Hob_poly4.csv')
180
181plot_polygons([polyAll, poly_hobart1,poly_hobart2,poly_hobart3,poly_hobart4],'boundingpoly2',verbose=False)
Note: See TracBrowser for help on using the repository browser.