source: trunk/anuga_work/development/gong_2008/get_timeseries.py @ 7924

Last change on this file since 7924 was 5653, checked in by sexton, 17 years ago

updates for gong study

File size: 880 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
8Note, this script will only work if pylab is installed on the platform
9
10"""
11
12from os import sep
13from anuga.abstract_2d_finite_volumes.util import sww2csv_gauges,csv2timeseries_graphs
14
15import project
16
17timestamp=''
18
19filename=project.outputdir+timestamp+sep+project.scenario_name+'.sww'
20
21sww2csv_gauges(filename,
22               project.gauge_filename,
23               quantities = ['stage','speed','depth','elevation'],
24               verbose=True)
25               
26
27   
28
Note: See TracBrowser for help on using the repository browser.