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

Last change on this file since 5498 was 5430, checked in by kristy, 16 years ago
File size: 765 bytes
RevLine 
[5415]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
[5417]12print input_dir_name
[5415]13
[5417]14csv2timeseries_graphs(directories_dic={input_dir_name:['test',0, 0]},
[5415]15                        output_dir=input_dir_name,
[5430]16                        base_name='gauge_',
[5415]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.