-
Notifications
You must be signed in to change notification settings - Fork 5
/
G17.xml
1837 lines (1834 loc) · 113 KB
/
G17.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<collection id="G17">
<volume id="1">
<meta>
<booktitle>Environmental Science & Technology, Volume 51, Issue 3</booktitle>
<publisher>American Chemical Society (ACS)</publisher>
<address/>
<year>2017</year>
</meta>
<paper id="1">
<title>Reduction of Intersex in a Wild Fish Population in Response to Major Municipal Wastewater Treatment Plant Upgrades</title>
<author>
<first>Keegan A.</first>
<last>Hicks</last>
</author>
<author>
<first>Meghan</first>
<last>Fuzzen</last>
</author>
<author>
<first>Emily Kaitlin</first>
<last>McCann</last>
</author>
<author>
<first>Maricor J.</first>
<last>Arlos</last>
</author>
<author>
<first>Leslie M.</first>
<last>Bragg</last>
</author>
<author>
<first>Sonya</first>
<last>Kleywegt</last>
</author>
<author>
<first>Gerald R.</first>
<last>Tetreault</last>
</author>
<author>
<first>Mark E.</first>
<last>McMaster</last>
</author>
<author>
<first>Mark R.</first>
<last>Servos</last>
</author>
<abstract>Intersex in fish downstream of municipal wastewater treatment plants (MWWTPs) is a global concern. Consistent high rates of intersex in male rainbow darter (Etheostoma caeruleum) have been reported for several years in the Grand River, in southern Ontario, Canada, in close proximity to two MWWTPs. The larger MWWTP (Kitchener) recently underwent upgrades that included the conversion from a carbonaceous activated sludge to nitrifying activated sludge treatment process. This created a unique opportunity to assess whether upgrades designed to improve effluent quality could also remediate the intersex previously observed in wild fish. Multiple years (2007-2012) of intersex data on male rainbow darter collected before the upgrades at sites associated with the MWWTP outfall were compared with intersex data collected in postupgrade years (2013-2015). These upgrades resulted in a reduction from 70 to 100% intersex incidence (preupgrade) to <10% in postupgrade years. Although the cause of intersex remains unknown, indicators of effluent quality including nutrients, pharmaceuticals, and estrogenicity improved in the effluent after the upgrades. This study demonstrated that investment in MWWTP upgrades improved effluent quality and was associated with an immediate change in biological responses in the receiving environment. This is an important finding considering the tremendous cost of wastewater infrastructure.</abstract>
<url hash="8a242a46">G17-1001</url>
<pages>1811-1819</pages>
<doi>10.1021/acs.est.6b05370</doi>
<bibkey>Hicks-2017-Reduction</bibkey>
<project>prj23</project>
</paper>
</volume>
<volume id="2">
<meta>
<booktitle>Boundary-Layer Meteorology</booktitle>
<publisher>Springer Science and Business Media LLC</publisher>
<address/>
<year>2017</year>
</meta>
<paper id="1">
<title>The Effect of Coherent Structures in the Atmospheric Surface Layer on Blowing-Snow Transport</title>
<author>
<first>Nikolas</first>
<last>Aksamit</last>
</author>
<author>
<first>John W.</first>
<last>Pomeroy</last>
</author>
<abstract>While turbulent bursts are considered critical for blowing-snow transport and initiation, the interaction of the airflow with the snow surface is not fully understood. To better characterize the coupling of turbulent structures and blowing-snow transport, observations collected in natural environments at the necessary high-resolution time scales are needed. To address this, high-frequency measurements of turbulence, blowing-snow density and particle velocity were made in the Canadian Rockies. During blowing-snow storms, modified variable-interval time averaging enabled identification of periods of near-surface blowing-snow coupling with shear-stress-producing motions in the lowest 2 m of the atmospheric surface layer. The identification of those turbulent motions responsible for blowing snow yields a better understanding of the event-driven mechanics of initiation and sustained transport. The type of coherent structures generating the Reynolds stress are just as important as the magnitude of the Reynolds stress in initiating and sustaining near-surface blowing snow. Our results suggest that blowing-snow models driven by merely the time-averaged shear stress lack physical realism in the near-surface region. The next phase of the development of blowing-snow models should incorporate parametrizations of coherent turbulent structures.</abstract>
<url hash="989185a8">G17-2001</url>
<doi>10.1007/s10546-017-0318-2</doi>
<bibkey>Aksamit-2017-The</bibkey>
<project>prj28</project>
</paper>
</volume>
<volume id="3">
<meta>
<booktitle>FACETS, Volume 2, Issue 2</booktitle>
<publisher>Canadian Science Publishing</publisher>
<address/>
<year>2017</year>
</meta>
<paper id="1">
<title>DIY meteorology: Use of citizen science to monitor snow dynamics in a data-sparse city</title>
<author>
<first>Willemijn M.</first>
<last>Appels</last>
</author>
<author>
<first>Lori</first>
<last>Bradford</last>
</author>
<author>
<first>Kwok Pan</first>
<last>Chun</last>
</author>
<author>
<first>Anna</first>
<last>Coles</last>
</author>
<author>
<first>Graham</first>
<last>Strickert</last>
</author>
<abstract>Cities are under pressure to operate their services effectively and project costs of operations across various timeframes. In high-latitude and high-altitude urban centers, snow management is one of the larger unknowns and has both operational and budgetary limitations. Snowfall and snow depth observations within urban environments are important to plan snow clearing and prepare for the effects of spring runoff on cities’ drainage systems. In-house research functions are expensive, but one way to overcome that expense and still produce effective data is through citizen science. In this paper, we examine the potential to use citizen science for snowfall data collection in urban environments. A group of volunteers measured daily snowfall and snow depth at an urban site in Saskatoon (Canada) during two winters. Reliability was assessed with a statistical consistency analysis and a comparison with other data sets collected around Saskatoon. We found that citizen-science-derived data were more reliable and relevant for many urban management stakeholders. Feedback from the participants demonstrated reflexivity about social learning and a renewed sense of community built around generating reliable and useful data. We conclude that citizen science holds great potential to improve data provision for effective and sustainable city planning and greater social learning benefits overall.</abstract>
<url hash="202de2cd">G17-3001</url>
<pages>734-753</pages>
<doi>10.1139/facets-2017-0030</doi>
<bibkey>Appels-2017-DIY</bibkey>
<project>prj11</project>
</paper>
</volume>
<volume id="4">
<meta>
<booktitle>Journal of Hydrometeorology, Volume 18, Issue 4</booktitle>
<publisher>American Meteorological Society</publisher>
<address/>
<year>2017</year>
</meta>
<paper id="1">
<title>Evaluation of Integrated Multisatellite Retrievals for GPM (IMERG) over Southern Canada against Ground Precipitation Observations: A Preliminary Assessment</title>
<author>
<first>Zilefac Elvis</first>
<last>Asong</last>
</author>
<author>
<first>Saman</first>
<last>Razavi</last>
</author>
<author>
<first>H. S.</first>
<last>Wheater</last>
</author>
<author>
<first>Jefferson S.</first>
<last>Wong</last>
</author>
<abstract>Abstract The Global Precipitation Measurement (GPM) mission offers new opportunities for modeling a range of physical/hydrological processes at higher resolutions, especially for remote river systems where the hydrometeorological monitoring network is sparse and weather radar is not readily available. In this study, the recently released Integrated Multisatellite Retrievals for GPM [version 03 (V03) IMERG Final Run] product with high spatiotemporal resolution of 0.1° and 30 min is evaluated against ground-based reference measurements (at the 6-hourly, daily, and monthly time scales) over different terrestrial ecozones of southern Canada within a 23-month period from 12 March 2014 to 31 January 2016. While IMERG and ground-based observations show similar regional variations of mean daily precipitation, IMERG tends to overestimate higher monthly precipitation amounts over the Pacific Maritime ecozone. Results from using continuous as well as categorical skill metrics reveal that IMERG shows more satisfactory agreement at the daily and the 6-hourly time scales for the months of June–September, unlike November–March. In terms of precipitation extremes (defined by the 75th percentile threshold for reference data), apart from a tendency toward overdetection of heavy precipitation events, IMERG captured well the distribution of heavy precipitation amounts and observed wet/dry spell length distributions over most ecozones. However, low skill was found over large portions of the Montane Cordillera ecozone and a few stations in the Prairie ecozone. This early study highlights a potential applicability of V03 IMERG Final Run as a reliable source of precipitation estimates in diverse water resources and hydrometeorological applications for different regions in southern Canada.</abstract>
<url hash="bdfada74">G17-4001</url>
<pages>1033-1050</pages>
<doi>10.1175/jhm-d-16-0187.1</doi>
<bibkey>Asong-2017-Evaluation</bibkey>
<project>prj20</project>
</paper>
</volume>
<volume id="5">
<meta>
<booktitle>Nature Climate Change, Volume 7, Issue 7</booktitle>
<publisher>Springer Science and Business Media LLC</publisher>
<address/>
<year>2017</year>
</meta>
<paper id="1">
<title>The changing hail threat over North America in response to anthropogenic climate change</title>
<author>
<first>Julian C.</first>
<last>Brimelow</last>
</author>
<author>
<first>William R.</first>
<last>Burrows</last>
</author>
<author>
<first>John</first>
<last>Hanesiak</last>
</author>
<abstract>Anthropogenic climate change is anticipated to increase severe thunderstorm potential in North America, but the resulting changes in associated convective hazards are not well known. Here, using a novel modelling approach, we investigate the spatiotemporal changes in hail frequency and size between the present (1971–2000) and future (2041–2070). Although fewer hail days are expected over most areas in the future, an increase in the mean hail size is projected, with fewer small hail events and a shift toward a more frequent occurrence of larger hail. This leads to an anticipated increase in hail damage potential over most southern regions in spring, retreating to the higher latitudes (that is, north of 50° N) and the Rocky Mountains in the summer. In contrast, a dramatic decrease in hail frequency and damage potential is predicted over eastern and southeastern regions in spring and summer due to a significant increase in melting that mitigates gains in hail size from increased buoyancy.</abstract>
<url hash="0546bd11">G17-5001</url>
<pages>516-522</pages>
<doi>10.1038/nclimate3321</doi>
<bibkey>Brimelow-2017-The</bibkey>
<project>prj5</project>
</paper>
</volume>
<volume id="6">
<meta>
<booktitle>Water Resources and Economics, Volume 17</booktitle>
<publisher>Elsevier BV</publisher>
<address/>
<year>2017</year>
</meta>
<paper id="1">
<title>The economic value of river restoration</title>
<author>
<first>Roy</first>
<last>Brouwer</last>
</author>
<author>
<first>Oleg</first>
<last>Sheremet</last>
</author>
<abstract>This study was part of the European Framework 7 funded project ‘Restoring Rivers for Effective Catchment Management’ (REFORM).</abstract>
<url hash="17f312ff">G17-6001</url>
<pages>1-8</pages>
<doi>10.1016/j.wre.2017.02.005</doi>
<bibkey>Brouwer-2017-The</bibkey>
<project>prj20</project>
</paper>
</volume>
<volume id="7">
<meta>
<booktitle>Journal of Applied Remote Sensing, Volume 11, Issue 03</booktitle>
<publisher>SPIE-Intl Soc Optical Eng</publisher>
<address/>
<year>2017</year>
</meta>
<paper id="1">
<title>RADARSAT-2-based digital elevation models derived from InSAR for high latitudes of northern Canada</title>
<author>
<first>Thuan</first>
<last>Chu</last>
</author>
<author>
<first>Apurba</first>
<last>Das</last>
</author>
<author>
<first>Karl–Erich</first>
<last>Lindenschmidt</last>
</author>
<abstract>The accuracy of digital elevation models (DEMs) plays an important role in many terrain-related applications, particular in high northern latitudes where there is uncertainty in DEMs. Using the interferometric synthetic aperture radar techniques, this study examined how different RADARSAT-2 beam modes can be used to generate DEMs with high accuracy. Using a conventional interferometry method, the Spotlight DEM shows the highest accuracy among all studied DEM products, with the root-mean-square error (RMSE) ranging from 13.9 to 17.4 m, followed by the F0W3 DEM and U26W2 DEM. The error sources in DEM generation due to uncertainty in perpendicular baseline and atmospheric delay are likely more important than the random phase noise caused by volume scattering and environmental changes during synthetic aperture radar (SAR) acquisitions. The small baselines subset (SBAS) method did not significantly improve DEM quality due to the limitation of the number of SAR images in this study. The integration of both Spotlight conventional DEMs and SBAS DEM considerably improved results yielding high-quality DEMs for the study area, with an RMSE of 9.7 m. Further studies are necessary to quantitatively evaluate the effects of surface motion as well as the orbital and atmospheric errors on the DEM accuracy. The Slave River Delta in the Northwest Territories of Canada was used as a test case.</abstract>
<url hash="af4f759a">G17-7001</url>
<pages>1</pages>
<doi>10.1117/1.jrs.11.035013</doi>
<bibkey>Chu-2017-RADARSAT-2-based</bibkey>
<project>prj20</project>
</paper>
</volume>
<volume id="8">
<meta>
<booktitle>Dendrochronologia, Volume 44</booktitle>
<publisher>Elsevier BV</publisher>
<address/>
<year>2017</year>
</meta>
<paper id="1">
<title>A novel stochastic method for reconstructing daily precipitation times-series using tree-ring data from the western Canadian Boreal Forest</title>
<author>
<first>Kwok Pan</first>
<last>Chun</last>
</author>
<author>
<first>Steven D.</first>
<last>Mamet</last>
</author>
<author>
<first>Juha M.</first>
<last>Metsaranta</last>
</author>
<author>
<first>Alan G.</first>
<last>Barr</last>
</author>
<author>
<first>Jill F.</first>
<last>Johnstone</last>
</author>
<author>
<first>H. S.</first>
<last>Wheater</last>
</author>
<abstract>Abstract Tree ring data provide proxy records of historical hydroclimatic conditions that are widely used for reconstructing precipitation time series. Most previous applications are limited to annual time scales, though information about daily precipitation would enable a range of additional analyses of environmental processes to be investigated and modelled. We used statistical downscaling to simulate stochastic daily precipitation ensembles using dendrochronological data from the western Canadian boreal forest. The simulated precipitation series were generally consistent with observed precipitation data, though reconstructions were poorly constrained during short periods of forest pest outbreaks. The proposed multiple temporal scale precipitation reconstruction can generate annual daily maxima and persistent monthly wet and dry episodes, so that the observed and simulated ensembles have similar precipitation characteristics (i.e. magnitude, peak, and duration)—an improvement on previous modelling studies. We discuss how ecological disturbances may limit reconstructions by inducing non-linear responses in tree growth, and conclude with suggestions of possible applications and further development of downscaling methods for dendrochronological data.</abstract>
<url hash="f72c65cc">G17-8001</url>
<pages>9-18</pages>
<doi>10.1016/j.dendro.2017.01.003</doi>
<bibkey>Chun-2017-A</bibkey>
<project>prj20</project>
</paper>
</volume>
<volume id="9">
<meta>
<booktitle>Hydrological Processes, Volume 31, Issue 24</booktitle>
<publisher>Wiley</publisher>
<address/>
<year>2017</year>
</meta>
<paper id="1">
<title>A modelling framework to simulate field-scale nitrate response and transport during snowmelt: The WINTRA model</title>
<author>
<first>Diogo</first>
<last>Costa</last>
</author>
<author>
<first>Jennifer</first>
<last>Roste</last>
</author>
<author>
<first>John W.</first>
<last>Pomeroy</last>
</author>
<author>
<first>Helen M.</first>
<last>Baulch</last>
</author>
<author>
<first>J. M.</first>
<last>Elliott</last>
</author>
<author>
<first>H. S.</first>
<last>Wheater</last>
</author>
<author>
<first>Cherie J.</first>
<last>Westbrook</last>
</author>
<abstract>Modeling nutrient transport during snowmelt in cold regions remains a major scientific challenge. A key limitation of existing nutrient models for application in cold regions is the inadequate representation of snowmelt, including hydrological and biogeochemical processes. This brief period can account for more than 80% of the total annual surface runoff in the Canadian Prairies and Northern Canada and processes such as atmospheric deposition, over-winter redistribution of snow, ion exclusion from snow crystals, frozen soils, and snowcovered area depletion during melt influence the distribution and release of snow and soil nutrients, thus affecting the timing and magnitude of snowmelt runoff nutrient concentrations.
Research in cold regions suggests that nitrate (NO3) runoff at the field scale can be divided into five phases during snowmelt. In the first phase, water and ions originating from ion-rich snow layers travel and diffuse through the snowpack. This process causes ion concentrations in runoff to gradually increase. The second phase occurs when this snow ion meltwater front has reached the bottom of the snowpack and forms runoff to the edge-of-the-field (EOF). During the third and fourth phases, the main source of NO3 transitions from the snowpack to the soil. Finally, the fifth and last phase occurs when the snow has completely melted, and the thawing soil becomes the main source of NO3 to the stream.
In this research, a process-based model was developed to simulate hourly export based on this five-phase approach. Results from an application in the Red River Basin of southern Manitoba, Canada shows that the model can adequately capture the dynamics and rapid changes of NO3 concentrations during this period at relevant temporal resolutions. This is a significant achievement to advance the current nutrient modeling paradigm in cold climates, which is generally limited to satisfactory results at monthly or annual resolutions. The approach can inform catchment-scale nutrient models to improve simulation of this critical snowmelt period.
Nutrient exports Winter Snow Nitrate Agriculture Nutrient model</abstract>
<url hash="4f9002a9">G17-9001</url>
<pages>4250-4268</pages>
<doi>10.1002/hyp.11346</doi>
<bibkey>Costa-2017-A</bibkey>
<project>prj2</project>
</paper>
</volume>
<volume id="10">
<meta>
<booktitle>Journal of Hydrology, Volume 553</booktitle>
<publisher>Elsevier BV</publisher>
<address/>
<year>2017</year>
</meta>
<paper id="1">
<title>Influence of snowpack and melt energy heterogeneity on snow cover depletion and snowmelt runoff simulation in a cold mountain environment</title>
<author>
<first>C. M.</first>
<last>DeBeer</last>
</author>
<author>
<first>John W.</first>
<last>Pomeroy</last>
</author>
<abstract>Abstract The spatial heterogeneity of mountain snow cover and ablation is important in controlling patterns of snow cover depletion (SCD), meltwater production, and runoff, yet is not well-represented in most large-scale hydrological models and land surface schemes. Analyses were conducted in this study to examine the influence of various representations of snow cover and melt energy heterogeneity on both simulated SCD and stream discharge from a small alpine basin in the Canadian Rocky Mountains. Simulations were performed using the Cold Regions Hydrological Model (CRHM), where point-scale snowmelt computations were made using a snowpack energy balance formulation and applied to spatial frequency distributions of snow water equivalent (SWE) on individual slope-, aspect-, and landcover-based hydrological response units (HRUs) in the basin. Hydrological routines were added to represent the vertical and lateral transfers of water through the basin and channel system. From previous studies it is understood that the heterogeneity of late winter SWE is a primary control on patterns of SCD. The analyses here showed that spatial variation in applied melt energy, mainly due to differences in net radiation, has an important influence on SCD at multiple scales and basin discharge, and cannot be neglected without serious error in the prediction of these variables. A single basin SWE distribution using the basin-wide mean SWE ( SWE ‾ ) and coefficient of variation (CV; standard deviation/mean) was found to represent the fine-scale spatial heterogeneity of SWE sufficiently well. Simulations that accounted for differences in ( SWE ‾ ) among HRUs but neglected the sub-HRU heterogeneity of SWE were found to yield similar discharge results as simulations that included this heterogeneity, while SCD was poorly represented, even at the basin level. Finally, applying point-scale snowmelt computations based on a single SWE depth for each HRU (thereby neglecting spatial differences in internal snowpack energetics over the distributions) was found to yield similar SCD and discharge results as simulations that resolved internal energy differences. Spatial/internal snowpack melt energy effects are more pronounced at times earlier in spring before the main period of snowmelt and SCD, as shown in previously published work. The paper discusses the importance of these findings as they apply to the warranted complexity of snowmelt process simulation in cold mountain environments, and shows how the end-of-winter SWE distribution represents an effective means of resolving snow cover heterogeneity at multiple scales for modelling, even in steep and complex terrain.</abstract>
<url hash="05f21e79">G17-10001</url>
<pages>199-213</pages>
<doi>10.1016/j.jhydrol.2017.07.051</doi>
<bibkey>DeBeer-2017-Influence</bibkey>
<project>prj20</project>
</paper>
</volume>
<volume id="11">
<meta>
<booktitle>Water, Volume 9, Issue 10</booktitle>
<publisher>MDPI AG</publisher>
<address/>
<year>2017</year>
</meta>
<paper id="1">
<title>An Integrated Modelling System to Predict Hydrological Processes under Climate and Land-Use/Cover Change Scenarios</title>
<author>
<first>Babak</first>
<last>Farjad</last>
</author>
<author>
<first>Anil</first>
<last>Gupta</last>
</author>
<author>
<first>Saman</first>
<last>Razavi</last>
</author>
<author>
<first>Monireh</first>
<last>Faramarzi</last>
</author>
<author>
<first>Danielle J.</first>
<last>Marceau</last>
</author>
<abstract>This study proposes an integrated modeling system consisting of the physically-based MIKE SHE/MIKE 11 model, a cellular automata model, and general circulation models (GCMs) scenarios to investigate the independent and combined effects of future climate and land-use/land-cover (LULC) changes on the hydrology of a river system. The integrated modelling system is applied to the Elbow River watershed in southern Alberta, Canada in conjunction with extreme GCM scenarios and two LULC change scenarios in the 2020s and 2050s. Results reveal that LULC change substantially modifies the river flow regime in the east sub-catchment, where rapid urbanization is occurring. It is also shown that the change in LULC causes an increase in peak flows in both the 2020s and 2050s. The impacts of climate and LULC change on streamflow are positively correlated in winter and spring, which intensifies their influence and leads to a significant rise in streamflow, and, subsequently, increases the vulnerability of the watershed to spring floods. This study highlights the importance of using an integrated modeling approach to investigate both the independent and combined impacts of climate and LULC changes on the future of hydrology to improve our understanding of how watersheds will respond to climate and LULC changes.</abstract>
<url hash="bd4e791c">G17-11001</url>
<pages>767</pages>
<doi>10.3390/w9100767</doi>
<bibkey>Farjad-2017-An</bibkey>
<project>prj20</project>
</paper>
</volume>
<volume id="12">
<meta>
<booktitle>Hydrology and Earth System Sciences, Volume 21, Issue 12</booktitle>
<publisher>Copernicus GmbH</publisher>
<address/>
<year>2017</year>
</meta>
<paper id="1">
<title>Parameter sensitivity analysis of a 1-D cold region lake model for land-surface schemes</title>
<author>
<first>José-Luis</first>
<last>Guerrero</last>
</author>
<author>
<first>Patricia</first>
<last>Pernica</last>
</author>
<author>
<first>H. S.</first>
<last>Wheater</last>
</author>
<author>
<first>Murray</first>
<last>Mackay</last>
</author>
<author>
<first>Chris</first>
<last>Spence</last>
</author>
<abstract>Abstract. Lakes might be sentinels of climate change, but the uncertainty in their main feedback to the atmosphere – heat-exchange fluxes – is often not considered within climate models. Additionally, these fluxes are seldom measured, hindering critical evaluation of model output. Analysis of the Canadian Small Lake Model (CSLM), a one-dimensional integral lake model, was performed to assess its ability to reproduce diurnal and seasonal variations in heat fluxes and the sensitivity of simulated fluxes to changes in model parameters, i.e., turbulent transport parameters and the light extinction coefficient (Kd). A C++ open-source software package, Problem Solving environment for Uncertainty Analysis and Design Exploration (PSUADE), was used to perform sensitivity analysis (SA) and identify the parameters that dominate model behavior. The generalized likelihood uncertainty estimation (GLUE) was applied to quantify the fluxes' uncertainty, comparing daily-averaged eddy-covariance observations to the output of CSLM. Seven qualitative and two quantitative SA methods were tested, and the posterior likelihoods of the modeled parameters, obtained from the GLUE analysis, were used to determine the dominant parameters and the uncertainty in the modeled fluxes. Despite the ubiquity of the equifinality issue – different parameter-value combinations yielding equivalent results – the answer to the question was unequivocal: Kd, a measure of how much light penetrates the lake, dominates sensible and latent heat fluxes, and the uncertainty in their estimates is strongly related to the accuracy with which Kd is determined. This is important since accurate and continuous measurements of Kd could reduce modeling uncertainty.</abstract>
<url hash="affbd6f2">G17-12001</url>
<pages>6345-6362</pages>
<doi>10.5194/hess-21-6345-2017</doi>
<bibkey>Guerrero-2017-Parameter</bibkey>
<project>prj20</project>
</paper>
</volume>
<volume id="13">
<meta>
<booktitle>Environmental Modelling & Software, Volume 95</booktitle>
<publisher>Elsevier BV</publisher>
<address/>
<year>2017</year>
</meta>
<paper id="1">
<title>Insights into sensitivity analysis of Earth and environmental systems models: On the impact of parameter perturbation scale</title>
<author>
<first>Amin</first>
<last>Haghnegahdar</last>
</author>
<author>
<first>Saman</first>
<last>Razavi</last>
</author>
<abstract>Abstract This paper investigates the commonly overlooked “sensitivity” of sensitivity analysis (SA) to what we refer to as parameter “perturbation scale”, which can be defined as a prescribed size of the sensitivity-related neighbourhood around any point in the parameter space (analogous to step size Δ x for numerical estimation of derivatives). We discuss that perturbation scale is inherent to any (local and global) SA approach, and explain how derivative-based SA approaches (e.g., method of Morris) focus on small-scale perturbations, while variance-based approaches (e.g., method of Sobol) focus on large-scale perturbations. We employ a novel variogram-based approach, called Variogram Analysis of Response Surfaces (VARS), which bridges derivative- and variance-based approaches. Our analyses with different real-world environmental models demonstrate significant implications of subjectivity in the perturbation-scale choice and the need for strategies to address these implications. It is further shown how VARS can uniquely characterize the perturbation-scale dependency and generate sensitivity measures that encompass all sensitivity-related information across the full spectrum of perturbation scales.</abstract>
<url hash="1747b197">G17-13001</url>
<pages>115-131</pages>
<doi>10.1016/j.envsoft.2017.03.031</doi>
<bibkey>Haghnegahdar-2017-Insights</bibkey>
<project>prj20</project>
</paper>
</volume>
<volume id="14">
<meta>
<booktitle>Hydrological Processes, Volume 31, Issue 25</booktitle>
<publisher>Wiley</publisher>
<address/>
<year>2017</year>
</meta>
<paper id="1">
<title>Multicriteria sensitivity analysis as a diagnostic tool for understanding model behaviour and characterizing model uncertainty</title>
<author>
<first>Amin</first>
<last>Haghnegahdar</last>
</author>
<author>
<first>Saman</first>
<last>Razavi</last>
</author>
<author>
<first>Fuad</first>
<last>Yassin</last>
</author>
<author>
<first>H. S.</first>
<last>Wheater</last>
</author>
<abstract>Complex hydrological models are being increasingly used nowadays for many purposes such as studying the impact of climate and land-use change on water resources. However, building a high-fidelity model, particularly at large scales, remains a challenging task, due to complexities in model functioning and behavior and uncertainties in model structure, parameterization, and data. Global Sensitivity Analysis (GSA), which characterizes how the variation in the model response is attributed to variations in its input factors (e.g., parameters, forcing data), provides an opportunity to enhance the development and application of these complex models. In this paper, we advocate using GSA as an integral part of the modelling process by discussing its capabilities as a tool for diagnosing model structure and detecting potential defects, identifying influential factors, characterizing uncertainty, and selecting calibration parameters. Accordingly, we conduct a comprehensive GSA of a complex land surface-hydrology model, Modelisation Environmentale–Surface et Hydrologie (MESH), which combines the Canadian Land Surface Scheme (CLASS) with a hydrological routing component, WATROUTE. Various GSA experiments are carried out using a new technique, called Variogram Analysis of Response Surfaces (VARS), for alternative hydroclimatic conditions in Canada using multiple criteria, various model configurations, and a full set of model parameters. Results from this study reveal that, in addition to different hydroclimatic conditions and SA criteria, model configurations can also have a major impact on the assessment of sensitivity. GSA can identify aspects of the model internal functioning that are counter-intuitive, and thus, help the modeler to diagnose possible model deficiencies and make recommendations for improving development and application of the model. As a specific outcome of this work, a list of the most influential parameters for the MESH model is developed. This list, along with some specific recommendations, is expected to assist the wide community of MESH and CLASS users, to enhance their modelling applications.</abstract>
<url hash="8a90892e">G17-14001</url>
<pages>4462-4476</pages>
<doi>10.1002/hyp.11358</doi>
<bibkey>Haghnegahdar-2017-Multicriteria</bibkey>
<project>prj20</project>
</paper>
</volume>
<volume id="15">
<meta>
<booktitle>Geophysical Research Letters, Volume 44, Issue 19</booktitle>
<publisher>American Geophysical Union (AGU)</publisher>
<address/>
<year>2017</year>
</meta>
<paper id="1">
<title>Local‐Scale Advection of Sensible and Latent Heat During Snowmelt</title>
<author>
<first>Phillip</first>
<last>Harder</last>
</author>
<author>
<first>John W.</first>
<last>Pomeroy</last>
</author>
<author>
<first>Warren</first>
<last>Helgason</last>
</author>
<abstract>The breakup of snow cover into patches during snowmelt leads to a dynamic, heterogeneous land surface composed of melting snow, and wet and dry soil and plant surfaces. Energy exchange with the atmosphere is therefore complicated by horizontal gradients in surface temperature and humidity as snow surface temperature and humidity are regulated by the phase change of melting snow unlike snow-free areas. Airflow across these surface transitions results in local-scale advection of energy that has been documented as sensible heat during snowmelt, while latent heat advection has received scant attention. Herein, results are presented from an experiment measuring near-surface profiles of air temperature and humidity across snow-free to snow-covered transitions that demonstrates that latent heat advection can be the same order of magnitude as sensible heat advection and is therefore an important source of snowmelt energy. Latent heat advection is conditional on an upwind source of water vapor from a wetted snow-free surface.</abstract>
<url hash="322cee4b">G17-15001</url>
<pages>9769-9777</pages>
<doi>10.1002/2017gl074394</doi>
<bibkey>Harder-2017-Local‐Scale</bibkey>
<project>prj2</project>
</paper>
</volume>
<volume id="16">
<meta>
<booktitle>Hydrological Processes, Volume 31, Issue 26</booktitle>
<publisher>Wiley</publisher>
<address/>
<year>2017</year>
</meta>
<paper id="1">
<title>Influence of a rock glacier spring on the stream energy budget and cold-water refuge in an alpine stream</title>
<author>
<first>Jordan S.</first>
<last>Harrington</last>
</author>
<author>
<first>Masaki</first>
<last>Hayashi</last>
</author>
<author>
<first>Barret L.</first>
<last>Kurylyk</last>
</author>
<abstract>The thermal regimes of alpine streams remain understudied and have important implications for cold-water fish habitat which is expected to decline due to climatic warming. Previous research has focused on the effects of distributed energy fluxes and meltwater from snowpacks and glaciers on the temperature of mountain streams. This study presents the effects of the groundwater spring discharge from an inactive rock glacier containing little ground ice on the temperature of an alpine stream. Rock glaciers are coarse blocky landforms that are ubiquitous in alpine environments and typically exhibit low groundwater discharge temperatures and resilience to climatic warming. Water temperature data indicate that the rock glacier spring cools the stream by an average of 3°C during July and August and reduces maximum daily temperatures by an average of 5°C during the peak temperature period of the first two weeks in August, producing a cold-water refuge downstream of the spring. The distributed stream surface and streambed energy fluxes are calculated for the reach along the toe of the rock glacier, and solar radiation dominates the distributed stream energy budget. The lateral advective heat flux generated by the rock glacier spring is compared to the distributed energy fluxes over the study reach, and the spring advective heat flux is the dominant control on stream temperature at the reach scale. This study highlights the potential for coarse blocky landforms to generate climatically-resilient cold-water refuges in alpine streams.</abstract>
<url hash="209941a5">G17-16001</url>
<pages>4719-4733</pages>
<doi>10.1002/hyp.11391</doi>
<bibkey>Harrington-2017-Influence</bibkey>
<project>prj28</project>
</paper>
</volume>
<volume id="17">
<meta>
<booktitle>Environmental Research Letters, Volume 12, Issue 11</booktitle>
<publisher>IOP Publishing</publisher>
<address/>
<year>2017</year>
</meta>
<paper id="1">
<title>Warmer spring conditions increase annual methane emissions from a boreal peat landscape with sporadic permafrost</title>
<author>
<first>Manuel</first>
<last>Helbig</last>
</author>
<author>
<first>William L.</first>
<last>Quinton</last>
</author>
<author>
<first>Oliver</first>
<last>Sonnentag</last>
</author>
<abstract>About a fifth of the global wetland methane emissions originate from boreal peatlands, which represent an important land cover type in boreal landscapes in the sporadic permafrost zone. There, rising air temperatures could lead to warmer spring and longer growing seasons, changing landscape methane emissions. To quantify the effect of warmer spring conditions on methane emissions of a boreal peat landscape in the sporadic permafrost zone of northwestern Canada, we analyzed four years (2013 – 2016) of methane fluxes measured with the eddy covariance technique and long-term (1951-2016) meteorological observations from a nearby climate station. In May, after snowmelt was complete, mean air temperatures were more than 2 °C warmer in 2013, 2015, and 2016 than in 2014. Mean growing season (May-August) air temperatures, in contrast, differed by less than 1 °C over the four years. Warmer May air temperatures caused earlier wetland soil warming, with temperatures rising from ~0 °C to g12 °C 25 to 40 days earlier and leading to ~6 °C warmer mean soil temperatures between May and June. However, from July to August, soil temperatures were similar among years. Mean May to August and annual methane emissions (6.4 g CH4 m-2 and 9.4 g CH4 m-2, respectively) of years with warmer spring (i.e., May) temperatures exceeded emissions during the cooler year by 20-30 % (4.5 g CH4 m-2 and 7.2 g CH4 m-2, respectively). Among years with warmer springs, growing season methane emissions varied little (0.5 g CH4 m-2). The observed interannual differences are most likely caused by a strong soil temperature control on methane fluxes and large soil temperature differences during the spring. Thus, in a warming climate, methane emissions from waterlogged boreal peat landscapes at the southern limit of permafrost are likely to increase in response to more frequent occurrences of warm springs.</abstract>
<url hash="982526c0">G17-17001</url>
<pages>115009</pages>
<doi>10.1088/1748-9326/aa8c85</doi>
<bibkey>Helbig-2017-Warmer</bibkey>
<project>prj29</project>
</paper>
</volume>
<volume id="18">
<meta>
<booktitle>Climate Change Economics, Volume 08, Issue 01</booktitle>
<publisher>World Scientific Pub Co Pte Lt</publisher>
<address/>
<year>2017</year>
</meta>
<paper id="1">
<title>THE ECONOMY-WIDE IMPACTS OF CLIMATE CHANGE AND IRRIGATION DEVELOPMENT IN THE NILE BASIN: A COMPUTABLE GENERAL EQUILIBRIUM APPROACH</title>
<author>
<first>Tewodros Negash</first>
<last>Kahsay</last>
</author>
<author>
<first>Onno</first>
<last>Kuik</last>
</author>
<author>
<first>Roy</first>
<last>Brouwer</last>
</author>
<author>
<first>Pieter van der</first>
<last>Zaag</last>
</author>
<abstract>A multi-country, multi-sector computable general equilibrium (CGE) model is employed to evaluate the economy-wide impacts of climate change under the IPCC’s A2 and B1 scenarios and existing irrigation development plans in the Nile basin. The study reveals that climate change adversely affects mainly downstream Egypt and to a lesser extent Sudan, while it results in a limited impact in the upstream countries Ethiopia and the Equatorial Lakes region, where irrigated agriculture is still limited. The economic consequences for Egypt are especially substantial if the river basin countries pursue a unilateral irrigation development strategy. In order to prevent water use conflicts and ease water scarcity conditions, a cooperative water development strategy is needed as well as economic diversification in favor of less water-intensive sectors, combined with investments in water-saving infrastructure and improved irrigation efficiency.</abstract>
<url hash="c0463696">G17-18001</url>
<pages>1750004</pages>
<doi>10.1142/s201000781750004x</doi>
<bibkey>KAHSAY-2017-THE</bibkey>
<project>prj20</project>
</paper>
</volume>
<volume id="19">
<meta>
<booktitle>Water Resources Management, Volume 32, Issue 3</booktitle>
<publisher>Springer Science and Business Media LLC</publisher>
<address/>
<year>2017</year>
</meta>
<paper id="1">
<title>The Transboundary Impacts of Trade Liberalization and Climate Change on the Nile Basin Economies and Water Resource Availability</title>
<author>
<first>Tewodros Negash</first>
<last>Kahsay</last>
</author>
<author>
<first>Onno</first>
<last>Kuik</last>
</author>
<author>
<first>Roy</first>
<last>Brouwer</last>
</author>
<author>
<first>Pieter van der</first>
<last>Zaag</last>
</author>
<abstract>A multi-country, multi-sector computable general equilibrium (CGE) model is used for the first time to evaluate the economic and water resource availability effects of trade liberalization (removal of import tariffs) and facilitation (reducing non-tariff barriers) under climate change in the Nile Basin. The analysis uses the GTAP 9 Database and the GTAP-W model that distinguishes between rainfed and irrigated agriculture and implements water as a factor of production directly substitutable in the production process of irrigated agriculture. A full trade liberalization and improved trade facilitation scenario is considered with and without climate change. The study reveals that trade liberalization and facilitation generates substantial economic benefits and enhances economic growth and welfare in the Nile basin. The effect of instituting a free trade policy on water savings is found to be limited, while climate change improves water supply and hence irrigation water use, enhancing economic growth and welfare in the basin.</abstract>
<url hash="78fa51f3">G17-19001</url>
<pages>935-947</pages>
<doi>10.1007/s11269-017-1847-7</doi>
<bibkey>Kahsay-2017-The</bibkey>
<project>prj22</project>
</paper>
</volume>
<volume id="20">
<meta>
<booktitle>Ecohydrology, Volume 11, Issue 2</booktitle>
<publisher>Wiley</publisher>
<address/>
<year>2017</year>
</meta>
<paper id="1">
<title>Beaver-mediated water table dynamics in a Rocky Mountain fen</title>
<author>
<first>Daniel J.</first>
<last>Karran</last>
</author>
<author>
<first>Cherie J.</first>
<last>Westbrook</last>
</author>
<author>
<first>Angela</first>
<last>Bedard‐Haughn</last>
</author>
<abstract>Beaver dams are known to raise water tables in mineral soil environments but very little is known about their impact in wetlands, such as peatlands. Peatlands tend to have shallow water tables, and the position and tendency of the water table to fluctuate (i.e. stability) is a factor controlling the system's ability to store carbon and water. Many peatland environments, especially fens, offer ideal habitat for beaver and the potential for beaver dams to influence this link by manipulating water table dynamics requires investigation. Our objective was to determine the influence of beaver dams on water table dynamics of a Rocky Mountain fen. We monitored water tables in the peatland for four years while beaver dams were intact and two years after they were breached by an extreme flood event. We found that, because of the unique way in which dams were built, they connected the peatland to the stream and raised and stabilized already high water tables within a 150-m radius. Beaver-mediated changes to peatland water table regimes have the potential to enhance carbon sequestration and the peatland's ability to respond to external pressures such as climate change. Furthermore, beaver dams increased surface and groundwater storage, which has implications for regional water balances, especially in times of drought.</abstract>
<url hash="425264a9">G17-20001</url>
<pages>e1923</pages>
<doi>10.1002/eco.1923</doi>
<bibkey>Karran-2017-Beaver-mediated</bibkey>
<project>prj28</project>
</paper>
</volume>
<volume id="21">
<meta>
<booktitle>Atmospheric Research, Volume 191</booktitle>
<publisher>Elsevier BV</publisher>
<address/>
<year>2017</year>
</meta>
<paper id="1">
<title>Characteristics, atmospheric drivers and occurrence patterns of freezing precipitation and ice pellets over the Prairie Provinces and Arctic Territories of Canada: 1964–2005</title>
<author>
<first>Bohdan</first>
<last>Kochtubajda</last>
</author>
<author>
<first>Curtis</first>
<last>Mooney</last>
</author>
<author>
<first>Ronald E.</first>
<last>Stewart</last>
</author>
<abstract>Abstract Freezing precipitation and ice pellet events on the Canadian Prairies and Arctic territories of Canada often lead to major disruptions to air and ground transportation, damage power grids and prevent arctic caribou and other animals from accessing the plants and lichen they depend on for survival. In a warming climate, these hazards and associated impacts will continue to happen, although their spatial and temporal characteristics may vary. In order to address these issues, the occurrence of freezing rain, freezing drizzle, and ice pellets from 1964 to 2005 is examined using hourly weather observations at 27 manned 24 h weather stations across the different climatic regions of the Prairie Provinces and Arctic Territories of Canada. Because of the enormous size of the area and its diverse climatic regions, many temporal and spatial differences in freezing precipitation and ice pellet characteristics occur. The 12 most widespread freezing rain events over the study area are associated with only two atmospheric patterns with one linked to strong warm advection between low and high pressure centres and the other pattern associated with chinooks occurring east of the Rocky Mountains. Given the annual patterns of freezing rain occurrence found in this study, it is proposed that a maximum of five regimes exist and three occur within the Prairies and Arctic.</abstract>
<url hash="faee03cc">G17-21001</url>
<pages>115-127</pages>
<doi>10.1016/j.atmosres.2017.03.005</doi>
<bibkey>Kochtubajda-2017-Characteristics,</bibkey>
<project>prj5</project>
</paper>
</volume>
<volume id="22">
<meta>
<booktitle>Journal of Hydrology, Volume 550</booktitle>
<publisher>Elsevier BV</publisher>
<address/>
<year>2017</year>
</meta>
<paper id="1">
<title>Diagnosis of the hydrology of a small Arctic basin at the tundra-taiga transition using a physically based hydrological model</title>
<author>
<first>Sebastian A.</first>
<last>Krogh</last>
</author>
<author>
<first>John W.</first>
<last>Pomeroy</last>
</author>
<author>
<first>Philip</first>
<last>Marsh</last>
</author>
<abstract>Abstract A better understanding of cold regions hydrological processes and regimes in transitional environments is critical for predicting future Arctic freshwater fluxes under climate and vegetation change. A physically based hydrological model using the Cold Regions Hydrological Model platform was created for a small Arctic basin in the tundra-taiga transition region. The model represents snow redistribution and sublimation by wind and vegetation, snowmelt energy budget, evapotranspiration, subsurface flow through organic terrain, infiltration to frozen soils, freezing and thawing of soils, permafrost and streamflow routing. The model was used to reconstruct the basin water cycle over 28 years to understand and quantify the mass fluxes controlling its hydrological regime. Model structure and parameters were set from the current understanding of Arctic hydrology, remote sensing, field research in the basin and region, and calibration against streamflow observations. Calibration was restricted to subsurface hydraulic and storage parameters. Multi-objective evaluation of the model using observed streamflow, snow accumulation and ground freeze/thaw state showed adequate simulation. Significant spatial variability in the winter mass fluxes was found between tundra, shrubs and forested sites, particularly due to the substantial blowing snow redistribution and sublimation from the wind-swept upper basin, as well as sublimation of canopy intercepted snow from the forest (about 17% of snowfall). At the basin scale, the model showed that evapotranspiration is the largest loss of water (47%), followed by streamflow (39%) and sublimation (14%). The models streamflow performance sensitivity to a set of parameter was analysed, as well as the mean annual mass balance uncertainty associated with these parameters.</abstract>
<url hash="e85bac22">G17-22001</url>
<pages>685-703</pages>
<doi>10.1016/j.jhydrol.2017.05.042</doi>
<bibkey>Krogh-2017-Diagnosis</bibkey>
<project>prj9</project>
</paper>
<paper id="2">
<title>Assessment of nutrient loadings of a large multipurpose prairie reservoir</title>
<author>
<first>L. A.</first>
<last>Morales-Marín</last>
</author>
<author>
<first>H. S.</first>
<last>Wheater</last>
</author>
<author>
<first>K.-E.</first>
<last>Lindenschmidt</last>
</author>
<abstract>Abstract The relatively low water flow velocities in reservoirs cause them to have high capacities for retaining sediments and pollutants, which can lead to a reduction in downstream nutrient loading. Hence, nutrients can progressively accumulate in reservoirs, resulting in the deterioration of aquatic ecosystems and water quality. Lake Diefenbaker (LD) is a large multipurpose reservoir, located on the South Saskatchewan River (SSR), that serves as a major source of freshwater in Saskatchewan, Canada. Over the past several years, changes in land use (e.g. expansion of urban areas and industrial developments) in the reservoir’s catchment have heightened concerns about future water quality in the catchment and in the reservoir. Intensification of agricultural activities has led to an increase in augmented the application of manure and fertilizer for crops and pasture. Although previous research has attempted to quantify nutrient retention in LD, there is a knowledge gap related to the identification of major nutrient sources and quantification of nutrient export from the catchment at different spatial scales. Using the SPAtially Referenced Regression On Watershed (SPARROW) model, this gap has been addressed by assessing water quality regionally, and identifying spatial patterns of factors and processes that affect water quality in the LD catchment. Model results indicate that LD retains about 70% of the inflowing total nitrogen (TN) and 90% of the inflowing total phosphorus (TP) loads, of which fertilizer and manure applied to agricultural fields contribute the greatest proportion. The SPARROW model will be useful as a tool to guide the optimal implementation of nutrient management plans to reduce nutrient inputs to LD.</abstract>
<url hash="7152fd98">G17-22002</url>
<pages>166-185</pages>
<doi>10.1016/j.jhydrol.2017.04.043</doi>
<bibkey>Morales-Marín-2017-Assessment</bibkey>
<project>prj20</project>
</paper>
</volume>
<volume id="23">
<meta>
<booktitle>Earth's Future, Volume 5, Issue 12</booktitle>
<publisher>American Geophysical Union (AGU)</publisher>
<address/>
<year>2017</year>
</meta>
<paper id="1">
<title>Recent Very Hot Summers in Northern Hemispheric Land Areas Measured by Wet Bulb Globe Temperature Will Be the Norm Within 20 Years</title>
<author>
<first>Chao</first>
<last>Li</last>
</author>
<author>
<first>Xuebin</first>
<last>Zhang</last>
</author>
<author>
<first>Francis W.</first>
<last>Zwiers</last>
</author>
<author>
<first>Yuanyuan</first>
<last>Fang</last>
</author>
<author>
<first>A. M.</first>
<last>Michalak</last>
</author>
<abstract>Wet bulb Globe Temperature (WBGT) accounts for the effect of environmental temperature and humidity on thermal comfort, and can be directly related to the ability of the human body to dissipate excess metabolic heat and thus avoid heat stress. Using WBGT as a measure of environmental conditions conducive to heat stress, we show that anthropogenic influence has very substantially increased the likelihood of extreme high summer mean WBGT in northern hemispheric land areas relative to the climate that would have prevailed in the absence of anthropogenic forcing. We estimate that the likelihood of summer mean WGBT exceeding the observed historical record value has increased by a factor of at least 70 at regional scales due to anthropogenic influence on the climate. We further estimate that, in most northern hemispheric regions, these changes in the likelihood of extreme summer mean WBGT are roughly an order of magnitude larger than the corresponding changes in the likelihood of extreme hot summers as simply measured by surface air temperature. Projections of future summer mean WBGT under the RCP8.5 emissions scenario that are constrained by observations indicate that by 2030s at least 50% of the summers will have mean WBGT higher than the observed historical record value in all the analyzed regions, and that this frequency of occurrence will increase to 95% by mid-century.</abstract>
<url hash="50e7cb47">G17-23001</url>
<pages>1203-1216</pages>
<doi>10.1002/2017ef000639</doi>
<bibkey>Li-2017-Recent</bibkey>
<project>prj5</project>
</paper>
</volume>
<volume id="24">
<meta>
<booktitle>Journal of Hydrometeorology, Volume 18, Issue 8</booktitle>
<publisher>American Meteorological Society</publisher>
<address/>
<year>2017</year>
</meta>
<paper id="1">
<title>A Numerical Study of the June 2013 Flood-Producing Extreme Rainstorm over Southern Alberta</title>
<author>
<first>Yanping</first>
<last>Li</last>
</author>
<author>
<first>Kit K.</first>
<last>Szeto</last>
</author>
<author>
<first>Ronald E.</first>
<last>Stewart</last>
</author>
<author>
<first>Julie M.</first>
<last>Thériault</last>
</author>
<author>
<first>Liang</first>
<last>Chen</last>
</author>
<author>
<first>Bohdan</first>
<last>Kochtubajda</last>
</author>
<author>
<first>Anthony</first>
<last>Liu</last>
</author>
<author>
<first>Sudesh</first>
<last>Boodoo</last>
</author>
<author>
<first>Ron</first>
<last>Goodson</last>
</author>
<author>
<first>Curtis</first>
<last>Mooney</last>
</author>
<author>
<first>Sopan</first>
<last>Kurkute</last>
</author>
<abstract>Abstract A devastating, flood-producing rainstorm occurred over southern Alberta, Canada, from 19 to 22 June 2013. The long-lived, heavy rainfall event was a result of complex interplays between topographic, synoptic, and convective processes that rendered an accurate simulation of this event a challenging task. In this study, the Weather Research and Forecasting (WRF) Model was used to simulate this event and was validated against several observation datasets. Both the timing and location of the model precipitation agree closely with the observations, indicating that the WRF Model is capable of reproducing this type of severe event. Sensitivity tests with different microphysics schemes were conducted and evaluated using equitable threat and bias frequency scores. The WRF double-moment 6-class microphysics scheme (WDM6) generally performed better when compared with other schemes. The application of a conventional convective/stratiform separation algorithm shows that convective activity was dominant during the early stages, then evolved into predominantly stratiform precipitation later in the event. The HYSPLIT back-trajectory analysis and regional water budget assessments using WRF simulation output suggest that the moisture for the precipitation was mainly from recycling antecedent soil moisture through evaporation and evapotranspiration over the Canadian Prairies and the U.S. Great Plains. This analysis also shows that a small fraction of the moisture can be traced back to the northeastern Pacific, and direct uptake from the Gulf of Mexico was not a significant source in this event.</abstract>
<url hash="cd30f3fe">G17-24001</url>
<pages>2057-2078</pages>
<doi>10.1175/jhm-d-15-0176.1</doi>
<bibkey>Li-2017-A</bibkey>
<project>prj9</project>
</paper>
</volume>
<volume id="25">
<meta>
<booktitle>Journal of Meteorological Research, Volume 31, Issue 1</booktitle>
<publisher>Springer Science and Business Media LLC</publisher>
<address/>
<year>2017</year>
</meta>
<paper id="1">
<title>Circulation characteristics of persistent cold spells in central–eastern North America</title>
<author>
<first>Zhenhua</first>
<last>Li</last>
</author>
<author>
<first>A. H.</first>
<last>Manson</last>
</author>
<author>
<first>Yanping</first>
<last>Li</last>
</author>
<author>
<first>C. E.</first>
<last>Meek</last>
</author>
<abstract>The circulation patterns of persistent cold weather spells with durations longer than 10 days in central–eastern North America (United States and Canada; 32°–52°N, 95°–65°W) are investigated by using NCEP reanalysis data from 1948 to 2014. The criteria for the persistent cold spells are: (1) three-day averaged temperature anomalies for the regional average over the central–eastern United States and Canada must be below the 10th percentile, and (2) such extreme cold spells must last at least 10 days. The circulation patterns associated with these cold spells are examined to find the common signals of these events. The circulation anomaly patterns of these cold spells are categorized based on the El Nino–Southern Oscillation, Arctic Oscillation (AO), and other climate indices. The atmospheric circulation patterns that favor the cold spells are identified through composites of geopotential height maps for the cold spells. Negative AO phases favor persistent cold spells. Phases of sea surface temperature (SST) modes that are associated with warm SSTs in the eastern extratropical Pacific also favor persistent cold events in the study region. Stratospheric polar vortex breakdown alone is not a good predictor for the regional extreme cold spells in central–eastern North America. The meridional dispersions of quasi-stationary Rossby waves in the Pacific–North America sector in terms of cut-off zonal wavenumber modulated by background flow are analyzed to provide insight into the difference in evolution of the cold spells under different mean AO phases. The waveguide for AO > 1 is in a narrow latitudinal band centered on 40°N, whereas the waveguide for AO <–1 is in a broader latitudinal band from 40° to 65°N. The circulation patterns and lower boundary conditions favorable for persistent cold spells identified by this study can be a stepping-stone for improving winter subseasonal forecasting in North America.</abstract>
<url hash="758c949b">G17-25001</url>
<pages>250-260</pages>
<doi>10.1007/s13351-017-6146-y</doi>
<bibkey>Li-2017-Circulation</bibkey>
<project>prj9</project>
</paper>
</volume>
<volume id="26">
<meta>
<booktitle>Environmental Toxicology and Chemistry, Volume 37, Issue 2</booktitle>
<publisher>Wiley</publisher>
<address/>
<year>2017</year>
</meta>
<paper id="1">
<title>Assessing recovery of in vitro steroid production in male rainbow darter (<i>Etheostoma caeruleum</i>
) in response to municipal wastewater treatment plant infrastructure changes</title>
<author>
<first>Patricija</first>
<last>Marjan</last>
</author>
<author>
<first>Glen J. Van Der</first>
<last>Kraak</last>
</author>
<author>
<first>Deborah L.</first>
<last>MacLatchy</last>
</author>
<author>
<first>Meghan</first>
<last>Fuzzen</last>
</author>
<author>
<first>Leslie M.</first>
<last>Bragg</last>
</author>
<author>
<first>Mark E.</first>
<last>McMaster</last>
</author>
<author>
<first>Gerald R.</first>
<last>Tetreault</last>
</author>
<author>
<first>Mark R.</first>
<last>Servos</last>
</author>
<abstract>The present study examined in vitro 11-ketotestosterone and testosterone production by the testes of rainbow darter (Etheostoma caeruleum) collected from selected reference sites and downstream of 2 municipal wastewater treatment plants (MWWTPs; Waterloo and Kitchener) on the central Grand River (Ontario, Canada), over a 6-yr period (2011-2016). The main objective was to investigate if infrastructure upgrades at the Kitchener MWWTP in 2012 resulted in a recovery of this response in the post-upgrade period (2013-2016). Two supporting studies showed that the fall season is appropriate for measuring in vitro sex steroid production because it provides stable detection of steroid patterns, and that the sample handling practiced in the present study did not introduce a bias. Infrastructure upgrades of the Kitchener MWWTP resulted in significant reductions in ammonia and estrogenicity. After the upgrades, 11-ketotestosterone production by MWWTP-exposed fish increased in 2013 and it continued to recover throughout the study period of 2014 through 2016, returning to levels measured in reference fish. Testosterone production was less sensitive and it lacked consistency. The Waterloo MWWTP underwent some minor upgrades but the level of ammonia and estrogenicity remained variable over time. The production of 11-ketotestosterone and testosterone in rainbow darter below the Waterloo MWWTP was variable and without a clear recovery pattern over the course of the present study. The results of the present study demonstrated that measuring production of sex steroids (especially 11-ketotestosterone) over multiple years can be relevant for assessing responses in fish to environmental changes such as those resulting from major infrastructure upgrades. Environ Toxicol Chem 2018;37:501-514. © 2017 SETAC.</abstract>
<url hash="67393b75">G17-26001</url>
<pages>501-514</pages>
<doi>10.1002/etc.3986</doi>
<bibkey>Marjan-2017-Assessing</bibkey>
<project>prj23</project>
</paper>
</volume>
<volume id="27">
<meta>
<booktitle>Journal of Hydrology, Volume 554</booktitle>
<publisher>Elsevier BV</publisher>
<address/>
<year>2017</year>
</meta>
<paper id="1">
<title>Peatland water repellency: Importance of soil water content, moss species, and burn severity</title>
<author>
<first>Paul A.</first>
<last>Moore</last>
</author>
<author>
<first>Max</first>
<last>Lukenbach</last>
</author>
<author>
<first>Nicholas</first>
<last>Kettridge</last>
</author>
<author>
<first>Richard M.</first>
<last>Petrone</last>
</author>
<author>
<first>K. J.</first>
<last>Devito</last>
</author>
<author>
<first>J. M.</first>
<last>Waddington</last>
</author>
<abstract>Abstract Wildfire is the largest disturbance affecting peatlands, with northern peat reserves expected to become more vulnerable to wildfire as climate change enhances the length and severity of the fire season. Recent research suggests that high water table positions after wildfire are critical to limit atmospheric carbon losses and enable the re-establishment of keystone peatland mosses (i.e. Sphagnum). Post-fire recovery of the moss surface in Sphagnum-feathermoss peatlands, however, has been shown to be limited where moss type and burn severity interact to result in a water repellent surface. While in situ measurements of moss water repellency in peatlands have been shown to be greater for feathermoss in both a burned and unburned state in comparison to Sphagnum moss, it is difficult to separate the effect of water content from species. Consequently, we carried out a laboratory based drying experiment where we compared the water repellency of two dominant peatland moss species, Sphagnum and feathermoss, for several burn severity classes including unburned samples. The results suggest that water repellency in moss is primarily controlled by water content, where a sharp threshold exists at gravimetric water contents (GWC) lower than ∼1.4 g g−1. While GWC is shown to be a strong predictor of water repellency, the effect is enhanced by burning. Based on soil water retention curves, we suggest that it is highly unlikely that Sphagnum will exhibit strong hydrophobic conditions under field conditions.</abstract>
<url hash="df855c10">G17-27001</url>
<pages>656-665</pages>
<doi>10.1016/j.jhydrol.2017.09.036</doi>
<bibkey>Moore-2017-Peatland</bibkey>
<project>prj4</project>
</paper>
</volume>
<volume id="28">
<meta>
<booktitle>Water Resources Management, Volume 32, Issue 2</booktitle>
<publisher>Springer Science and Business Media LLC</publisher>
<address/>
<year>2017</year>
</meta>
<paper id="1">
<title>Estimating Sediment Loadings in the South Saskatchewan River Catchment</title>
<author>
<first>L. A.</first>
<last>Morales-Marín</last>
</author>
<author>
<first>H. S.</first>
<last>Wheater</last>
</author>
<author>
<first>Karl–Erich</first>
<last>Lindenschmidt</last>
</author>
<abstract>In river catchments, sediment fluxes facilitate the transport of nutrients and pollutants and reduce water quality, potentially impacting water body health and altering ecosystem functioning. Sediment transport processes also modify the morphology of catchments, and sediment deposition can reduce flow capacity in rivers and water storage capacity in reservoirs and lakes. In this paper, estimates of suspended sediment yields and concentrations in the South Saskatchewan River catchment located in western Canada are presented. The results stem from a SPARROW model, which indicates that the dominant sources of sediment are represented by agricultural fields and urbanized lands. Analyses of sediment retention in the major catchment reservoirs indicate that, as expected, reservoir storage capacity is negatively correlated with reservoir storage reduction and positively correlated with retention rate. Additionally, reservoir lifespans range from less than 100 years to over 9000 years. The results presented here will be useful to complement local environmental guidelines to allow better management of sediment erosion and deposition in the South Saskatchewan River catchment.</abstract>
<url hash="87e64c46">G17-28001</url>
<pages>769-783</pages>
<doi>10.1007/s11269-017-1838-8</doi>
<bibkey>Morales-Marín-2017-Estimating</bibkey>
<project>prj20</project>
</paper>
</volume>
<volume id="29">
<meta>
<booktitle>Biogeosciences, Volume 14, Issue 14</booktitle>
<publisher>Copernicus GmbH</publisher>
<address/>
<year>2017</year>
</meta>