source: production/pt_hedland_2006/make_report.py @ 3365

Last change on this file since 3365 was 3354, checked in by sexton, 19 years ago

updates for pt hedland

File size: 8.3 KB
Line 
1"""
2Generate report for production run
3
4Inputs:
5
6report_title:    title to be included in tex file
7production dirs: dictionary of production directories with a
8                 association to that simulation run, eg high tide,
9                 low tide and MSL.
10                   
11
12Outputs:
13
14* Report generated to scenario_report.tex where the scenario relates
15the name of the production directory this script is being run from.
16* figures used for report stored in the report_figure directory
17NOTE, this directory will need to be committed, as well as
18the latex files.
19
20The report structure is
21
22* Executive Summary
23* Introduction
24* Modelling Methodology
25* Tsunami scenario
26* Data sources
27* Inundation model
28* Inundation modelling results
29* Impact modelling
30* Summary
31* References
32* Appendix: Metadata
33* Appendix: Time series outputs
34
35Other files included in document which require manual intervention:
36
37* an abstract must be written in abstract.tex
38* an introduction must be written in introduction.tex; a basic outline and
39  some of the core inputs are already in place
40* the tsunami-genic event should be discussed in tsunami_scenario.tex
41* a discussion of the ANUGA model is required in anuga.tex
42* a computational_setup.tex file needs to be written for the particular scenario
43* the interpretation of the results needs to be written to interpretation.tex
44* maximum inundation map names need to be included in HAT_map and LAT_map etc.
45* damage modelling map names need to be included in HAT_damage and LAT_damage etc.
46* a summary must be written into summary.tex
47* metadata for the scenario data to be included in metadata.tex
48
49May, June 2006                   
50"""
51
52from os import getcwd, sep, altsep, mkdir, access, F_OK
53import project
54from pyvolution.util import sww2timeseries, get_gauges_from_file
55
56# Derive scenario name
57p = getcwd().split(sep)
58scenario = p[-1] # Last element of absolute CWD path
59scenario_name = scenario.split('_2006')[0] # Strip any text past `_2006`
60test = scenario_name.split('_')
61if len(test) <> 1:
62    scenario_name = '%s %s' %(test[0], test[1])
63
64# Create report directory
65reportdir = getcwd()+sep+'report'+sep
66if access(reportdir,F_OK) == 0:
67    mkdir (reportdir)
68   
69# User defined inputs
70report_title = 'Tsunami impact modelling for the North West shelf: %s' %scenario_name.title()
71
72# WA DLI data
73production_dirs = {'20060707_001859': 'MSL',
74                   '20060707_003301': 'HAT',
75                   '20060707_003424': 'LAT'}
76
77max_maps = {'MSL': 'MSL_map',
78            'HAT': 'HAT_map',
79            'LAT': 'LAT_map'}
80
81gauge_map = 'pt_hedland_dli_gauge.jpg'
82
83# Create sections and graphs for each designated production directory
84latex_output = []
85swwfiles = {}
86for label_id in production_dirs.keys():
87   
88    file_loc = project.outputdir + label_id + sep
89    swwfile = file_loc + project.basename + '.sww'
90    swwfiles[swwfile] = label_id
91
92texname, elev_output = sww2timeseries(swwfiles,
93                                      project.gauge_filename,
94                                      production_dirs,
95                                      report = True,
96                                      reportname = 'latexoutput',
97                                      plot_quantity = ['stage', 'speed'],
98                                      surface = False,
99                                      time_min = None,
100                                      time_max = None,
101                                      title_on = False,
102                                      verbose = True)
103
104latex_output.append(texname)
105
106# Start report generation
107# Future: generate_report(reportdir, scenario, report_title,
108# project.gauge_filename, max_maps, damage_maps, production_dirs, latex_output)
109report_name = reportdir + scenario + '_report.tex'
110fid = open(report_name, 'w')
111
112s = """
113% This is based on an automatically generated file (by make_report.py).
114%
115% Manual parts are:
116% * an abstract must be written in abstract.tex
117% * an introduction must be written in introduction.tex; a basic outline and
118%   some of the core inputs are already in place
119% * outline of the modelling methodology provided in modelling_methodology.tex
120% * the tsunami-genic event should be discussed in tsunami_scenario.tex
121% * an computational_setup.tex file needs to be written for the particular scenario
122% * the interpretation of the results needs to be written to interpretation.tex
123% * maximum inundation maps need to be included in HAT_map.tex and LAT_map.tex etc.
124% * damage modelling maps need to be included in HAT_damage and LAT_damage etc.
125% * a summary must be written into summary.tex
126% * metadata for the scenario data to be included in metadata.tex
127
128\documentclass{article}
129
130\usepackage{ae} % or {zefonts}
131\usepackage[T1]{fontenc}
132\usepackage[ansinew]{inputenc}
133\usepackage{amsmath}
134\usepackage{amssymb}
135\usepackage{graphicx}
136\usepackage{color}
137\usepackage[colorlinks]{hyperref}
138\usepackage{lscape} %landcape pages support
139\usepackage{setspace}
140\include{appendix}
141\setstretch{1.25}
142\\topmargin 0pt
143\oddsidemargin 0pt
144\evensidemargin 0pt
145\marginparwidth 0.5pt
146\\textwidth \paperwidth
147\\advance\\textwidth -2in
148
149"""
150fid.write(s)
151
152#s = '\\title{%s} \n' %report_title
153#fid.write(s)
154
155s = """
156\date{\\today}
157%\\author{Geoscience Australia}
158
159\\begin{document}
160\\title{
161\\begin{figure}[hbt]
162  \centerline{ \includegraphics[scale=0.4]{../report_figures/GAlogo.jpg}}
163\end{figure}
164"""
165fid.write(s)
166s = '%s} '%report_title
167fid.write(s)
168s = """
169  \maketitle
170
171    \section{Executive Summary}
172    \label{sec:execsum}
173  \input{execsum}
174
175  \\tableofcontents
176 
177  \section{Introduction}
178    \label{sec:intro}
179  \input{introduction}
180
181   \section{Modelling methodology}
182    \label{sec:methodology}
183    \input{modelling_methodology}
184   
185  \section{Tsunami scenarios}
186    \label{sec:tsunamiscenario}
187    \input{tsunami_scenario}
188
189  \section{Data sources}
190    \label{sec:data}
191    \input{data}
192   
193   \section{Inundation model}
194    \label{sec:anuga}
195    \input{anuga}
196    \input{computational_setup}
197       
198  \section{Inundation modelling results}
199     \label{sec:results}
200         
201"""
202fid.write(s)
203
204# Generate latex output for location points
205s = '\\begin{table} \\begin{center} \n'
206fid.write(s)
207s = '\caption{Defined point locations for %s study area.}' %scenario_name
208fid.write(s)
209s = """
210\label{table:locations}
211\\begin{tabular}{|l|l|l|l|}\hline
212\\bf{Point Name} & \\bf{Easting} & \\bf{Northing} & \\bf{Elevation}\\\\ \hline
213"""
214fid.write(s)
215
216gauges, locations, elevation = get_gauges_from_file(project.gauge_filename)
217
218for name, gauges, elev in zip(locations, gauges, elevation):
219    east = gauges[0]
220    north = gauges[1]
221    s = '%s & %.2f & %.2f & %.2f \\\\ \hline \n' %(name.replace('_',' '), east, north, elev)
222    fid.write(s)
223
224s = '\\end{tabular} \n  \end{center} \n \end{table} \n \n'
225fid.write(s)
226
227s = '\\begin{figure}[hbt] \n \centerline{ \includegraphics[width=150mm, height=100mm]{../report_figures/%s}}' %gauge_map
228fid.write(s)
229
230= """
231\caption{Point locations used for Port Hedland study.} 
232\label{fig:points}
233\end{figure}
234"""
235fid.write(s)
236   
237s = '\input{interpretation} \n'
238fid.write(s)
239
240# Assign titles to each production section
241# Must specify one name per section
242for i, name in enumerate(production_dirs.keys()):
243#
244#    s = '\subsection{%s} \n \n' %production_dirs[name]     
245#    fid.write(s)
246
247    s = '\input{%s} \n \clearpage \n \n' %max_maps[production_dirs[name]]
248    fid.write(s)
249
250# Closing
251
252s = """
253   \section{Impact modelling}
254    \label{sec:impact}
255     \input{damage}
256"""
257fid.write(s)
258
259#for i, name in enumerate(production_dirs.keys()):
260
261#    s = '\input{%s} \n \clearpage \n \n' %damage_maps[production_dirs[name]]
262#    fid.write(s)
263
264s = """
265   \section{Impact due to data accuracy}
266     \input{discussion}
267     \label{sec:issues}
268
269     \section{Summary}
270     \input{summary}
271     
272    \input{references}
273
274    \\appendix
275   
276   \section{Metadata}
277     \label{sec:metadata}
278     \input{metadata}
279
280\pagebreak
281
282   \section{Time series}
283     \label{sec:timeseries}
284"""
285fid.write(s)
286
287s = '\input{%s} \n \clearpage \n \n' %latex_output[0]
288fid.write(s)
289
290s="""
291
292\pagebreak
293
294   \section{Damage modelling inputs}
295     \label{sec:damageinputs}
296     \input{damage_inputs}
297
298\end{document}
299"""
300fid.write(s)
Note: See TracBrowser for help on using the repository browser.