source: inundation/examples/run_gippsland.py @ 3330

Last change on this file since 3330 was 2056, checked in by duncan, 19 years ago

create a domain instance from a pmesh.mesh instance

File size: 579 bytes
Line 
1from pyvolution.data_manager import asc_csiro2sww
2import time
3
4t0 = time.time()
5
6
7asc_csiro2sww('bathymetry_expanded','elev_expanded','ucur_expanded',
8              'vcur_expanded', 'test_extent_true_38.25__37.7__147__148.25.sww',zscale=1,
9              mean_stage = 0,
10              fail_on_NaN = False,
11              elevation_NaN_filler = 0
12              ,
13              minlat = -38.25, maxlat = -37.7, ###-37.75,
14              minlon = 147.0, maxlon = 148.25
15              , verbose = True
16              )
17
18print 'That took %.2f seconds' %(time.time()-t0)
Note: See TracBrowser for help on using the repository browser.