source: anuga_work/production/busselton/build_busselton.py @ 5318

Last change on this file since 5318 was 5149, checked in by nick, 17 years ago

update busselton

File size: 6.0 KB
Line 
1"""Script for running tsunami inundation scenario for Dampier, WA, Australia.
2
3Source data such as elevation and boundary data is assumed to be available in
4directories specified by project.py
5The output sww file is stored in project.output_time_dir
6
7The scenario is defined by a triangular mesh created from project.polygon,
8the elevation data and a simulated submarine landslide.
9
10Ole Nielsen and Duncan Gray, GA - 2005 and Jane Sexton, Nick Bartzis, GA - 2006
11"""
12
13#------------------------------------------------------------------------------
14# Import necessary modules
15#------------------------------------------------------------------------------
16
17# Standard modules
18from os import sep
19from os.path import dirname, basename
20from os import mkdir, access, F_OK
21from shutil import copy
22import time
23import sys
24
25# Related major packages
26from anuga.shallow_water import Domain
27from anuga.shallow_water.data_manager import convert_dem_from_ascii2netcdf, dem2pts
28from anuga.geospatial_data.geospatial_data import *
29from anuga.shallow_water.data_manager import start_screen_catcher, copy_code_files,store_parameters
30
31# Application specific imports
32import project   # Definition of file names and polygons
33
34#------------------------------------------------------------------------------
35# Copy scripts to time stamped output directory and capture screen
36# output to file
37#------------------------------------------------------------------------------
38
39start_screen_catcher(project.output_build_time_dir)
40
41print 'time stamp: ',project.time
42print 'USER: ', project.user
43
44
45copy_code_files(project.output_build_time_dir,__file__, 
46               dirname(project.__file__)+sep+ project.__name__+'.py' )
47
48
49
50#-------------------------------------------------------------------------------
51# Preparation of topographic data
52#
53# Convert ASC 2 DEM 2 PTS using source data and store result in source data
54# Do for coarse and fine data
55# Fine pts file to be clipped to area of interest
56#-------------------------------------------------------------------------------
57
58# topography directory filenames
59onshore_in_dir_name = project.onshore_in_dir_name
60coast_in_dir_name = project.coast_in_dir_name
61coast_in_dir_name1 = project.coast_in_dir_name1
62#island_in_dir_name = project.island_in_dir_name
63offshore_in_dir_name = project.offshore_in_dir_name
64
65onshore_dir_name = project.onshore_dir_name
66coast_dir_name = project.coast_dir_name
67coast_dir_name1 = project.coast_dir_name1
68#island_dir_name = project.island_dir_name
69offshore_dir_name = project.offshore_dir_name
70
71# creates DEM from asc data
72print "creates DEMs from ascii data"
73convert_dem_from_ascii2netcdf(onshore_in_dir_name, basename_out=onshore_dir_name, use_cache=True, verbose=True)
74#convert_dem_from_ascii2netcdf(island_in_dir_name, basename_out=island_dir_name, use_cache=True, verbose=True)
75
76#creates pts file for onshore DEM
77print "creates pts file for onshore DEM"
78dem2pts(onshore_dir_name,
79#        easting_min=project.eastingmin,
80#        easting_max=project.eastingmax,
81#        northing_min=project.northingmin,
82#        northing_max= project.northingmax,
83        use_cache=True, 
84        verbose=True)
85
86#creates pts file for island DEM
87#dem2pts(island_dir_name, use_cache=True, verbose=True)
88
89print'create Geospatial data1 objects from topographies'
90G1 = Geospatial_data(file_name = onshore_dir_name + '.pts',verbose=True)
91G2 = Geospatial_data(file_name = coast_in_dir_name + '.txt',verbose=True)
92G3 = Geospatial_data(file_name = coast_in_dir_name1 + '.txt',verbose=True)
93#G3 = Geospatial_data(file_name = island_dir_name + '.pts',verbose=True)
94G_off = Geospatial_data(file_name = offshore_in_dir_name + '.txt',verbose=True)
95
96print'add all geospatial objects'
97G = G1 + G2 + G3 + G_off
98
99print'clip combined geospatial object by bounding polygon'
100#G_clipped = G.clip(project.bounding_polygon)
101#FIXME: add a clip function to pts
102#print'shape of clipped data', G_clipped.get_data_points().shape
103
104print'export combined DEM file'
105if access(project.topographies_dir,F_OK) == 0:
106    mkdir (project.topographies_dir)
107G.export_points_file(project.combined_dir_name + '.txt')
108#G_clipped.export_points_file(project.combined_dir_name + '.xya')
109
110print'project.combined_dir_name + .txt',project.combined_dir_name + '.txt'
111#G_all=Geospatial_data(file_name = project.combined_dir_name + '.txt')
112print'split'
113G_all_1, = G.split(.10)
114print'export 1'
115G_all_1.export_points_file(project.combined_dir_name+'_small' + '.txt')
116#print'export 2'
117#G_all_2.export_points_file(project.combined_dir_name+'_other1' + '.xya')
118
119'''
120#-------------------------------------------------------------------------
121# Convert URS to SWW file for boundary conditions
122#-------------------------------------------------------------------------
123print 'starting to create boundary conditions'
124boundaries_in_dir_name = project.boundaries_in_dir_name
125
126from anuga.shallow_water.data_manager import urs2sww
127
128print 'minlat=project.north_boundary, maxlat=project.south_boundary',project.north_boundary, project.south_boundary
129print 'minlon= project.west_boundary, maxlon=project.east_boundary',project.west_boundary, project.east_boundary
130
131#import sys; sys.exit()
132
133#if access(project.boundaries_dir,F_OK) == 0:
134#    mkdir (project.boundaries_dir)
135
136from caching import cache
137cache(urs2sww,
138      (boundaries_in_dir_name,
139       project.boundaries_dir_name1),
140      {'verbose': True,
141       'minlat': project.south_boundary,
142       'maxlat': project.north_boundary,
143       'minlon': project.west_boundary,
144       'maxlon': project.east_boundary,
145#       'minlat': project.south,
146#       'maxlat': project.north,
147#       'minlon': project.west,
148#       'maxlon': project.east,
149       'mint': 0, 'maxt': 40000,
150#       'origin': domain.geo_reference.get_origin(),
151       'mean_stage': project.tide,
152#       'zscale': 1,                 #Enhance tsunami
153       'fail_on_NaN': False},
154       verbose = True,
155       )
156#       dependencies = source_dir + project.boundary_basename + '.sww')
157
158'''
159
160
161
162
163
164
165
Note: See TracBrowser for help on using the repository browser.