Changeset 3005


Ignore:
Timestamp:
May 29, 2006, 1:04:00 PM (19 years ago)
Author:
sexton
Message:

more updates

Location:
production/onslow_2006
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • production/onslow_2006/make_report.py

    r2991 r3005  
    172172
    173173# Generate latex output for gauges
    174 s = '\\begin{center} \n \\begin{tabular}{|l|l|l|}\hline \n \\bf{Gauge
    175 Name} & \\bf{Easting} & \\bf{Northing} \\\\ \hline \n' fid.write(s)
    176 #s = '\\begin{center} \n \\begin{tabular}{|l|l|l|l|}\hline \n \\bf{Gauge
    177 #Name} & \\bf Easting} & \\bf Northing} & \\bf Elevation \\\\ \hline \n
    178 
    179 gauges, locations =
    180 get_gauges_from_file(project.gauge_filename)
     174s = '\\begin{table} \label{table:gaugelocations} \n'
     175fid.write(s)
     176s = '\caption{Defined gauge locations for %s study area.}' %scenario
     177fid.write(s)
     178s = """
     179'\\begin{center}
     180\\begin{tabular}{|l|l|l|l|}\hline
     181\\bf{Gauge Name} & \\bf{Easting} & \\bf{Northing} & \\bf{Elevation}\\\\ \hline
     182"""
     183fid.write(s)
     184
     185gauges, locations = get_gauges_from_file(project.gauge_filename)
    181186
    182187for name, gauges in zip(locations, gauges):
    183188    east = gauges[0]
    184189    north = gauges[1]
     190    elev = 0.0
    185191    #elev = gauges[2]
    186     s = '%s & %.2f & %.2f \\\\ \hline \n' %(name.replace('_',' '), east,
    187 north)
    188     #s = '%s & %.2f & %.2f & %.2f \\\\ \hline \n %(name.replace('_',' '),
    189 east, north, elev)
    190     fid.write(s)
    191 
    192 s = '\\end{tabular} \n \\end{center} \n \n'
     192    s = '%s & %.2f & %.2f & %.2f \\\\ \hline \n' %(name.replace('_',' '), east, north, elev)
     193    fid.write(s)
     194
     195s = '\\end{tabular} \n  \end{center} \n \end{table} \n \n'
    193196fid.write(s)
    194197
  • production/onslow_2006/report/onslow_2006_report.tex

    r3004 r3005  
    6262     \label{sec:results}
    6363     \input{computational_setup}
    64 
    65 \begin{table}
    66 \label{table:gaugelocations}
    67 \caption{Defined gauge locations for Onslow study area.}
    6864     
    69 \begin{center}
    70  \begin{tabular}{|l|l|l|}\hline
    71  \bf{Gauge Name} & \bf{Easting} & \bf{Northing} \\ \hline
    72 Beadon Point Loading Berth & 302986.51 & 7607334.65 \\ \hline
    73 Hospital & 304973.04 & 7605500.42 \\ \hline
    74 Bindi Bindi Community & 305430.37 & 7605586.65 \\ \hline
    75 Power Station & 305687.62 & 7605062.62 \\ \hline
    76 Airport Runway & 304471.19 & 7602750.41 \\ \hline
    77 Beadon Creek Docks & 306622.77 & 7604706.10 \\ \hline
    78 West of Groyne & 306556.76 & 7605791.87 \\ \hline
    79 Beadon Creek mouth & 306626.50 & 7605532.27 \\ \hline
    80 Beadon Creek south of dock & 306676.87 & 7604408.63 \\ \hline
    81 Centre dam wall & 308516.86 & 7603955.82 \\ \hline
    82 Dam overflow & 307913.42 & 7604034.90 \\ \hline
    83 Light Tower & 304562.88 & 7606431.74 \\ \hline
    84 Beadon Bay west & 305311.01 & 7606557.16 \\ \hline
    85 Beadon Bay east & 307989.36 & 7606591.95 \\ \hline
    86 
    87 \end{tabular}
    88 \end{center}
    89  \end{table}
    90 
     65\begin{table} \label{table:gaugelocations}
     66\caption{Defined gauge locations for onslow_2006 study area.}
     67'\begin{center}
     68\begin{tabular}{|l|l|l|l|}\hline
     69\bf{Gauge Name} & \bf{Easting} & \bf{Northing} & \bf{Elevation}\\ \hline
     70Beadon Point Loading Berth & 302986.51 & 7607334.65 & 0.00 \\ \hline
     71Hospital & 304973.04 & 7605500.42 & 0.00 \\ \hline
     72Bindi Bindi Community & 305430.37 & 7605586.65 & 0.00 \\ \hline
     73Power Station & 305687.62 & 7605062.62 & 0.00 \\ \hline
     74Airport Runway & 304471.19 & 7602750.41 & 0.00 \\ \hline
     75Beadon Creek Docks & 306622.77 & 7604706.10 & 0.00 \\ \hline
     76West of Groyne & 306556.76 & 7605791.87 & 0.00 \\ \hline
     77Beadon Creek mouth & 306626.50 & 7605532.27 & 0.00 \\ \hline
     78Beadon Creek south of dock & 306676.87 & 7604408.63 & 0.00 \\ \hline
     79Centre dam wall & 308516.86 & 7603955.82 & 0.00 \\ \hline
     80Dam overflow & 307913.42 & 7604034.90 & 0.00 \\ \hline
     81Light Tower & 304562.88 & 7606431.74 & 0.00 \\ \hline
     82Beadon Bay west & 305311.01 & 7606557.16 & 0.00 \\ \hline
     83Beadon Bay east & 307989.36 & 7606591.95 & 0.00 \\ \hline
     84\end{tabular}
     85  \end{center}
     86 \end{table}
     87 
    9188\input{interpretation}
    9289\subsection{Lowest Astronomical Tide}
     
    108105
    109106   \section{Damage modelling}
    110     \label{sec:damage}
    111107     \input{damage}
    112108\subsection{Lowest Astronomical Tide}
Note: See TracChangeset for help on using the changeset viewer.