Last change
on this file since 3287 was
2839,
checked in by sexton, 19 years ago
|
updates and setting up scripts for timeseries and report generation for Pt Hedland
|
File size:
902 bytes
|
Rev | Line | |
---|
[2839] | 1 | """ Script for generating figures, see sww2timeseries for documentation""" |
---|
| 2 | |
---|
| 3 | from pyvolution.util import sww2timeseries |
---|
| 4 | import project |
---|
| 5 | from os import sep |
---|
| 6 | |
---|
| 7 | # define directory location of sww and gauge data |
---|
| 8 | timestampdir = '' |
---|
| 9 | file_loc = project.outputdir + timestampdir + sep #project.outputtimedir |
---|
| 10 | swwfile = file_loc + project.basename + '.sww' |
---|
| 11 | label_id = timestampdir |
---|
| 12 | |
---|
| 13 | # generate figures - see sww2timeseries for documentation |
---|
| 14 | texname = sww2timeseries(swwfile, |
---|
| 15 | project.gauge_filename, |
---|
| 16 | label_id, |
---|
| 17 | report = False, |
---|
| 18 | plot_quantity = ['stage', 'velocity', 'bearing'], |
---|
| 19 | time_min = None, |
---|
| 20 | time_max = None, |
---|
| 21 | title_on = True, |
---|
| 22 | verbose = True) |
---|
| 23 | |
---|
| 24 | print 'finished plotting time series' |
---|
| 25 | |
---|
| 26 | |
---|
| 27 | |
---|
| 28 | |
---|
| 29 | |
---|
Note: See
TracBrowser
for help on using the repository browser.