Line | |
---|
1 | """Script for running a tsunami inundation scenario for Cairns, QLD Australia. |
---|
2 | |
---|
3 | Source data such as elevation and boundary data is assumed to be available in |
---|
4 | directories specified by project.py |
---|
5 | The output sww file is stored in directory named after the scenario, i.e |
---|
6 | slide or fixed_wave. |
---|
7 | |
---|
8 | The scenario is defined by a triangular mesh created from project.polygon, |
---|
9 | the elevation data and a tsunami wave generated by a submarine mass failure. |
---|
10 | |
---|
11 | Ole Nielsen and Duncan Gray, GA - 2005 and Jane Sexton and |
---|
12 | Nick Bartzis, GA - 2006 |
---|
13 | """ |
---|
14 | |
---|
15 | #------------------------------------------------------------------------------ |
---|
16 | # Import necessary modules |
---|
17 | #------------------------------------------------------------------------------ |
---|
18 | |
---|
19 | # Standard modules |
---|
20 | import os |
---|
21 | import time |
---|
22 | import sys |
---|
23 | |
---|
24 | # Related major packages |
---|
25 | from anuga.geospatial_data.geospatial_data import Geospatial_data |
---|
26 | |
---|
27 | G = Geospatial_data('ALL_Grd_Bui_Comb_Smth_Rds_XYZPts_only.txt', delimiter=' ') |
---|
Note: See
TracBrowser
for help on using the repository browser.