source: anuga_work/production/tonga/get_timeseries.py @ 5194

Last change on this file since 5194 was 5194, checked in by herve, 16 years ago

run scripts for tonga

File size: 800 bytes
Line 
1"""
2Generate time series of nominated "gauges" read from project.gauge_filename. This
3is done by first running sww2csv_gauges on two different directories to make
4'csv' files. Then running csv2timeseries_graphs detailing the two directories
5containing the csv file and produces one set of graphs in the 'output_dir' containing
6the details at the gauges for both these sww files.
7"""
8from anuga.abstract_2d_finite_volumes.util import sww2csv_gauges
9import project_fangauta
10
11print project_fangauta.output_run_time_dir_name+'.sww'
12swwfile=project_fangauta.output_run_time_dir_name+'.sww'
13
14gauge_file=project_fangauta.gauges_dir_name
15sww2csv_gauges(swwfile,
16               gauge_file,
17               quantities = ['stage','speed','depth','elevation'],
18               verbose=True)
19
Note: See TracBrowser for help on using the repository browser.