source: anuga_core/source/anuga/examples/run_gippsland.py @ 4150

Last change on this file since 4150 was 3514, checked in by duncan, 19 years ago

Hi all,
I'm doing a change in the anuga structure, moving the code to

\anuga_core\source\anuga

After you have done an svn update, the PYTHONPATH has to be changed to;
PYTHONPATH = anuga_core/source/

This is part of changes required to make installation of anuga quicker and reducing the size of our sandpits.

If any imports are broken, try fixing them. With adding anuga. to them for example. If this seems to have really broken things, email/phone me.

Cheers
Duncan

File size: 585 bytes
Line 
1from anuga.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.