source: anuga_work/production/perth/plot_timeseries.py @ 5430

Last change on this file since 5430 was 5430, checked in by kristy, 16 years ago
File size: 765 bytes
Line 
1
2
3from os import sep
4import project
5from anuga.abstract_2d_finite_volumes.util import sww2csv_gauges,csv2timeseries_graphs
6
7import pylab
8
9timestamp='20080619_115643_run_trial_0.6_exmouth_kvanputt'
10
11input_dir_name=project.output_dir+timestamp+sep
12print input_dir_name
13
14csv2timeseries_graphs(directories_dic={input_dir_name:['test',0, 0]},
15                        output_dir=input_dir_name,
16                        base_name='gauge_',
17                        plot_numbers='',
18                        quantities=['stage','speed','depth'],
19                        extra_plot_name='',
20                        assess_all_csv_files=True,                           
21                        create_latex=False,
22                        verbose=True)
23
Note: See TracBrowser for help on using the repository browser.