Changeset 3972


Ignore:
Timestamp:
Nov 13, 2006, 3:03:26 PM (17 years ago)
Author:
sexton
Message:

(i) incorporating new supply of interpolated data for Broome (ii) updating report to look at MOST versus ANUGA for Hobart scenario

Location:
anuga_work/production
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • anuga_work/production/broome_2006/project.py

    r3951 r3972  
    5757
    5858# TIN model to fill in data gap
    59 bathy_interp = 'interpolate'
     59bathy_interp = 'nearest_neighbour' #'interpolate'
    6060
    6161boundary_basename = 'SU-AU' # Mw ?
  • anuga_work/production/broome_2006/run_broome.py

    r3965 r3972  
    2929from anuga.abstract_2d_finite_volumes.combine_pts import combine_rectangular_points_files
    3030from anuga.geospatial_data.geospatial_data import *
    31 #from anuga.abstract_2d_finite_volumes.util import Screen_Catcher
    3231from anuga.abstract_2d_finite_volumes.util import start_screen_catcher, copy_code_files
    3332
  • anuga_work/production/hobart_2006/make_report_boundary_BOM.py

    r3965 r3972  
    22import project
    33from anuga.abstract_2d_finite_volumes.util import sww2timeseries, get_gauges_from_file
     4
     5def print_elev(elevfiles,production_dirs,figname):
     6    from pylab import plot, xlabel, ylabel, hold, ion, legend, savefig, close
     7    ion()
     8    hold(True)
     9    cstr = ['g', 'r', 'b', 'c', 'm', 'y', 'k']
     10    j = -1
     11    leg_label = []
     12    for elevfile in elevfiles.keys():
     13        x, elev = read_file(elevfile)
     14        leg_label.append(production_dirs[elevfiles[elevfile]])
     15        j += 1
     16        plot(x, elev, '-', c = cstr[j])
     17    xlabel('Easting')
     18    ylabel('Water Depth')
     19    legend((leg_label),loc='upper right')
     20    savefig(figname)
     21    close('all')
     22    return
     23
     24def read_file(filename):
     25    fid = open(filename)
     26    lines = fid.readlines()
     27    fid.close()
     28    x = []
     29    elev = []
     30    i = -1
     31    for line in lines[:]:
     32        i += 1
     33        fields = line.split(',')
     34        x.append(float(fields[3].strip(' ')))
     35        elev.append(float(fields[2].strip(' ')))
     36    return x, elev
    437
    538# Derive scenario name
     
    1750   
    1851#
    19 production_dirs = {#'20061008_234702': 'Mw 8-7', # 2500 res, 750000 other res
    20                    #'20061016_065743': 'Mw 8-7 refined', #new interior res
    21                    #'20061017_004409': 'Mw 8-7 refined', #new interior res
    22                    '20061022_224422': 'Mw 8-7', #new interior res
     52production_dirs = {'20061022_224422': 'Mw 8-7', # refined around paleo sites
    2353                   'MOST': 'MOST'} # MOST input for Mw 8-7
    2454
    25 #production_dirs = {'20061006_062319': 'Mw 8-5', # 2500 res, 750000 other res
    26 #                   'MOST': 'MOST'} # MOST input for Mw 8-5
    27 
    28 gauge_map = 'boundary_gauges_bom.jpg'
     55gauge_map = 'gauges_map_bom.jpg'
    2956
    3057# Create sections and graphs for each designated production directory
     
    4471                                      report = True,
    4572                                      reportname = 'latexoutput_boundary',
    46                                       #reportname = 'latexoutput_boundary_event2',
    4773                                      plot_quantity = ['stage', 'speed'],
    4874                                      surface = False,
     
    5480latex_output.append(texname)
    5581
     82elevfiles = {}
     83for label_id in production_dirs.keys():
     84   
     85    file_loc = project.outputdir + label_id + sep
     86    elevfile = file_loc + 'gauges_maxmins' + '.csv'
     87    if label_id == 'MOST':
     88        elevfile = project.boundarydir + 'gauges_maxmins' + '.csv'
     89    elevfiles[elevfile] = label_id
     90
     91figname = 'compare_elev.png'
     92print_elev(elevfiles,production_dirs,report_dir+figname)
     93
    5694# Start report generation
    57 # Future: generate_report(reportdir, scenario, report_title,
    58 # project.gauge_filename, max_maps, damage_maps, production_dirs, latex_output)
    5995report_name = reportdir + 'boundary_report.tex'
    60 #report_name = reportdir + 'boundary_report_event2.tex'
    6196fid = open(report_name, 'w')
    6297
     
    107142
    108143\\begin{document}
    109 \\title{Comparison between ANUGA and MOST}
     144\\title{Comparison between ANUGA and MOST - Hobart}
    110145\maketitle
    111146"""
    112147fid.write(s)
    113148
    114 # Generate latex output for location points
    115 ##s = '\\begin{table} \\begin{center} \n'
    116 ##fid.write(s)
    117 ##s = '\caption{Defined point locations for %s study area.}' %scenario_name
    118 ##fid.write(s)
    119 ##s = """
    120 ##\label{table:locations}
    121 ##\\begin{tabular}{|l|l|l|l|}\hline
    122 ##\\bf{Point Name} & \\bf{Easting} & \\bf{Northing} & \\bf{Elevation}\\\\ \hline
    123 ##"""
    124 ##fid.write(s)
    125 ##
    126 ##gauges, locations, elevation = get_gauges_from_file(project.gauge_filename)
    127 ##
    128 ##for name, gauges, elev in zip(locations, gauges, elevation):
    129 ##    east = gauges[0]
    130 ##    north = gauges[1]
    131 ##    s = '%s & %.2f & %.2f & %.2f \\\\ \hline \n' %(name.replace('_',' '), east, north, elev)
    132 ##    fid.write(s)
    133 ##
    134 ##s = '\\end{tabular} \n  \end{center} \n \end{table} \n \n'
    135 ##fid.write(s)
    136 
    137 s = '\\begin{figure}[hbt] \n \centerline{ \includegraphics[width=\paperwidth]{../report_figures/%s}}' %gauge_map
     149s = '\\begin{figure}[hbt] \n \centerline{ \includegraphics[scale=0.6]{../report_figures/%s}}' %gauge_map
    138150fid.write(s)
    139151
     
    144156"""
    145157fid.write(s)
    146    
     158
     159s = '\\begin{figure}[hbt] \n \centerline{ \includegraphics[width=\paperwidth]{%s}}' %figname
     160fid.write(s)
     161
     162s  = """
     163\caption{Elevation data for ANUGA and MOST.} 
     164\label{fig:elevation}
     165\end{figure}
     166"""
     167fid.write(s)
     168
    147169s = '\input{%s} \n \clearpage \n \n' %latex_output[0]
    148170fid.write(s)
  • anuga_work/production/hobart_2006/project.py

    r3965 r3972  
    147147# Mark run - morning Fri 29 Sep; surrounds -100m and 20mish elevation
    148148polyAll = read_polygon(polygondir+'new_extent_2.csv')
    149 plot_polygons([polyAll, polyAll2],'boundingpoly',verbose=False)
     149#plot_polygons([polyAll, polyAll2],'boundingpoly',verbose=False)
    150150#print 'Area of bounding polygon', polygon_area(polyAll)
    151151polyAll_refine = read_polygon(polygondir+'extent_refine.csv')
     
    212212poly_hobart5 = read_polygon(polygondir+'new_interior_region.csv')
    213213
    214 plot_polygons([polyAll, poly_hobart1,poly_hobart2,poly_hobart3,poly_hobart5],'orig_model',verbose=False)
     214#plot_polygons([polyAll, poly_hobart1,poly_hobart2,poly_hobart3,poly_hobart5],'orig_model',verbose=False)
    215215
    216216# to refine around paleo sites
     
    220220#print 'areas of refined polys', polygon_area(poly_kingston), polygon_area(poly_bruny), polygon_area(poly_site13)
    221221
    222 plot_polygons([polyAll, poly_kingston,poly_bruny,poly_site13,poly_hobart5],'orig_model',verbose=False)
     222#plot_polygons([polyAll, poly_kingston,poly_bruny,poly_site13,poly_hobart5],'orig_model',verbose=False)
    223223#print 'Area of interior regions', (polygon_area(poly_hobart1)+\
    224224#      polygon_area(poly_hobart2)+polygon_area(poly_hobart3)+\
  • anuga_work/production/hobart_2006/report/boundary_report.tex

    r3779 r3972  
    4242
    4343\begin{document}
    44 \title{Comparison between ANUGA and MOST}
     44\title{Comparison between ANUGA and MOST - Hobart}
    4545\maketitle
    46 \begin{table} \begin{center}
    47 \caption{Defined point locations for hobart study area.}
    48 \label{table:locations}
    49 \begin{tabular}{|l|l|l|l|}\hline
    50 \bf{Point Name} & \bf{Easting} & \bf{Northing} & \bf{Elevation}\\ \hline
    51 b2p1 & 558054.55 & 5189652.68 & 0.00 \\ \hline
    52 b2p2 & 557054.55 & 5191567.07 & 0.00 \\ \hline
    53 b2p3 & 556054.55 & 5193481.46 & 0.00 \\ \hline
    54 b2p4 & 555054.55 & 5195395.84 & 0.00 \\ \hline
    55 b2p5 & 554054.55 & 5197310.23 & 0.00 \\ \hline
    56 b2p6 & 553054.55 & 5199224.62 & 0.00 \\ \hline
    57 b2p7 & 552054.55 & 5201139.01 & 0.00 \\ \hline
    58 b2p8 & 551054.55 & 5203053.40 & 0.00 \\ \hline
    59 b2p9 & 550054.55 & 5204967.79 & 0.00 \\ \hline
    60 b2p10 & 549054.55 & 5206882.17 & 0.00 \\ \hline
    61 b2p11 & 548054.55 & 5208796.56 & 0.00 \\ \hline
    62 b2p12 & 547054.55 & 5210710.95 & 0.00 \\ \hline
    63 b2p13 & 546054.55 & 5212625.34 & 0.00 \\ \hline
    64 b2p14 & 545054.55 & 5214539.73 & 0.00 \\ \hline
    65 b2p15 & 544054.55 & 5216454.12 & 0.00 \\ \hline
    66 b2p16 & 543054.55 & 5218368.50 & 0.00 \\ \hline
    67 b1 & 583054.55 & 5208767.70 & 0.00 \\ \hline
    68 b2 & 581554.55 & 5207515.87 & 0.00 \\ \hline
    69 b3 & 580054.55 & 5206264.03 & 0.00 \\ \hline
    70 b4 & 578554.55 & 5205012.19 & 0.00 \\ \hline
    71 b5 & 577054.55 & 5203760.35 & 0.00 \\ \hline
    72 b6 & 575554.55 & 5202508.51 & 0.00 \\ \hline
    73 b7 & 574054.55 & 5201256.67 & 0.00 \\ \hline
    74 b8 & 572554.55 & 5200004.84 & 0.00 \\ \hline
    75 b9 & 571054.55 & 5198753.00 & 0.00 \\ \hline
    76 b10 & 569554.55 & 5197501.16 & 0.00 \\ \hline
    77 b11 & 568054.55 & 5196249.32 & 0.00 \\ \hline
    78 b12 & 566554.55 & 5194997.48 & 0.00 \\ \hline
    79 b13 & 565054.55 & 5193745.64 & 0.00 \\ \hline
    80 b14 & 563554.55 & 5192493.81 & 0.00 \\ \hline
    81 b15 & 562054.55 & 5191241.97 & 0.00 \\ \hline
    82 b16 & 560554.55 & 5189990.13 & 0.00 \\ \hline
    83 b17 & 559054.55 & 5188738.29 & 0.00 \\ \hline
    84 b18 & 557554.55 & 5187486.45 & 0.00 \\ \hline
    85 b19 & 556054.55 & 5186234.62 & 0.00 \\ \hline
    86 b20 & 554554.55 & 5184982.78 & 0.00 \\ \hline
    87 b21 & 553054.55 & 5183730.94 & 0.00 \\ \hline
    88 b22 & 551554.55 & 5182479.10 & 0.00 \\ \hline
    89 b23 & 550054.55 & 5181227.26 & 0.00 \\ \hline
    90 b24 & 548554.55 & 5179975.42 & 0.00 \\ \hline
    91 b25 & 547054.55 & 5178723.59 & 0.00 \\ \hline
    92 b26 & 545554.55 & 5177471.75 & 0.00 \\ \hline
    93 b27 & 544054.55 & 5176219.91 & 0.00 \\ \hline
    94 b28 & 542554.55 & 5174968.07 & 0.00 \\ \hline
    95 b29 & 541054.55 & 5173716.23 & 0.00 \\ \hline
    96 b30 & 539554.55 & 5172464.39 & 0.00 \\ \hline
    97 b31 & 538054.55 & 5171212.56 & 0.00 \\ \hline
    98 b32 & 536554.55 & 5169960.72 & 0.00 \\ \hline
    99 b33 & 535054.55 & 5168708.88 & 0.00 \\ \hline
    100 \end{tabular}
    101   \end{center}
    102  \end{table}
    103  
    10446\begin{figure}[hbt]
    105  \centerline{ \includegraphics[width=\paperwidth]{../report_figures/boundary_gauges.jpg}}
     47 \centerline{ \includegraphics[scale=0.6]{../report_figures/gauges_map_bom.jpg}}
    10648\caption{Point locations used for boundary investigation.} 
    10749\label{fig:points}
     50\end{figure}
     51\begin{figure}[hbt]
     52 \centerline{ \includegraphics[width=\paperwidth]{compare_elev.png}}
     53\caption{Elevation data for ANUGA and MOST.} 
     54\label{fig:elevation}
    10855\end{figure}
    10956\input{latexoutput_boundary}
  • anuga_work/production/hobart_2006/report/latexoutput_boundary.tex

    r3766 r3972  
    22 \centering
    33 \begin{tabular}{cc}
    4 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb2p1stage.png}&
    5 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb2p1speed.png}\\
    6 \end{tabular}
    7  \caption{Time series for stage and speed at b2p1 location (elevation -123.58m)}
    8  \label{fig:gaugeb2p1}
    9  \end{figure}
    10  
    11 \begin{figure}[hbt]
    12  \centering
    13  \begin{tabular}{cc}
    14 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb2p2stage.png}&
    15 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb2p2speed.png}\\
    16 \end{tabular}
    17  \caption{Time series for stage and speed at b2p2 location (elevation -120.05m)}
    18  \label{fig:gaugeb2p2}
    19  \end{figure}
    20  
    21 \begin{figure}[hbt]
    22  \centering
    23  \begin{tabular}{cc}
    24 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb2p3stage.png}&
    25 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb2p3speed.png}\\
    26 \end{tabular}
    27  \caption{Time series for stage and speed at b2p3 location (elevation -116.52m)}
    28  \label{fig:gaugeb2p3}
    29  \end{figure}
    30  
    31 \begin{figure}[hbt]
    32  \centering
    33  \begin{tabular}{cc}
    34 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb2p4stage.png}&
    35 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb2p4speed.png}\\
    36 \end{tabular}
    37  \caption{Time series for stage and speed at b2p4 location (elevation -113.02m)}
    38  \label{fig:gaugeb2p4}
    39  \end{figure}
    40  
    41 \begin{figure}[hbt]
    42  \centering
    43  \begin{tabular}{cc}
    44 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb2p5stage.png}&
    45 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb2p5speed.png}\\
    46 \end{tabular}
    47  \caption{Time series for stage and speed at b2p5 location (elevation -107.68m)}
    48  \label{fig:gaugeb2p5}
    49  \end{figure}
    50  
    51 \begin{figure}[hbt]
    52  \centering
    53  \begin{tabular}{cc}
    54 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb2p6stage.png}&
    55 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb2p6speed.png}\\
    56 \end{tabular}
    57  \caption{Time series for stage and speed at b2p6 location (elevation -101.23m)}
    58  \label{fig:gaugeb2p6}
    59  \end{figure}
    60  
    61 \begin{figure}[hbt]
    62  \centering
    63  \begin{tabular}{cc}
    64 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb2p7stage.png}&
    65 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb2p7speed.png}\\
    66 \end{tabular}
    67  \caption{Time series for stage and speed at b2p7 location (elevation -94.78m)}
    68  \label{fig:gaugeb2p7}
    69  \end{figure}
    70  
    71 \begin{figure}[hbt]
    72  \centering
    73  \begin{tabular}{cc}
    74 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb2p8stage.png}&
    75 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb2p8speed.png}\\
    76 \end{tabular}
    77  \caption{Time series for stage and speed at b2p8 location (elevation -88.32m)}
    78  \label{fig:gaugeb2p8}
    79  \end{figure}
    80  
    81 \begin{figure}[hbt]
    82  \centering
    83  \begin{tabular}{cc}
    84 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb2p9stage.png}&
    85 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb2p9speed.png}\\
    86 \end{tabular}
    87  \caption{Time series for stage and speed at b2p9 location (elevation -82.41m)}
    88  \label{fig:gaugeb2p9}
    89  \end{figure}
    90  
    91 \begin{figure}[hbt]
    92  \centering
    93  \begin{tabular}{cc}
    94 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb2p10stage.png}&
    95 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb2p10speed.png}\\
    96 \end{tabular}
    97  \caption{Time series for stage and speed at b2p10 location (elevation -77.64m)}
    98  \label{fig:gaugeb2p10}
    99  \end{figure}
    100  
    101 \begin{figure}[hbt]
    102  \centering
    103  \begin{tabular}{cc}
    104 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb2p11stage.png}&
    105 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb2p11speed.png}\\
    106 \end{tabular}
    107  \caption{Time series for stage and speed at b2p11 location (elevation -72.86m)}
    108  \label{fig:gaugeb2p11}
    109  \end{figure}
    110  
    111 \begin{figure}[hbt]
    112  \centering
    113  \begin{tabular}{cc}
    114 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb2p12stage.png}&
    115 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb2p12speed.png}\\
    116 \end{tabular}
    117  \caption{Time series for stage and speed at b2p12 location (elevation -68.08m)}
    118  \label{fig:gaugeb2p12}
    119  \end{figure}
    120  
    121 \begin{figure}[hbt]
    122  \centering
    123  \begin{tabular}{cc}
    124 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb2p13stage.png}&
    125 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb2p13speed.png}\\
    126 \end{tabular}
    127  \caption{Time series for stage and speed at b2p13 location (elevation -58.19m)}
    128  \label{fig:gaugeb2p13}
    129  \end{figure}
    130  
    131 \begin{figure}[hbt]
    132  \centering
    133  \begin{tabular}{cc}
    134 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb2p14stage.png}&
    135 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb2p14speed.png}\\
    136 \end{tabular}
    137  \caption{Time series for stage and speed at b2p14 location (elevation -56.88m)}
    138  \label{fig:gaugeb2p14}
    139  \end{figure}
    140  
    141 \begin{figure}[hbt]
    142  \centering
    143  \begin{tabular}{cc}
    144 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb2p15stage.png}&
    145 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb2p15speed.png}\\
    146 \end{tabular}
    147  \caption{Time series for stage and speed at b2p15 location (elevation -52.47m)}
    148  \label{fig:gaugeb2p15}
    149  \end{figure}
    150  
    151 \begin{figure}[hbt]
    152  \centering
    153  \begin{tabular}{cc}
    154 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb2p16stage.png}&
    155 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb2p16speed.png}\\
    156 \end{tabular}
    157  \caption{Time series for stage and speed at b2p16 location (elevation -44.82m)}
    158  \label{fig:gaugeb2p16}
    159  \end{figure}
    160  
    161 \begin{figure}[hbt]
    162  \centering
    163  \begin{tabular}{cc}
    164 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb1stage.png}&
    165 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb1speed.png}\\
    166 \end{tabular}
    167  \caption{Time series for stage and speed at b1 location (elevation -147.91m)}
    168  \label{fig:gaugeb1}
    169  \end{figure}
    170  
    171 \begin{figure}[hbt]
    172  \centering
    173  \begin{tabular}{cc}
    174 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb2stage.png}&
    175 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb2speed.png}\\
    176 \end{tabular}
    177  \caption{Time series for stage and speed at b2 location (elevation -142.78m)}
    178  \label{fig:gaugeb2}
    179  \end{figure}
    180  
    181 \begin{figure}[hbt]
    182  \centering
    183  \begin{tabular}{cc}
    184 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb3stage.png}&
    185 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb3speed.png}\\
    186 \end{tabular}
    187  \caption{Time series for stage and speed at b3 location (elevation -137.65m)}
    188  \label{fig:gaugeb3}
    189  \end{figure}
    190  
    191 \begin{figure}[hbt]
    192  \centering
    193  \begin{tabular}{cc}
    194 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb4stage.png}&
    195 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb4speed.png}\\
    196 \end{tabular}
    197  \caption{Time series for stage and speed at b4 location (elevation -132.53m)}
    198  \label{fig:gaugeb4}
    199  \end{figure}
    200  
    201 \begin{figure}[hbt]
    202  \centering
    203  \begin{tabular}{cc}
    204 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb5stage.png}&
    205 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb5speed.png}\\
    206 \end{tabular}
    207  \caption{Time series for stage and speed at b5 location (elevation -127.40m)}
    208  \label{fig:gaugeb5}
    209  \end{figure}
    210  
    211 \begin{figure}[hbt]
    212  \centering
    213  \begin{tabular}{cc}
    214 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb6stage.png}&
    215 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb6speed.png}\\
    216 \end{tabular}
    217  \caption{Time series for stage and speed at b6 location (elevation -127.93m)}
    218  \label{fig:gaugeb6}
    219  \end{figure}
    220  
    221 \begin{figure}[hbt]
    222  \centering
    223  \begin{tabular}{cc}
    224 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb7stage.png}&
    225 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb7speed.png}\\
    226 \end{tabular}
    227  \caption{Time series for stage and speed at b7 location (elevation -128.52m)}
    228  \label{fig:gaugeb7}
    229  \end{figure}
    230  
    231 \begin{figure}[hbt]
    232  \centering
    233  \begin{tabular}{cc}
    234 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb8stage.png}&
    235 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb8speed.png}\\
    236 \end{tabular}
    237  \caption{Time series for stage and speed at b8 location (elevation -129.12m)}
    238  \label{fig:gaugeb8}
    239  \end{figure}
    240  
    241 \begin{figure}[hbt]
    242  \centering
    243  \begin{tabular}{cc}
    244 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb9stage.png}&
    245 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb9speed.png}\\
    246 \end{tabular}
    247  \caption{Time series for stage and speed at b9 location (elevation -129.71m)}
    248  \label{fig:gaugeb9}
    249  \end{figure}
    250  
    251 \clearpage
    252 \begin{figure}[hbt]
    253  \centering
    254  \begin{tabular}{cc}
    255 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb10stage.png}&
    256 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb10speed.png}\\
    257 \end{tabular}
    258  \caption{Time series for stage and speed at b10 location (elevation -130.31m)}
    259  \label{fig:gaugeb10}
    260  \end{figure}
    261  
    262 \begin{figure}[hbt]
    263  \centering
    264  \begin{tabular}{cc}
    265 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb11stage.png}&
    266 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb11speed.png}\\
    267 \end{tabular}
    268  \caption{Time series for stage and speed at b11 location (elevation -130.89m)}
    269  \label{fig:gaugeb11}
    270  \end{figure}
    271  
    272 \begin{figure}[hbt]
    273  \centering
    274  \begin{tabular}{cc}
    275 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb12stage.png}&
    276 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb12speed.png}\\
    277 \end{tabular}
    278  \caption{Time series for stage and speed at b12 location (elevation -131.02m)}
    279  \label{fig:gaugeb12}
    280  \end{figure}
    281  
    282 \begin{figure}[hbt]
    283  \centering
    284  \begin{tabular}{cc}
    285 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb13stage.png}&
    286 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb13speed.png}\\
    287 \end{tabular}
    288  \caption{Time series for stage and speed at b13 location (elevation -130.41m)}
    289  \label{fig:gaugeb13}
    290  \end{figure}
    291  
    292 \begin{figure}[hbt]
    293  \centering
    294  \begin{tabular}{cc}
    295 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb14stage.png}&
    296 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb14speed.png}\\
    297 \end{tabular}
    298  \caption{Time series for stage and speed at b14 location (elevation -129.53m)}
    299  \label{fig:gaugeb14}
    300  \end{figure}
    301  
    302 \begin{figure}[hbt]
    303  \centering
    304  \begin{tabular}{cc}
    305 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb15stage.png}&
    306 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb15speed.png}\\
    307 \end{tabular}
    308  \caption{Time series for stage and speed at b15 location (elevation -128.47m)}
    309  \label{fig:gaugeb15}
    310  \end{figure}
    311  
    312 \begin{figure}[hbt]
    313  \centering
    314  \begin{tabular}{cc}
    315 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb16stage.png}&
    316 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb16speed.png}\\
    317 \end{tabular}
    318  \caption{Time series for stage and speed at b16 location (elevation -127.29m)}
    319  \label{fig:gaugeb16}
    320  \end{figure}
    321  
    322 \begin{figure}[hbt]
    323  \centering
    324  \begin{tabular}{cc}
    325 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb17stage.png}&
    326 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb17speed.png}\\
    327 \end{tabular}
    328  \caption{Time series for stage and speed at b17 location (elevation -126.11m)}
    329  \label{fig:gaugeb17}
    330  \end{figure}
    331  
    332 \begin{figure}[hbt]
    333  \centering
    334  \begin{tabular}{cc}
    335 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb18stage.png}&
    336 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb18speed.png}\\
    337 \end{tabular}
    338  \caption{Time series for stage and speed at b18 location (elevation -124.94m)}
    339  \label{fig:gaugeb18}
    340  \end{figure}
    341  
    342 \begin{figure}[hbt]
    343  \centering
    344  \begin{tabular}{cc}
    345 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb19stage.png}&
    346 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb19speed.png}\\
    347 \end{tabular}
    348  \caption{Time series for stage and speed at b19 location (elevation -123.76m)}
    349  \label{fig:gaugeb19}
    350  \end{figure}
    351  
    352 \begin{figure}[hbt]
    353  \centering
    354  \begin{tabular}{cc}
    355 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb20stage.png}&
    356 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb20speed.png}\\
    357 \end{tabular}
    358  \caption{Time series for stage and speed at b20 location (elevation -122.68m)}
    359  \label{fig:gaugeb20}
    360  \end{figure}
    361  
    362 \begin{figure}[hbt]
    363  \centering
    364  \begin{tabular}{cc}
    365 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb21stage.png}&
    366 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb21speed.png}\\
    367 \end{tabular}
    368  \caption{Time series for stage and speed at b21 location (elevation -121.71m)}
    369  \label{fig:gaugeb21}
    370  \end{figure}
    371  
    372 \begin{figure}[hbt]
    373  \centering
    374  \begin{tabular}{cc}
    375 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb22stage.png}&
    376 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb22speed.png}\\
    377 \end{tabular}
    378  \caption{Time series for stage and speed at b22 location (elevation -120.73m)}
    379  \label{fig:gaugeb22}
    380  \end{figure}
    381  
    382 \begin{figure}[hbt]
    383  \centering
    384  \begin{tabular}{cc}
    385 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb23stage.png}&
    386 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb23speed.png}\\
    387 \end{tabular}
    388  \caption{Time series for stage and speed at b23 location (elevation -119.99m)}
    389  \label{fig:gaugeb23}
    390  \end{figure}
    391  
    392 \begin{figure}[hbt]
    393  \centering
    394  \begin{tabular}{cc}
    395 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb24stage.png}&
    396 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb24speed.png}\\
    397 \end{tabular}
    398  \caption{Time series for stage and speed at b24 location (elevation -119.77m)}
    399  \label{fig:gaugeb24}
    400  \end{figure}
    401  
    402 \begin{figure}[hbt]
    403  \centering
    404  \begin{tabular}{cc}
    405 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb25stage.png}&
    406 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb25speed.png}\\
    407 \end{tabular}
    408  \caption{Time series for stage and speed at b25 location (elevation -119.54m)}
    409  \label{fig:gaugeb25}
    410  \end{figure}
    411  
    412 \begin{figure}[hbt]
    413  \centering
    414  \begin{tabular}{cc}
    415 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb26stage.png}&
    416 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb26speed.png}\\
    417 \end{tabular}
    418  \caption{Time series for stage and speed at b26 location (elevation -119.32m)}
    419  \label{fig:gaugeb26}
    420  \end{figure}
    421  
    422 \begin{figure}[hbt]
    423  \centering
    424  \begin{tabular}{cc}
    425 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb27stage.png}&
    426 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb27speed.png}\\
    427 \end{tabular}
    428  \caption{Time series for stage and speed at b27 location (elevation -118.98m)}
    429  \label{fig:gaugeb27}
    430  \end{figure}
    431  
    432 \begin{figure}[hbt]
    433  \centering
    434  \begin{tabular}{cc}
    435 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb28stage.png}&
    436 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb28speed.png}\\
    437 \end{tabular}
    438  \caption{Time series for stage and speed at b28 location (elevation -118.28m)}
    439  \label{fig:gaugeb28}
    440  \end{figure}
    441  
    442 \begin{figure}[hbt]
    443  \centering
    444  \begin{tabular}{cc}
    445 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb29stage.png}&
    446 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb29speed.png}\\
    447 \end{tabular}
    448  \caption{Time series for stage and speed at b29 location (elevation -117.57m)}
    449  \label{fig:gaugeb29}
    450  \end{figure}
    451  
    452 \begin{figure}[hbt]
    453  \centering
    454  \begin{tabular}{cc}
    455 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb30stage.png}&
    456 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb30speed.png}\\
    457 \end{tabular}
    458  \caption{Time series for stage and speed at b30 location (elevation -116.87m)}
    459  \label{fig:gaugeb30}
    460  \end{figure}
    461  
    462 \begin{figure}[hbt]
    463  \centering
    464  \begin{tabular}{cc}
    465 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb31stage.png}&
    466 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb31speed.png}\\
    467 \end{tabular}
    468  \caption{Time series for stage and speed at b31 location (elevation -116.17m)}
    469  \label{fig:gaugeb31}
    470  \end{figure}
    471  
    472 \begin{figure}[hbt]
    473  \centering
    474  \begin{tabular}{cc}
    475 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb32stage.png}&
    476 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb32speed.png}\\
    477 \end{tabular}
    478  \caption{Time series for stage and speed at b32 location (elevation -115.47m)}
    479  \label{fig:gaugeb32}
    480  \end{figure}
    481  
    482 \begin{figure}[hbt]
    483  \centering
    484  \begin{tabular}{cc}
    485 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb33stage.png}&
    486 \includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugeb33speed.png}\\
    487 \end{tabular}
    488  \caption{Time series for stage and speed at b33 location (elevation -114.77m)}
    489  \label{fig:gaugeb33}
    490  \end{figure}
    491  
     4\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep1stage.png}&
     5\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep1speed.png}\\
     6\end{tabular}
     7 \caption{Time series for stage and speed at p1 location (elevation -123.41m)}
     8 \label{fig:gaugep1}
     9 \end{figure}
     10 
     11\begin{figure}[hbt]
     12 \centering
     13 \begin{tabular}{cc}
     14\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep2stage.png}&
     15\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep2speed.png}\\
     16\end{tabular}
     17 \caption{Time series for stage and speed at p2 location (elevation -122.60m)}
     18 \label{fig:gaugep2}
     19 \end{figure}
     20 
     21\begin{figure}[hbt]
     22 \centering
     23 \begin{tabular}{cc}
     24\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep3stage.png}&
     25\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep3speed.png}\\
     26\end{tabular}
     27 \caption{Time series for stage and speed at p3 location (elevation -121.82m)}
     28 \label{fig:gaugep3}
     29 \end{figure}
     30 
     31\begin{figure}[hbt]
     32 \centering
     33 \begin{tabular}{cc}
     34\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep4stage.png}&
     35\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep4speed.png}\\
     36\end{tabular}
     37 \caption{Time series for stage and speed at p4 location (elevation -121.05m)}
     38 \label{fig:gaugep4}
     39 \end{figure}
     40 
     41\begin{figure}[hbt]
     42 \centering
     43 \begin{tabular}{cc}
     44\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep5stage.png}&
     45\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep5speed.png}\\
     46\end{tabular}
     47 \caption{Time series for stage and speed at p5 location (elevation -120.40m)}
     48 \label{fig:gaugep5}
     49 \end{figure}
     50 
     51\begin{figure}[hbt]
     52 \centering
     53 \begin{tabular}{cc}
     54\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep6stage.png}&
     55\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep6speed.png}\\
     56\end{tabular}
     57 \caption{Time series for stage and speed at p6 location (elevation -119.91m)}
     58 \label{fig:gaugep6}
     59 \end{figure}
     60 
     61\clearpage
     62\begin{figure}[hbt]
     63 \centering
     64 \begin{tabular}{cc}
     65\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep7stage.png}&
     66\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep7speed.png}\\
     67\end{tabular}
     68 \caption{Time series for stage and speed at p7 location (elevation -119.35m)}
     69 \label{fig:gaugep7}
     70 \end{figure}
     71 
     72\begin{figure}[hbt]
     73 \centering
     74 \begin{tabular}{cc}
     75\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep8stage.png}&
     76\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep8speed.png}\\
     77\end{tabular}
     78 \caption{Time series for stage and speed at p8 location (elevation -118.80m)}
     79 \label{fig:gaugep8}
     80 \end{figure}
     81 
     82\begin{figure}[hbt]
     83 \centering
     84 \begin{tabular}{cc}
     85\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep9stage.png}&
     86\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep9speed.png}\\
     87\end{tabular}
     88 \caption{Time series for stage and speed at p9 location (elevation -118.31m)}
     89 \label{fig:gaugep9}
     90 \end{figure}
     91 
     92\begin{figure}[hbt]
     93 \centering
     94 \begin{tabular}{cc}
     95\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep10stage.png}&
     96\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep10speed.png}\\
     97\end{tabular}
     98 \caption{Time series for stage and speed at p10 location (elevation -118.12m)}
     99 \label{fig:gaugep10}
     100 \end{figure}
     101 
     102\begin{figure}[hbt]
     103 \centering
     104 \begin{tabular}{cc}
     105\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep11stage.png}&
     106\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep11speed.png}\\
     107\end{tabular}
     108 \caption{Time series for stage and speed at p11 location (elevation -117.94m)}
     109 \label{fig:gaugep11}
     110 \end{figure}
     111 
     112\begin{figure}[hbt]
     113 \centering
     114 \begin{tabular}{cc}
     115\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep12stage.png}&
     116\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep12speed.png}\\
     117\end{tabular}
     118 \caption{Time series for stage and speed at p12 location (elevation -117.74m)}
     119 \label{fig:gaugep12}
     120 \end{figure}
     121 
     122\clearpage
     123\begin{figure}[hbt]
     124 \centering
     125 \begin{tabular}{cc}
     126\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep13stage.png}&
     127\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep13speed.png}\\
     128\end{tabular}
     129 \caption{Time series for stage and speed at p13 location (elevation -117.27m)}
     130 \label{fig:gaugep13}
     131 \end{figure}
     132 
     133\begin{figure}[hbt]
     134 \centering
     135 \begin{tabular}{cc}
     136\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep14stage.png}&
     137\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep14speed.png}\\
     138\end{tabular}
     139 \caption{Time series for stage and speed at p14 location (elevation -116.72m)}
     140 \label{fig:gaugep14}
     141 \end{figure}
     142 
     143\begin{figure}[hbt]
     144 \centering
     145 \begin{tabular}{cc}
     146\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep15stage.png}&
     147\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep15speed.png}\\
     148\end{tabular}
     149 \caption{Time series for stage and speed at p15 location (elevation -116.17m)}
     150 \label{fig:gaugep15}
     151 \end{figure}
     152 
     153\begin{figure}[hbt]
     154 \centering
     155 \begin{tabular}{cc}
     156\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep16stage.png}&
     157\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep16speed.png}\\
     158\end{tabular}
     159 \caption{Time series for stage and speed at p16 location (elevation -115.59m)}
     160 \label{fig:gaugep16}
     161 \end{figure}
     162 
     163\begin{figure}[hbt]
     164 \centering
     165 \begin{tabular}{cc}
     166\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep17stage.png}&
     167\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep17speed.png}\\
     168\end{tabular}
     169 \caption{Time series for stage and speed at p17 location (elevation -113.81m)}
     170 \label{fig:gaugep17}
     171 \end{figure}
     172 
     173\begin{figure}[hbt]
     174 \centering
     175 \begin{tabular}{cc}
     176\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep18stage.png}&
     177\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep18speed.png}\\
     178\end{tabular}
     179 \caption{Time series for stage and speed at p18 location (elevation -112.03m)}
     180 \label{fig:gaugep18}
     181 \end{figure}
     182 
     183\clearpage
     184\begin{figure}[hbt]
     185 \centering
     186 \begin{tabular}{cc}
     187\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep19stage.png}&
     188\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep19speed.png}\\
     189\end{tabular}
     190 \caption{Time series for stage and speed at p19 location (elevation -110.25m)}
     191 \label{fig:gaugep19}
     192 \end{figure}
     193 
     194\begin{figure}[hbt]
     195 \centering
     196 \begin{tabular}{cc}
     197\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep20stage.png}&
     198\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep20speed.png}\\
     199\end{tabular}
     200 \caption{Time series for stage and speed at p20 location (elevation -108.47m)}
     201 \label{fig:gaugep20}
     202 \end{figure}
     203 
     204\begin{figure}[hbt]
     205 \centering
     206 \begin{tabular}{cc}
     207\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep21stage.png}&
     208\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep21speed.png}\\
     209\end{tabular}
     210 \caption{Time series for stage and speed at p21 location (elevation -106.80m)}
     211 \label{fig:gaugep21}
     212 \end{figure}
     213 
     214\begin{figure}[hbt]
     215 \centering
     216 \begin{tabular}{cc}
     217\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep22stage.png}&
     218\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep22speed.png}\\
     219\end{tabular}
     220 \caption{Time series for stage and speed at p22 location (elevation -106.60m)}
     221 \label{fig:gaugep22}
     222 \end{figure}
     223 
     224\begin{figure}[hbt]
     225 \centering
     226 \begin{tabular}{cc}
     227\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep23stage.png}&
     228\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep23speed.png}\\
     229\end{tabular}
     230 \caption{Time series for stage and speed at p23 location (elevation -107.32m)}
     231 \label{fig:gaugep23}
     232 \end{figure}
     233 
     234\begin{figure}[hbt]
     235 \centering
     236 \begin{tabular}{cc}
     237\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep24stage.png}&
     238\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep24speed.png}\\
     239\end{tabular}
     240 \caption{Time series for stage and speed at p24 location (elevation -108.29m)}
     241 \label{fig:gaugep24}
     242 \end{figure}
     243 
     244\clearpage
     245\begin{figure}[hbt]
     246 \centering
     247 \begin{tabular}{cc}
     248\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep25stage.png}&
     249\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep25speed.png}\\
     250\end{tabular}
     251 \caption{Time series for stage and speed at p25 location (elevation -109.25m)}
     252 \label{fig:gaugep25}
     253 \end{figure}
     254 
     255\begin{figure}[hbt]
     256 \centering
     257 \begin{tabular}{cc}
     258\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep26stage.png}&
     259\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep26speed.png}\\
     260\end{tabular}
     261 \caption{Time series for stage and speed at p26 location (elevation -108.69m)}
     262 \label{fig:gaugep26}
     263 \end{figure}
     264 
     265\begin{figure}[hbt]
     266 \centering
     267 \begin{tabular}{cc}
     268\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep27stage.png}&
     269\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep27speed.png}\\
     270\end{tabular}
     271 \caption{Time series for stage and speed at p27 location (elevation -107.20m)}
     272 \label{fig:gaugep27}
     273 \end{figure}
     274 
     275\begin{figure}[hbt]
     276 \centering
     277 \begin{tabular}{cc}
     278\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep28stage.png}&
     279\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep28speed.png}\\
     280\end{tabular}
     281 \caption{Time series for stage and speed at p28 location (elevation -105.51m)}
     282 \label{fig:gaugep28}
     283 \end{figure}
     284 
     285\begin{figure}[hbt]
     286 \centering
     287 \begin{tabular}{cc}
     288\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep29stage.png}&
     289\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep29speed.png}\\
     290\end{tabular}
     291 \caption{Time series for stage and speed at p29 location (elevation -103.81m)}
     292 \label{fig:gaugep29}
     293 \end{figure}
     294 
     295\begin{figure}[hbt]
     296 \centering
     297 \begin{tabular}{cc}
     298\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep30stage.png}&
     299\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep30speed.png}\\
     300\end{tabular}
     301 \caption{Time series for stage and speed at p30 location (elevation -102.20m)}
     302 \label{fig:gaugep30}
     303 \end{figure}
     304 
     305\clearpage
     306\begin{figure}[hbt]
     307 \centering
     308 \begin{tabular}{cc}
     309\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep31stage.png}&
     310\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep31speed.png}\\
     311\end{tabular}
     312 \caption{Time series for stage and speed at p31 location (elevation -101.36m)}
     313 \label{fig:gaugep31}
     314 \end{figure}
     315 
     316\begin{figure}[hbt]
     317 \centering
     318 \begin{tabular}{cc}
     319\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep32stage.png}&
     320\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep32speed.png}\\
     321\end{tabular}
     322 \caption{Time series for stage and speed at p32 location (elevation -100.59m)}
     323 \label{fig:gaugep32}
     324 \end{figure}
     325 
     326\begin{figure}[hbt]
     327 \centering
     328 \begin{tabular}{cc}
     329\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep33stage.png}&
     330\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep33speed.png}\\
     331\end{tabular}
     332 \caption{Time series for stage and speed at p33 location (elevation -99.82m)}
     333 \label{fig:gaugep33}
     334 \end{figure}
     335 
     336\begin{figure}[hbt]
     337 \centering
     338 \begin{tabular}{cc}
     339\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep34stage.png}&
     340\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep34speed.png}\\
     341\end{tabular}
     342 \caption{Time series for stage and speed at p34 location (elevation -99.05m)}
     343 \label{fig:gaugep34}
     344 \end{figure}
     345 
     346\begin{figure}[hbt]
     347 \centering
     348 \begin{tabular}{cc}
     349\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep35stage.png}&
     350\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep35speed.png}\\
     351\end{tabular}
     352 \caption{Time series for stage and speed at p35 location (elevation -98.56m)}
     353 \label{fig:gaugep35}
     354 \end{figure}
     355 
     356\begin{figure}[hbt]
     357 \centering
     358 \begin{tabular}{cc}
     359\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep36stage.png}&
     360\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep36speed.png}\\
     361\end{tabular}
     362 \caption{Time series for stage and speed at p36 location (elevation -98.11m)}
     363 \label{fig:gaugep36}
     364 \end{figure}
     365 
     366\clearpage
     367\begin{figure}[hbt]
     368 \centering
     369 \begin{tabular}{cc}
     370\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep37stage.png}&
     371\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep37speed.png}\\
     372\end{tabular}
     373 \caption{Time series for stage and speed at p37 location (elevation -97.66m)}
     374 \label{fig:gaugep37}
     375 \end{figure}
     376 
     377\begin{figure}[hbt]
     378 \centering
     379 \begin{tabular}{cc}
     380\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep38stage.png}&
     381\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep38speed.png}\\
     382\end{tabular}
     383 \caption{Time series for stage and speed at p38 location (elevation -97.59m)}
     384 \label{fig:gaugep38}
     385 \end{figure}
     386 
     387\begin{figure}[hbt]
     388 \centering
     389 \begin{tabular}{cc}
     390\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep40stage.png}&
     391\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep40speed.png}\\
     392\end{tabular}
     393 \caption{Time series for stage and speed at p40 location (elevation -97.68m)}
     394 \label{fig:gaugep40}
     395 \end{figure}
     396 
     397\begin{figure}[hbt]
     398 \centering
     399 \begin{tabular}{cc}
     400\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep41stage.png}&
     401\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep41speed.png}\\
     402\end{tabular}
     403 \caption{Time series for stage and speed at p41 location (elevation -97.93m)}
     404 \label{fig:gaugep41}
     405 \end{figure}
     406 
     407\begin{figure}[hbt]
     408 \centering
     409 \begin{tabular}{cc}
     410\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep42stage.png}&
     411\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep42speed.png}\\
     412\end{tabular}
     413 \caption{Time series for stage and speed at p42 location (elevation -98.19m)}
     414 \label{fig:gaugep42}
     415 \end{figure}
     416 
     417\begin{figure}[hbt]
     418 \centering
     419 \begin{tabular}{cc}
     420\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep43stage.png}&
     421\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep43speed.png}\\
     422\end{tabular}
     423 \caption{Time series for stage and speed at p43 location (elevation -98.04m)}
     424 \label{fig:gaugep43}
     425 \end{figure}
     426 
     427\clearpage
     428\begin{figure}[hbt]
     429 \centering
     430 \begin{tabular}{cc}
     431\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep44stage.png}&
     432\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep44speed.png}\\
     433\end{tabular}
     434 \caption{Time series for stage and speed at p44 location (elevation -97.82m)}
     435 \label{fig:gaugep44}
     436 \end{figure}
     437 
     438\begin{figure}[hbt]
     439 \centering
     440 \begin{tabular}{cc}
     441\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep45stage.png}&
     442\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep45speed.png}\\
     443\end{tabular}
     444 \caption{Time series for stage and speed at p45 location (elevation -97.48m)}
     445 \label{fig:gaugep45}
     446 \end{figure}
     447 
     448\begin{figure}[hbt]
     449 \centering
     450 \begin{tabular}{cc}
     451\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep46stage.png}&
     452\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep46speed.png}\\
     453\end{tabular}
     454 \caption{Time series for stage and speed at p46 location (elevation -96.56m)}
     455 \label{fig:gaugep46}
     456 \end{figure}
     457 
     458\begin{figure}[hbt]
     459 \centering
     460 \begin{tabular}{cc}
     461\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep47stage.png}&
     462\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep47speed.png}\\
     463\end{tabular}
     464 \caption{Time series for stage and speed at p47 location (elevation -95.57m)}
     465 \label{fig:gaugep47}
     466 \end{figure}
     467 
     468\begin{figure}[hbt]
     469 \centering
     470 \begin{tabular}{cc}
     471\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep48stage.png}&
     472\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep48speed.png}\\
     473\end{tabular}
     474 \caption{Time series for stage and speed at p48 location (elevation -94.58m)}
     475 \label{fig:gaugep48}
     476 \end{figure}
     477 
     478\begin{figure}[hbt]
     479 \centering
     480 \begin{tabular}{cc}
     481\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep49stage.png}&
     482\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep49speed.png}\\
     483\end{tabular}
     484 \caption{Time series for stage and speed at p49 location (elevation -94.05m)}
     485 \label{fig:gaugep49}
     486 \end{figure}
     487 
     488\clearpage
     489\begin{figure}[hbt]
     490 \centering
     491 \begin{tabular}{cc}
     492\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep50stage.png}&
     493\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep50speed.png}\\
     494\end{tabular}
     495 \caption{Time series for stage and speed at p50 location (elevation -93.55m)}
     496 \label{fig:gaugep50}
     497 \end{figure}
     498 
     499\begin{figure}[hbt]
     500 \centering
     501 \begin{tabular}{cc}
     502\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep51stage.png}&
     503\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep51speed.png}\\
     504\end{tabular}
     505 \caption{Time series for stage and speed at p51 location (elevation -93.05m)}
     506 \label{fig:gaugep51}
     507 \end{figure}
     508 
     509\begin{figure}[hbt]
     510 \centering
     511 \begin{tabular}{cc}
     512\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep52stage.png}&
     513\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep52speed.png}\\
     514\end{tabular}
     515 \caption{Time series for stage and speed at p52 location (elevation -92.54m)}
     516 \label{fig:gaugep52}
     517 \end{figure}
     518 
     519\begin{figure}[hbt]
     520 \centering
     521 \begin{tabular}{cc}
     522\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep53stage.png}&
     523\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep53speed.png}\\
     524\end{tabular}
     525 \caption{Time series for stage and speed at p53 location (elevation -92.00m)}
     526 \label{fig:gaugep53}
     527 \end{figure}
     528 
     529\begin{figure}[hbt]
     530 \centering
     531 \begin{tabular}{cc}
     532\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep54stage.png}&
     533\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep54speed.png}\\
     534\end{tabular}
     535 \caption{Time series for stage and speed at p54 location (elevation -91.39m)}
     536 \label{fig:gaugep54}
     537 \end{figure}
     538 
     539\begin{figure}[hbt]
     540 \centering
     541 \begin{tabular}{cc}
     542\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep55stage.png}&
     543\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep55speed.png}\\
     544\end{tabular}
     545 \caption{Time series for stage and speed at p55 location (elevation -90.51m)}
     546 \label{fig:gaugep55}
     547 \end{figure}
     548 
     549\clearpage
     550\begin{figure}[hbt]
     551 \centering
     552 \begin{tabular}{cc}
     553\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep56stage.png}&
     554\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep56speed.png}\\
     555\end{tabular}
     556 \caption{Time series for stage and speed at p56 location (elevation -89.67m)}
     557 \label{fig:gaugep56}
     558 \end{figure}
     559 
     560\begin{figure}[hbt]
     561 \centering
     562 \begin{tabular}{cc}
     563\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep57stage.png}&
     564\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep57speed.png}\\
     565\end{tabular}
     566 \caption{Time series for stage and speed at p57 location (elevation -88.90m)}
     567 \label{fig:gaugep57}
     568 \end{figure}
     569 
     570\begin{figure}[hbt]
     571 \centering
     572 \begin{tabular}{cc}
     573\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep58stage.png}&
     574\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep58speed.png}\\
     575\end{tabular}
     576 \caption{Time series for stage and speed at p58 location (elevation -87.98m)}
     577 \label{fig:gaugep58}
     578 \end{figure}
     579 
     580\begin{figure}[hbt]
     581 \centering
     582 \begin{tabular}{cc}
     583\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep59stage.png}&
     584\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep59speed.png}\\
     585\end{tabular}
     586 \caption{Time series for stage and speed at p59 location (elevation -86.75m)}
     587 \label{fig:gaugep59}
     588 \end{figure}
     589 
     590\begin{figure}[hbt]
     591 \centering
     592 \begin{tabular}{cc}
     593\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep60stage.png}&
     594\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep60speed.png}\\
     595\end{tabular}
     596 \caption{Time series for stage and speed at p60 location (elevation -85.49m)}
     597 \label{fig:gaugep60}
     598 \end{figure}
     599 
     600\begin{figure}[hbt]
     601 \centering
     602 \begin{tabular}{cc}
     603\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep61stage.png}&
     604\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep61speed.png}\\
     605\end{tabular}
     606 \caption{Time series for stage and speed at p61 location (elevation -84.82m)}
     607 \label{fig:gaugep61}
     608 \end{figure}
     609 
     610\clearpage
     611\begin{figure}[hbt]
     612 \centering
     613 \begin{tabular}{cc}
     614\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep62stage.png}&
     615\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep62speed.png}\\
     616\end{tabular}
     617 \caption{Time series for stage and speed at p62 location (elevation -84.79m)}
     618 \label{fig:gaugep62}
     619 \end{figure}
     620 
     621\begin{figure}[hbt]
     622 \centering
     623 \begin{tabular}{cc}
     624\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep63stage.png}&
     625\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep63speed.png}\\
     626\end{tabular}
     627 \caption{Time series for stage and speed at p63 location (elevation -84.71m)}
     628 \label{fig:gaugep63}
     629 \end{figure}
     630 
     631\begin{figure}[hbt]
     632 \centering
     633 \begin{tabular}{cc}
     634\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep64stage.png}&
     635\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep64speed.png}\\
     636\end{tabular}
     637 \caption{Time series for stage and speed at p64 location (elevation -84.77m)}
     638 \label{fig:gaugep64}
     639 \end{figure}
     640 
     641\begin{figure}[hbt]
     642 \centering
     643 \begin{tabular}{cc}
     644\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep65stage.png}&
     645\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep65speed.png}\\
     646\end{tabular}
     647 \caption{Time series for stage and speed at p65 location (elevation -84.83m)}
     648 \label{fig:gaugep65}
     649 \end{figure}
     650 
     651\begin{figure}[hbt]
     652 \centering
     653 \begin{tabular}{cc}
     654\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep66stage.png}&
     655\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep66speed.png}\\
     656\end{tabular}
     657 \caption{Time series for stage and speed at p66 location (elevation -84.88m)}
     658 \label{fig:gaugep66}
     659 \end{figure}
     660 
     661\begin{figure}[hbt]
     662 \centering
     663 \begin{tabular}{cc}
     664\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep67stage.png}&
     665\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep67speed.png}\\
     666\end{tabular}
     667 \caption{Time series for stage and speed at p67 location (elevation -84.60m)}
     668 \label{fig:gaugep67}
     669 \end{figure}
     670 
     671\clearpage
     672\begin{figure}[hbt]
     673 \centering
     674 \begin{tabular}{cc}
     675\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep68stage.png}&
     676\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep68speed.png}\\
     677\end{tabular}
     678 \caption{Time series for stage and speed at p68 location (elevation -83.38m)}
     679 \label{fig:gaugep68}
     680 \end{figure}
     681 
     682\begin{figure}[hbt]
     683 \centering
     684 \begin{tabular}{cc}
     685\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep69stage.png}&
     686\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep69speed.png}\\
     687\end{tabular}
     688 \caption{Time series for stage and speed at p69 location (elevation -82.46m)}
     689 \label{fig:gaugep69}
     690 \end{figure}
     691 
     692\begin{figure}[hbt]
     693 \centering
     694 \begin{tabular}{cc}
     695\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep70stage.png}&
     696\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep70speed.png}\\
     697\end{tabular}
     698 \caption{Time series for stage and speed at p70 location (elevation -81.85m)}
     699 \label{fig:gaugep70}
     700 \end{figure}
     701 
     702\begin{figure}[hbt]
     703 \centering
     704 \begin{tabular}{cc}
     705\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep71stage.png}&
     706\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep71speed.png}\\
     707\end{tabular}
     708 \caption{Time series for stage and speed at p71 location (elevation -81.05m)}
     709 \label{fig:gaugep71}
     710 \end{figure}
     711 
     712\begin{figure}[hbt]
     713 \centering
     714 \begin{tabular}{cc}
     715\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep72stage.png}&
     716\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep72speed.png}\\
     717\end{tabular}
     718 \caption{Time series for stage and speed at p72 location (elevation -80.14m)}
     719 \label{fig:gaugep72}
     720 \end{figure}
     721 
     722\begin{figure}[hbt]
     723 \centering
     724 \begin{tabular}{cc}
     725\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep73stage.png}&
     726\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep73speed.png}\\
     727\end{tabular}
     728 \caption{Time series for stage and speed at p73 location (elevation -79.16m)}
     729 \label{fig:gaugep73}
     730 \end{figure}
     731 
     732\clearpage
     733\begin{figure}[hbt]
     734 \centering
     735 \begin{tabular}{cc}
     736\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep74stage.png}&
     737\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep74speed.png}\\
     738\end{tabular}
     739 \caption{Time series for stage and speed at p74 location (elevation -78.16m)}
     740 \label{fig:gaugep74}
     741 \end{figure}
     742 
     743\begin{figure}[hbt]
     744 \centering
     745 \begin{tabular}{cc}
     746\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep75stage.png}&
     747\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep75speed.png}\\
     748\end{tabular}
     749 \caption{Time series for stage and speed at p75 location (elevation -77.15m)}
     750 \label{fig:gaugep75}
     751 \end{figure}
     752 
     753\begin{figure}[hbt]
     754 \centering
     755 \begin{tabular}{cc}
     756\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep76stage.png}&
     757\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep76speed.png}\\
     758\end{tabular}
     759 \caption{Time series for stage and speed at p76 location (elevation -76.14m)}
     760 \label{fig:gaugep76}
     761 \end{figure}
     762 
     763\begin{figure}[hbt]
     764 \centering
     765 \begin{tabular}{cc}
     766\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep77stage.png}&
     767\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep77speed.png}\\
     768\end{tabular}
     769 \caption{Time series for stage and speed at p77 location (elevation -75.13m)}
     770 \label{fig:gaugep77}
     771 \end{figure}
     772 
     773\begin{figure}[hbt]
     774 \centering
     775 \begin{tabular}{cc}
     776\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep78stage.png}&
     777\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep78speed.png}\\
     778\end{tabular}
     779 \caption{Time series for stage and speed at p78 location (elevation -74.11m)}
     780 \label{fig:gaugep78}
     781 \end{figure}
     782 
     783\begin{figure}[hbt]
     784 \centering
     785 \begin{tabular}{cc}
     786\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep79stage.png}&
     787\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep79speed.png}\\
     788\end{tabular}
     789 \caption{Time series for stage and speed at p79 location (elevation -73.07m)}
     790 \label{fig:gaugep79}
     791 \end{figure}
     792 
     793\clearpage
     794\begin{figure}[hbt]
     795 \centering
     796 \begin{tabular}{cc}
     797\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep80stage.png}&
     798\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep80speed.png}\\
     799\end{tabular}
     800 \caption{Time series for stage and speed at p80 location (elevation -72.04m)}
     801 \label{fig:gaugep80}
     802 \end{figure}
     803 
     804\begin{figure}[hbt]
     805 \centering
     806 \begin{tabular}{cc}
     807\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep81stage.png}&
     808\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep81speed.png}\\
     809\end{tabular}
     810 \caption{Time series for stage and speed at p81 location (elevation -71.01m)}
     811 \label{fig:gaugep81}
     812 \end{figure}
     813 
     814\begin{figure}[hbt]
     815 \centering
     816 \begin{tabular}{cc}
     817\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep82stage.png}&
     818\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep82speed.png}\\
     819\end{tabular}
     820 \caption{Time series for stage and speed at p82 location (elevation -69.99m)}
     821 \label{fig:gaugep82}
     822 \end{figure}
     823 
     824\begin{figure}[hbt]
     825 \centering
     826 \begin{tabular}{cc}
     827\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep83stage.png}&
     828\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep83speed.png}\\
     829\end{tabular}
     830 \caption{Time series for stage and speed at p83 location (elevation -68.96m)}
     831 \label{fig:gaugep83}
     832 \end{figure}
     833 
     834\begin{figure}[hbt]
     835 \centering
     836 \begin{tabular}{cc}
     837\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep84stage.png}&
     838\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep84speed.png}\\
     839\end{tabular}
     840 \caption{Time series for stage and speed at p84 location (elevation -67.92m)}
     841 \label{fig:gaugep84}
     842 \end{figure}
     843 
     844\begin{figure}[hbt]
     845 \centering
     846 \begin{tabular}{cc}
     847\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep85stage.png}&
     848\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep85speed.png}\\
     849\end{tabular}
     850 \caption{Time series for stage and speed at p85 location (elevation -66.88m)}
     851 \label{fig:gaugep85}
     852 \end{figure}
     853 
     854\clearpage
     855\begin{figure}[hbt]
     856 \centering
     857 \begin{tabular}{cc}
     858\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep86stage.png}&
     859\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep86speed.png}\\
     860\end{tabular}
     861 \caption{Time series for stage and speed at p86 location (elevation -65.83m)}
     862 \label{fig:gaugep86}
     863 \end{figure}
     864 
     865\begin{figure}[hbt]
     866 \centering
     867 \begin{tabular}{cc}
     868\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep87stage.png}&
     869\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep87speed.png}\\
     870\end{tabular}
     871 \caption{Time series for stage and speed at p87 location (elevation -64.78m)}
     872 \label{fig:gaugep87}
     873 \end{figure}
     874 
     875\begin{figure}[hbt]
     876 \centering
     877 \begin{tabular}{cc}
     878\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep88stage.png}&
     879\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep88speed.png}\\
     880\end{tabular}
     881 \caption{Time series for stage and speed at p88 location (elevation -63.72m)}
     882 \label{fig:gaugep88}
     883 \end{figure}
     884 
     885\begin{figure}[hbt]
     886 \centering
     887 \begin{tabular}{cc}
     888\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep89stage.png}&
     889\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep89speed.png}\\
     890\end{tabular}
     891 \caption{Time series for stage and speed at p89 location (elevation -62.67m)}
     892 \label{fig:gaugep89}
     893 \end{figure}
     894 
     895\begin{figure}[hbt]
     896 \centering
     897 \begin{tabular}{cc}
     898\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep90stage.png}&
     899\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep90speed.png}\\
     900\end{tabular}
     901 \caption{Time series for stage and speed at p90 location (elevation -61.59m)}
     902 \label{fig:gaugep90}
     903 \end{figure}
     904 
     905\begin{figure}[hbt]
     906 \centering
     907 \begin{tabular}{cc}
     908\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep91stage.png}&
     909\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep91speed.png}\\
     910\end{tabular}
     911 \caption{Time series for stage and speed at p91 location (elevation -60.51m)}
     912 \label{fig:gaugep91}
     913 \end{figure}
     914 
     915\clearpage
     916\begin{figure}[hbt]
     917 \centering
     918 \begin{tabular}{cc}
     919\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep92stage.png}&
     920\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep92speed.png}\\
     921\end{tabular}
     922 \caption{Time series for stage and speed at p92 location (elevation -59.44m)}
     923 \label{fig:gaugep92}
     924 \end{figure}
     925 
     926\begin{figure}[hbt]
     927 \centering
     928 \begin{tabular}{cc}
     929\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep93stage.png}&
     930\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep93speed.png}\\
     931\end{tabular}
     932 \caption{Time series for stage and speed at p93 location (elevation -58.36m)}
     933 \label{fig:gaugep93}
     934 \end{figure}
     935 
     936\begin{figure}[hbt]
     937 \centering
     938 \begin{tabular}{cc}
     939\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep94stage.png}&
     940\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep94speed.png}\\
     941\end{tabular}
     942 \caption{Time series for stage and speed at p94 location (elevation -57.31m)}
     943 \label{fig:gaugep94}
     944 \end{figure}
     945 
     946\begin{figure}[hbt]
     947 \centering
     948 \begin{tabular}{cc}
     949\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep95stage.png}&
     950\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep95speed.png}\\
     951\end{tabular}
     952 \caption{Time series for stage and speed at p95 location (elevation -56.28m)}
     953 \label{fig:gaugep95}
     954 \end{figure}
     955 
     956\begin{figure}[hbt]
     957 \centering
     958 \begin{tabular}{cc}
     959\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep96stage.png}&
     960\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep96speed.png}\\
     961\end{tabular}
     962 \caption{Time series for stage and speed at p96 location (elevation -55.28m)}
     963 \label{fig:gaugep96}
     964 \end{figure}
     965 
     966\begin{figure}[hbt]
     967 \centering
     968 \begin{tabular}{cc}
     969\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep97stage.png}&
     970\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep97speed.png}\\
     971\end{tabular}
     972 \caption{Time series for stage and speed at p97 location (elevation -54.31m)}
     973 \label{fig:gaugep97}
     974 \end{figure}
     975 
     976\clearpage
     977\begin{figure}[hbt]
     978 \centering
     979 \begin{tabular}{cc}
     980\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep99stage.png}&
     981\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep99speed.png}\\
     982\end{tabular}
     983 \caption{Time series for stage and speed at p99 location (elevation -53.39m)}
     984 \label{fig:gaugep99}
     985 \end{figure}
     986 
     987\begin{figure}[hbt]
     988 \centering
     989 \begin{tabular}{cc}
     990\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep100stage.png}&
     991\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep100speed.png}\\
     992\end{tabular}
     993 \caption{Time series for stage and speed at p100 location (elevation -52.53m)}
     994 \label{fig:gaugep100}
     995 \end{figure}
     996 
     997\begin{figure}[hbt]
     998 \centering
     999 \begin{tabular}{cc}
     1000\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep101stage.png}&
     1001\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep101speed.png}\\
     1002\end{tabular}
     1003 \caption{Time series for stage and speed at p101 location (elevation -51.70m)}
     1004 \label{fig:gaugep101}
     1005 \end{figure}
     1006 
     1007\begin{figure}[hbt]
     1008 \centering
     1009 \begin{tabular}{cc}
     1010\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep102stage.png}&
     1011\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep102speed.png}\\
     1012\end{tabular}
     1013 \caption{Time series for stage and speed at p102 location (elevation -50.95m)}
     1014 \label{fig:gaugep102}
     1015 \end{figure}
     1016 
     1017\begin{figure}[hbt]
     1018 \centering
     1019 \begin{tabular}{cc}
     1020\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep103stage.png}&
     1021\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep103speed.png}\\
     1022\end{tabular}
     1023 \caption{Time series for stage and speed at p103 location (elevation -50.30m)}
     1024 \label{fig:gaugep103}
     1025 \end{figure}
     1026 
     1027\begin{figure}[hbt]
     1028 \centering
     1029 \begin{tabular}{cc}
     1030\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep104stage.png}&
     1031\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep104speed.png}\\
     1032\end{tabular}
     1033 \caption{Time series for stage and speed at p104 location (elevation -49.69m)}
     1034 \label{fig:gaugep104}
     1035 \end{figure}
     1036 
     1037\clearpage
     1038\begin{figure}[hbt]
     1039 \centering
     1040 \begin{tabular}{cc}
     1041\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep105stage.png}&
     1042\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep105speed.png}\\
     1043\end{tabular}
     1044 \caption{Time series for stage and speed at p105 location (elevation -49.12m)}
     1045 \label{fig:gaugep105}
     1046 \end{figure}
     1047 
     1048\begin{figure}[hbt]
     1049 \centering
     1050 \begin{tabular}{cc}
     1051\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep106stage.png}&
     1052\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep106speed.png}\\
     1053\end{tabular}
     1054 \caption{Time series for stage and speed at p106 location (elevation -48.55m)}
     1055 \label{fig:gaugep106}
     1056 \end{figure}
     1057 
     1058\begin{figure}[hbt]
     1059 \centering
     1060 \begin{tabular}{cc}
     1061\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep107stage.png}&
     1062\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep107speed.png}\\
     1063\end{tabular}
     1064 \caption{Time series for stage and speed at p107 location (elevation -47.94m)}
     1065 \label{fig:gaugep107}
     1066 \end{figure}
     1067 
     1068\begin{figure}[hbt]
     1069 \centering
     1070 \begin{tabular}{cc}
     1071\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep108stage.png}&
     1072\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep108speed.png}\\
     1073\end{tabular}
     1074 \caption{Time series for stage and speed at p108 location (elevation -47.27m)}
     1075 \label{fig:gaugep108}
     1076 \end{figure}
     1077 
     1078\begin{figure}[hbt]
     1079 \centering
     1080 \begin{tabular}{cc}
     1081\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep109stage.png}&
     1082\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep109speed.png}\\
     1083\end{tabular}
     1084 \caption{Time series for stage and speed at p109 location (elevation -46.54m)}
     1085 \label{fig:gaugep109}
     1086 \end{figure}
     1087 
     1088\begin{figure}[hbt]
     1089 \centering
     1090 \begin{tabular}{cc}
     1091\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep110stage.png}&
     1092\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep110speed.png}\\
     1093\end{tabular}
     1094 \caption{Time series for stage and speed at p110 location (elevation -45.72m)}
     1095 \label{fig:gaugep110}
     1096 \end{figure}
     1097 
     1098\clearpage
     1099\begin{figure}[hbt]
     1100 \centering
     1101 \begin{tabular}{cc}
     1102\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep111stage.png}&
     1103\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep111speed.png}\\
     1104\end{tabular}
     1105 \caption{Time series for stage and speed at p111 location (elevation -44.88m)}
     1106 \label{fig:gaugep111}
     1107 \end{figure}
     1108 
     1109\begin{figure}[hbt]
     1110 \centering
     1111 \begin{tabular}{cc}
     1112\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep112stage.png}&
     1113\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep112speed.png}\\
     1114\end{tabular}
     1115 \caption{Time series for stage and speed at p112 location (elevation -44.02m)}
     1116 \label{fig:gaugep112}
     1117 \end{figure}
     1118 
     1119\begin{figure}[hbt]
     1120 \centering
     1121 \begin{tabular}{cc}
     1122\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep113stage.png}&
     1123\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep113speed.png}\\
     1124\end{tabular}
     1125 \caption{Time series for stage and speed at p113 location (elevation -43.17m)}
     1126 \label{fig:gaugep113}
     1127 \end{figure}
     1128 
     1129\begin{figure}[hbt]
     1130 \centering
     1131 \begin{tabular}{cc}
     1132\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep114stage.png}&
     1133\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep114speed.png}\\
     1134\end{tabular}
     1135 \caption{Time series for stage and speed at p114 location (elevation -42.38m)}
     1136 \label{fig:gaugep114}
     1137 \end{figure}
     1138 
     1139\begin{figure}[hbt]
     1140 \centering
     1141 \begin{tabular}{cc}
     1142\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep115stage.png}&
     1143\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep115speed.png}\\
     1144\end{tabular}
     1145 \caption{Time series for stage and speed at p115 location (elevation -41.63m)}
     1146 \label{fig:gaugep115}
     1147 \end{figure}
     1148 
     1149\begin{figure}[hbt]
     1150 \centering
     1151 \begin{tabular}{cc}
     1152\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep116stage.png}&
     1153\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep116speed.png}\\
     1154\end{tabular}
     1155 \caption{Time series for stage and speed at p116 location (elevation -41.05m)}
     1156 \label{fig:gaugep116}
     1157 \end{figure}
     1158 
     1159\clearpage
     1160\begin{figure}[hbt]
     1161 \centering
     1162 \begin{tabular}{cc}
     1163\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep117stage.png}&
     1164\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep117speed.png}\\
     1165\end{tabular}
     1166 \caption{Time series for stage and speed at p117 location (elevation -40.41m)}
     1167 \label{fig:gaugep117}
     1168 \end{figure}
     1169 
     1170\begin{figure}[hbt]
     1171 \centering
     1172 \begin{tabular}{cc}
     1173\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep118stage.png}&
     1174\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep118speed.png}\\
     1175\end{tabular}
     1176 \caption{Time series for stage and speed at p118 location (elevation -39.22m)}
     1177 \label{fig:gaugep118}
     1178 \end{figure}
     1179 
     1180\begin{figure}[hbt]
     1181 \centering
     1182 \begin{tabular}{cc}
     1183\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep119stage.png}&
     1184\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep119speed.png}\\
     1185\end{tabular}
     1186 \caption{Time series for stage and speed at p119 location (elevation -37.89m)}
     1187 \label{fig:gaugep119}
     1188 \end{figure}
     1189 
     1190\begin{figure}[hbt]
     1191 \centering
     1192 \begin{tabular}{cc}
     1193\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep120stage.png}&
     1194\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep120speed.png}\\
     1195\end{tabular}
     1196 \caption{Time series for stage and speed at p120 location (elevation -36.91m)}
     1197 \label{fig:gaugep120}
     1198 \end{figure}
     1199 
     1200\begin{figure}[hbt]
     1201 \centering
     1202 \begin{tabular}{cc}
     1203\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep121stage.png}&
     1204\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep121speed.png}\\
     1205\end{tabular}
     1206 \caption{Time series for stage and speed at p121 location (elevation -34.27m)}
     1207 \label{fig:gaugep121}
     1208 \end{figure}
     1209 
     1210\begin{figure}[hbt]
     1211 \centering
     1212 \begin{tabular}{cc}
     1213\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep122stage.png}&
     1214\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep122speed.png}\\
     1215\end{tabular}
     1216 \caption{Time series for stage and speed at p122 location (elevation -30.91m)}
     1217 \label{fig:gaugep122}
     1218 \end{figure}
     1219 
     1220\clearpage
     1221\begin{figure}[hbt]
     1222 \centering
     1223 \begin{tabular}{cc}
     1224\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep123stage.png}&
     1225\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep123speed.png}\\
     1226\end{tabular}
     1227 \caption{Time series for stage and speed at p123 location (elevation -27.73m)}
     1228 \label{fig:gaugep123}
     1229 \end{figure}
     1230 
     1231\begin{figure}[hbt]
     1232 \centering
     1233 \begin{tabular}{cc}
     1234\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep124stage.png}&
     1235\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep124speed.png}\\
     1236\end{tabular}
     1237 \caption{Time series for stage and speed at p124 location (elevation -25.10m)}
     1238 \label{fig:gaugep124}
     1239 \end{figure}
     1240 
     1241\begin{figure}[hbt]
     1242 \centering
     1243 \begin{tabular}{cc}
     1244\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep125stage.png}&
     1245\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep125speed.png}\\
     1246\end{tabular}
     1247 \caption{Time series for stage and speed at p125 location (elevation -22.73m)}
     1248 \label{fig:gaugep125}
     1249 \end{figure}
     1250 
     1251\begin{figure}[hbt]
     1252 \centering
     1253 \begin{tabular}{cc}
     1254\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep126stage.png}&
     1255\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep126speed.png}\\
     1256\end{tabular}
     1257 \caption{Time series for stage and speed at p126 location (elevation -20.01m)}
     1258 \label{fig:gaugep126}
     1259 \end{figure}
     1260 
     1261\begin{figure}[hbt]
     1262 \centering
     1263 \begin{tabular}{cc}
     1264\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep127stage.png}&
     1265\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep127speed.png}\\
     1266\end{tabular}
     1267 \caption{Time series for stage and speed at p127 location (elevation -17.26m)}
     1268 \label{fig:gaugep127}
     1269 \end{figure}
     1270 
     1271\begin{figure}[hbt]
     1272 \centering
     1273 \begin{tabular}{cc}
     1274\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep128stage.png}&
     1275\includegraphics[width=0.49\linewidth, height=50mm]{../report_figures/gaugep128speed.png}\\
     1276\end{tabular}
     1277 \caption{Time series for stage and speed at p128 location (elevation -3.99m)}
     1278 \label{fig:gaugep128}
     1279 \end{figure}
     1280 
     1281\clearpage
Note: See TracChangeset for help on using the changeset viewer.