Rev | Line | |
---|
[5194] | 1 | """ |
---|
| 2 | Generate time series of nominated "gauges" read from project.gauge_filename. This |
---|
| 3 | is done by first running sww2csv_gauges on two different directories to make |
---|
| 4 | 'csv' files. Then running csv2timeseries_graphs detailing the two directories |
---|
| 5 | containing the csv file and produces one set of graphs in the 'output_dir' containing |
---|
| 6 | the details at the gauges for both these sww files. |
---|
| 7 | """ |
---|
| 8 | from anuga.abstract_2d_finite_volumes.util import sww2csv_gauges |
---|
| 9 | import project_fangauta |
---|
| 10 | |
---|
| 11 | print project_fangauta.output_run_time_dir_name+'.sww' |
---|
| 12 | swwfile=project_fangauta.output_run_time_dir_name+'.sww' |
---|
| 13 | |
---|
| 14 | gauge_file=project_fangauta.gauges_dir_name |
---|
| 15 | sww2csv_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.