-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathteam.json
More file actions
2040 lines (2040 loc) · 87.9 KB
/
team.json
File metadata and controls
2040 lines (2040 loc) · 87.9 KB
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
[
{
"name": "Dr. Jodie Rummer",
"title": "Professor",
"role": "Chief Investigator",
"email": "jodie.rummer@jcu.edu.au",
"startDate": "2013-01-01",
"endDate": null,
"description": "Dr Jodie Rummer is an Professor of Marine Biology in the College of Science and Engineering at James Cook University and formally a researcher in the ARC Centre of Excellence for Coral Reef Studies. She was the 2015-2016 recipient of the highly prestigious UNESCO-L'Oréal Women in Science Fellowship for Australia and New Zealand, an Australian Research Council (ARC) Super Scientist (2011-2014), an ARC Early Career Discovery Fellow (2015-2017), named one of Australia's top five scientists under 40 (2016), and Queensland's (Australia) Tall Poppy Scientist of the Year (2019).\n\nDr Rummer is a leading authority on the evolution of oxygen transport in fish and how fish maintain performance during stress. Her research, combines ecology, evolution, and physiology to address issues important to conservation, such as the effects of climate change and other human-caused problems on coral reef fishes, sharks, and rays and their potential for adaptation. Dr Rummer founded the Physioshark Project and has been leading this research programme and the students, staff, and volunteers involved since 2013.",
"image": "/images/team/dr-jodie-rummer-chief-investigator-physioshark-project.jpg",
"alt": "Dr. Jodie Rummer, Chief Investigator of the Physioshark Project",
"links": {
"personalWebsite": "https://jodierummer.com",
"labWebsite": "https://rummerlab.com",
"projectWebsite": "https://physioshark.com",
"researchGateSlug": "Jodie-Rummer",
"googleScholarId": "ynWS968AAAAJ",
"x": "physioshark",
"bluesky": "@physiologyfish.bsky.social",
"facebook": "https://www.facebook.com/physioshark",
"instagram": "https://www.instagram.com/physioshark",
"linkedin": "https://www.linkedin.com/in/jodie-rummer-486a9556/",
"github": "https://github.com/rummerlab",
"orcid": "0000-0001-6067-5892"
},
"affiliations": [
{
"institution": "James Cook University",
"department": "College of Science and Engineering",
"role": "Professor",
"location": "Townsville, Australia"
}
],
"education": [
{
"degree": "Ph.D.",
"field": "Marine Biology",
"institution": "University of British Columbia",
"year": "2010"
}
],
"awards": [
{
"name": "UNESCO-L'Oréal Women in Science Fellowship",
"year": "2015",
"description": "For Australia and New Zealand"
},
{
"name": "Queensland Tall Poppy Scientist of the Year",
"year": "2019",
"description": "Best Australian Scientist under 40"
}
],
"languages": [
"English",
"French (Conversational)"
]
},
{
"name": "Dr. Johann Mourier",
"title": "Researcher",
"role": "Partner Researcher",
"email": null,
"startDate": null,
"endDate": null,
"description": "In the past 10 years, Dr Mourier has become one of France's leading shark scientists. His research has focused on the ecology and conservation of marine predators, primarily sharks. He has been studying the behavioural, trophic, and movement ecology as well as and conservation biology of sharks using multiple advanced and non-invasive approaches including underwater observations, biologging, genetics, stable isotope analyses, and network theory. Most of his first studies, including his PhD research, were conducted in the remote and healthy coral reefs of French Polynesia (Pacific Ocean) on blacktip reef sharks. His research on juvenile reef sharks in Moorea served as a baseline for project PhysioShark. He is also involved in a citizen science program on elasmobranch (Shark Observatory of French Polynesia; ORP) since 2011. Dr Mourier has now published over 40 research papers in the field of behavioural ecology and shark science. These have generated nearly 1,000 citations (Google Scholar), and he has an overall H-Index of 18. This has established him as one of the leading early-career scientists in his field.",
"image": "/images/team/team-dr-johann-mourier-profile.jpg",
"alt": "Dr. Johann Mourier, Partner Researcher",
"links": {},
"affiliations": [],
"education": [],
"awards": [],
"languages": []
},
{
"name": "Dr. Serge Planes",
"title": "Research Director",
"role": "Partner Researcher",
"email": null,
"startDate": null,
"endDate": null,
"description": "Dr. Serge Planes, Research Director at the CNRS, has been involved in the study of population genetics of marine fish in the Pacific since the beginning of his career that started with his PhD in 1989. Over the past 30 years, he has published about 250 papers in international journals addressing population genetics of coral reefs, ecology, marine protected areas, and recruitment of marine fishes. With about 14,000 citations, his work has been highly recognized while demonstrating that coral reef fish populations are much more limited in space than was generally believed and that self-recruitment is significant drive. This view has major implications for conservation planning.\n\nSuch international recognition led Dr Planes to being invited to participate as a member of the Australian Centre of Excellence for Coral Reef Studies, and he was recently appointed as adjunct professor at Australian Institute or Marine Science. After having coordinated several European projects, numerous national projects, and the last Tara Pacific expedition, Dr Planes is presently directing the LABEX \"CORAIL\" awarded in 2011 for 10 years and renewed in 2019 for another 5 years, this being the major structural framework for research on coral reef ecology in France.",
"image": "/images/team/team-dr-serge-planes-profile.jpg",
"alt": "Dr. Serge Planes, Partner Researcher",
"links": {},
"affiliations": [
{
"institution": "CNRS",
"department": null,
"role": "Research Director",
"location": "France"
}
],
"education": [],
"awards": [],
"languages": []
},
{
"name": "Dr. Bridie Allan",
"title": "Researcher",
"role": "Partner Researcher",
"email": null,
"startDate": null,
"endDate": null,
"description": "Dr Bridie Allan is a researcher at the University of Otago in New Zealand. Her research explores how environmental changes can alter the mechanisms underlying population processes and how these changes scale to community dynamics. To do this, she uses field collections, observations and experiments in conjunction with laboratory experiments to investigate a wide range of environmental impacts that influence the physiology, behaviour and survival of fish.\n\nDr Allan's field sites span both tropical, temperate and polar regions.",
"image": "/images/team/team-dr-bridie-allan-profile.jpg",
"alt": "Dr. Bridie Allan, Partner Researcher",
"links": {},
"affiliations": [
{
"institution": "University of Otago",
"department": null,
"role": "Researcher",
"location": "New Zealand"
}
],
"education": [],
"awards": [],
"languages": []
},
{
"name": "Dr. Ian Bouyoucos",
"title": null,
"role": "Research collaborator",
"email": "ian.bouyoucos@my.jcu.edu",
"startDate": null,
"endDate": null,
"description": "Originally from New York, Ian completed his B.Sc. at the University of Michigan, and his M.Sc. at the University of Illinois under the supervision of Dr. Cory Suski. For his Master's thesis, he investigated the daily energy requirements of juvenile lemon sharks (Negaprion brevirostris) in relation to the energetic costs of fishing capture. For his PhD, he investigated the capacity for juvenile blacktip (Carcharhinus melanopterus) and lemon sharks (N. acutidens) to balance processes related to energy expenditure and acquisition while managing stressors across a range of environmental conditions in nursery habitats around Moorea, French Polynesia. In addition to Dr. Rummer, he is supervised by Dr. Colin Simpfendorfer.\n\nIan completed his Ph.D. as a co-tutelle at the Australian Research Council Centre of Excellence for Coral Reef Studies (James Cook University) and the Centre de Recherches Insulaires et Observatoire de l'Environnement (École Pratique des Hautes Études). He investigated the ecophysiology of global change for tropical sharks by testing hypotheses predicting species' vulnerability to global change phenomena, including ocean warming, acidification, and deoxygenation.\n\nIan has been involved in shark research since 2008. For his research, Ian utilises a range of techniques belonging to the \"Conservation Physiology Toolbox\" including respirometry and bio-logging. Before joining Physioshark in 2016, Ian's previous research focused on understanding the energetic costs, physiological stress, and behavioural responses of sharks to longline capture, including the implementation of bycatch devices.",
"image": "/images/team/team-dr-ian-bouyoucos-profile.jpg",
"alt": "Dr. Ian Bouyoucos, Research Collaborator",
"links": {
"personalWebsite": "ianbouyoucos.com"
},
"affiliations": [
{
"institution": "James Cook University",
"department": "ARC Centre of Excellence for Coral Reef Studies",
"role": "PhD Graduate",
"location": "Australia"
},
{
"institution": "École Pratique des Hautes Études",
"department": "Centre de Recherches Insulaires et Observatoire de l'Environnement",
"role": "PhD Graduate",
"location": "French Polynesia"
}
],
"education": [
{
"degree": "Ph.D.",
"field": "Marine Biology",
"institution": "James Cook University & École Pratique des Hautes Études",
"year": null
},
{
"degree": "M.Sc.",
"field": null,
"institution": "University of Illinois",
"year": null
},
{
"degree": "B.Sc.",
"field": null,
"institution": "University of Michigan",
"year": null
}
],
"awards": [],
"languages": []
},
{
"name": "Dr. Gail Schwieterman",
"title": null,
"role": "Research collaborator",
"email": null,
"startDate": null,
"endDate": null,
"description": "Gail's research focuses on the understanding the impact of anthropogenic activities on coastal fish physiology with an emphasis on sharks and skates. She is interested in the intersections of basic physiology, ecology, and management, and seeks to further our understanding of multi-stressor impacts on ecologically important (yet understudied) species.\n\nGail received the prestigious Thomas Watson Fellowship, which allowed her to spend a year traveling the world and exploring different issues related to marine conservation, as well as the highly competitive National Science Foundation Graduate Research Fellowship, which funded her graduate degree.",
"image": "/images/team/team-dr-gail-schwieterman-profile.jpg",
"alt": "Dr. Gail Schwieterman, Research Collaborator",
"links": {},
"affiliations": [],
"education": [],
"awards": [
{
"name": "Thomas Watson Fellowship",
"year": null,
"description": "Prestigious fellowship for world travel and marine conservation research"
},
{
"name": "National Science Foundation Graduate Research Fellowship",
"year": null,
"description": "Competitive fellowship funding graduate studies"
}
],
"languages": []
},
{
"name": "Carolyn Wheeler",
"title": null,
"role": "PhD Candidate",
"email": "carolyn.wheeler23@gmail.com",
"startDate": null,
"endDate": "2026-01-01",
"description": "Originally from New York, Carolyn completed her BS in Marine Science at the University of New England in Maine. Her undergraduate honor's thesis focused on determining sex and maturity of Atlantic sturgeon using non-lethal techniques. Additionally during this time, she collaborated with the University of Miami to study the reproductive biology of tiger sharks at an aggregation site in the Bahamas. These projects piqued her interest in fish physiology.\n\nCarolyn is a co-tutelle PhD student at the School for the Environment at the University of Massachusetts Boston and the ARC Centre of Excellence for Coral Reef Studies at James Cook University (JCU). She spent the first half of her PhD working with the Anderson Cabot Center for Ocean Life at the New England Aquarium in Boston studying the effects of temperature on development and physiological performance of epaulette shark embryos and hatchlings. She was recently awarded a graduate research fellowship through the American Australian Association to continue her research at JCU assessing the impacts of thermal stress on reproductive success in adult epaulette sharks.",
"image": "/images/team/team-carolyn-wheeler-profile.jpg",
"alt": "Carolyn Wheeler, PhD Candidate",
"links": null,
"affiliations": [
{
"institution": "University of Massachusetts Boston",
"department": "School for the Environment",
"role": "PhD Candidate",
"location": "Boston, USA"
},
{
"institution": "James Cook University",
"department": "ARC Centre of Excellence for Coral Reef Studies",
"role": "PhD Candidate",
"location": "Australia"
},
{
"institution": "New England Aquarium",
"department": "Anderson Cabot Center for Ocean Life",
"role": "Researcher",
"location": "Boston, USA"
}
],
"education": [
{
"degree": "BS",
"field": "Marine Science",
"institution": "University of New England",
"year": null
}
],
"awards": [
{
"name": "American Australian Association Graduate Research Fellowship",
"year": null,
"description": "Fellowship for research on thermal stress in epaulette sharks"
}
],
"languages": []
},
{
"name": "Dr. Ornella Weideli",
"title": null,
"role": "Research collaborator",
"email": null,
"startDate": null,
"endDate": null,
"description": "Ornella is a Swiss marine biologist that has been studying shark ecology for the past eleven years. She is particularly interested in the behavioural and trophic ecology of sharks, as well as the conservation of coastal juvenile shark populations. Ornella is experienced in using various non-invasive methods such as stable isotope analyses, DNA barcoding, catch and release practices, and underwater observations.\n\nOrnella first got involved into marine science during her internship at the renowned <a href=\"https://www.biminisharklab.com/\" target=\"_blank\" rel=\"noopener\" class=\"text-blue-600 hover:text-blue-800\">Bimini Biological Field Station</a> (BBFS) in 2009. Fascinated by this experience, she returned to the station in early 2011 to investigate the diet of juvenile lemon sharks for her Master thesis. Following multiple jobs as a research assistant in the US, Seychelles, and French Polynesia, Ornella started her PhD at the French University EPHE in collaboration with the <a href=\"https://saveourseas.com/sosf-darros-research-centre/\" target=\"_blank\" rel=\"noopener\" class=\"text-blue-600 hover:text-blue-800\">Save Our Seas Foundation - D'Arros</a> Research Centre (SOSF - DRC), the <a href=\"http://www.criobe.pf/\" target=\"_blank\" rel=\"noopener\" class=\"text-blue-600 hover:text-blue-800\">CRIOBE</a> and the Physioshark research programme. As part of her PhD, Ornella investigated the coexistence of two juvenile reef shark species and the possible effects of competition on the species' ecological niches. After obtaining her Ph.D. in summer 2020, Ornella continues to investigate sharks' trophic ecology, as well as anthropogenic impacts on the ecology and physiology of sharks. In addition, Ornella raises awareness of sharks by sharing her knowledge through public presentations, media engagements, as a scientific expedition leader for the Sail and Explore Association, and as a mentor and consultant for undergrad students. To learn more about Ornella's versatile work, <a href=\"https://www.ornellaweideli.com\" target=\"_blank\" rel=\"noopener\" class=\"text-blue-600 hover:text-blue-800\">visit her website</a>.",
"image": "/images/team/team-dr-ornella-weideli-profile.jpg",
"alt": "Dr. Ornella Weideli, Research Collaborator",
"links": {
"personalWebsite": "ornellaweideli.com"
},
"affiliations": [],
"education": [
{
"degree": "Ph.D.",
"field": null,
"institution": "EPHE",
"year": "2020"
}
],
"awards": [],
"languages": []
},
{
"name": "José E. Trujillo",
"title": null,
"role": "PhD Candidate",
"email": null,
"startDate": null,
"endDate": "2026-01-01",
"description": "José is a PhD student investigating the ecological importance of nursery grounds to shark populations. His research is focused in the interplay between the habitat configuration and the mechanisms newborn sharks employ to deal with predation. His research tries to understand how the structural complexity of habitats and the environmental conditions are related to sharks' refuge availability, and how the anti-predator strategies of newborn sharks are affected by the habitat they inhabit.\n\nHis previous study related to the ecology of shark nursery grounds investigated the effect of kelp forest complexity in nursery habitat selection in egg laying sharks.",
"image": "/images/team/team-jose-trujillo-profile.jpg",
"alt": "José E. Trujillo, PhD Candidate",
"links": {},
"affiliations": [],
"education": [],
"awards": [],
"languages": []
},
{
"name": "Rachel Skubel",
"title": null,
"role": "Research collaborator",
"email": "rachel.skubel@gmail.com",
"startDate": null,
"endDate": null,
"description": "Rachel completed her Ph.D. at the University of Miami's Abess Center for Ecosystem Science and Policy / Shark Research and Conservation Program.\n\nShe uses an interdisciplinary approach to study shark / climate / human interactions in South Florida, namely through ecophysiological indicators of risk in sharks, and socio-ecological systems analysis of shark fisheries.",
"image": "/images/team/team-rachel-skubel-profile.jpg",
"alt": "Rachel Skubel, Research Collaborator",
"links": {},
"affiliations": [
{
"institution": "University of Miami",
"department": "Abess Center for Ecosystem Science and Policy",
"role": "PhD Graduate",
"location": "Miami, USA"
}
],
"education": [
{
"degree": "Ph.D.",
"field": "Ecosystem Science and Policy",
"institution": "University of Miami",
"year": null
}
],
"awards": [],
"languages": []
},
{
"name": "Dr. Björn Illing",
"title": "Post-doctoral Researcher",
"role": "Post-doc",
"email": "bjoern.illing@gmail.com",
"startDate": null,
"endDate": "2026-01-01",
"description": "Originally from Germany, Dr. Illing earned his diploma (2009) at the University of Hamburg conducting eco-morphological research on spawning aggregations of a temperate clupeid fish species. His doctoral studies (2016) focused on how environmental stressors affect the growth, condition and survival of Atlantic herring offspring at the University of Hamburg, working in parallel at a federal German research institute developing a novel hyperbaric swimming flume for testing fish species during extended oceanic spawning migrations. Currently in the Rummer lab, he investigates the effects of environmental stressors on coral reef fish larvae. His research is partially funded by the Company of Biologists.",
"image": "/images/team/bjorn-illing.png",
"alt": "Dr. Björn Illing, Post-doctoral Researcher",
"links": {
"researchGateSlug": "Bjoern_Illing"
},
"affiliations": [],
"education": [
{
"degree": "Ph.D.",
"field": "Marine Biology",
"institution": "University of Hamburg",
"year": "2016"
},
{
"degree": "Diploma",
"field": "Marine Biology",
"institution": "University of Hamburg",
"year": "2009"
}
],
"awards": [],
"languages": [
"German",
"English"
]
},
{
"name": "Sybille Hess",
"title": null,
"role": "PhD Candidate",
"email": "sybille.hess@gmail.com",
"startDate": null,
"endDate": "2026-01-01",
"description": "Originally from Switzerland, Sybille completed her MSc at JCU with Drs Jodie Rummer & Amelia Wenger. Her PhD research at JCU, supervised by Dr Rummer and co-supervised by Drs Andy Hoey & Amelia Wenger, investigates how poor water quality (e.g., increasing levels of suspended sediments) affects fish metabolic performance, the consequences for activities such as swimming, and potential impacts on fish community structure. Her work primarily focuses on fish larvae and juveniles, combining lab-based and field experiments.",
"image": "/images/team/sybille-hess.png",
"alt": "Sybille Hess, PhD Candidate",
"links": null,
"affiliations": [
{
"institution": "James Cook University",
"department": null,
"role": "PhD Candidate",
"location": "Australia"
}
],
"education": [
{
"degree": "MSc",
"field": null,
"institution": "James Cook University",
"year": null
}
],
"awards": [],
"languages": []
},
{
"name": "Tiffany Nay",
"title": null,
"role": "PhD Candidate",
"email": "tiffany.nay@gmail.com",
"startDate": null,
"endDate": "2026-01-01",
"description": "Tiffany earned her BSc in Marine Biology from the University of West Florida, spending summers in Wakatobi, Southeast Sulawesi, Indonesia studying crab-eating frogs, mudskipper fishes, and sea snakes. After completing her MSc at JCU researching fish microhabitat use in coral reefs and mangrove ecosystems, she began her PhD under the supervision of Drs. Rummer, Hoey, and Johansen, expanding upon her interests in microhabitat use.",
"image": "/images/team/tiffany-nay.png",
"alt": "Tiffany Nay, PhD Candidate",
"links": null,
"affiliations": [
{
"institution": "James Cook University",
"department": null,
"role": "PhD Candidate",
"location": "Australia"
}
],
"education": [
{
"degree": "MSc",
"field": null,
"institution": "James Cook University",
"year": null
},
{
"degree": "BSc",
"field": "Marine Biology",
"institution": "University of West Florida",
"year": null
}
],
"awards": [],
"languages": []
},
{
"name": "Eva Jacquesson",
"title": null,
"role": "MSc Student",
"email": "eva.jacquesson@gmail.com",
"startDate": null,
"endDate": "2026-01-01",
"description": "Eva is based at the Centre de Recherche Insulaire et Observatoire de l'Environnement (CRIOBE) in Papetoai, Moorea, Polynésie française.",
"image": "/images/team/eva-jacquesson.jpeg",
"alt": "Eva Jacquesson, MSc Student",
"links": {},
"affiliations": [
{
"institution": "CRIOBE",
"department": null,
"role": "MSc Student",
"location": "Papetoai, Moorea, Polynésie française"
}
],
"education": [],
"awards": [],
"languages": []
},
{
"name": "Nao Nakamura",
"title": "Laboratory and Field Technician",
"role": "Technical Staff",
"email": "nao.nakamura34@gmail.com",
"startDate": null,
"endDate": null,
"description": "Originally from Japan, but grew up in France where they completed their MSc (Hons) at Toulouse, Paul Sabatier University, specializing in animal behavior, cognition and neurosciences. During this year, they studied the sensory capacity of the clownfish toward different water cues and used histological protocols to measure different parts of brain involved in recognition. They have since been employed by CRIOBE in Moorea, French Polynesia as a research assistant (both field and laboratory) working on many subjects including: PCC (post-larvae capture and culture, catching fish by crest net and by light-trap), fish behaviour, coral larvae behaviour, annual monitoring of juveniles lemon and black tip reef shark populations, scientific diving to record lemon shark behaviour, annual monitoring of glass eel population, etc. They have also been working with Dr. Rummer on her ongoing project -- #physioshark -- as a field and laboratory assistant focusing on blood sampling and analyses.",
"image": "/images/team/nao-nakamura.png",
"alt": "Nao Nakamura, Laboratory and Field Technician",
"links": {},
"affiliations": [
{
"institution": "CRIOBE",
"department": null,
"role": "Laboratory and Field Technician",
"location": "Papetoai, Moorea, Polynésie française"
}
],
"education": [
{
"degree": "MSc",
"field": "Animal Behavior, Cognition and Neurosciences",
"institution": "Toulouse, Paul Sabatier University",
"year": null
}
],
"awards": [],
"languages": [
"Japanese",
"French"
]
},
{
"name": "Dr. Ian McLeod",
"title": "Senior Research Scientist",
"role": "Alumni",
"email": "ian.mcleod@gmail.com",
"startDate": null,
"endDate": "2014",
"description": "Dr. McLeod is currently employed as a Senior Research Scientist at TropWATER, James Cook University.",
"image": "/images/team/ian-mcleod.png",
"alt": "Dr. Ian McLeod, Alumni",
"links": {
"researchGateSlug": "Ian_Mcleod4"
},
"affiliations": [
{
"institution": "James Cook University",
"department": "TropWATER",
"role": "Senior Research Scientist",
"location": "Australia"
}
],
"education": [
{
"degree": "Ph.D.",
"field": null,
"institution": "James Cook University",
"year": "2014"
}
],
"awards": [],
"languages": []
},
{
"name": "Monica Morin",
"title": null,
"role": "MSc Student",
"email": "morinmonica12@gmail.com",
"startDate": null,
"endDate": "2026-01-01",
"description": "Originally from Massachusetts, Monica earned her BS in Marine Science from the University of New England in Maine. Her senior research focused on ecosystem based modeling to determine carrying capacity of bivalve aquaculture. She has been interested in the impacts climate change has on marine ecosystems, and will be working with Dr. Rummer to determine how these impacts will effect the future of reef fish in coral reef systems.",
"image": "/images/team/monica-morin.png",
"alt": "Monica Morin, MSc Student",
"links": {},
"affiliations": [
{
"institution": "University of New England",
"department": null,
"role": "BS Graduate",
"location": "Maine, USA"
}
],
"education": [
{
"degree": "BS",
"field": "Marine Science",
"institution": "University of New England",
"year": null
}
],
"awards": [],
"languages": []
},
{
"name": "Leteisha Prescott",
"title": null,
"role": "MSc Student",
"email": "leteisha.prescott@my.jcu.edu.au",
"startDate": "2015",
"endDate": null,
"description": "Originally from the Sunshine Coast, Leteisha completed her undergraduate degree at JCU. Since late 2015, she has been an intern in Dr. Jodie Rummer's lab, where she has been working closely with Sybille Hess (PhD candidate) investigating how suspended sediments can impair oxygen uptake in coral reef fishes. She is now starting her Master's research with Drs. Jodie Rummer and Naomi Gardiner, specifically examining the gills of coral reef fishes in hopes of understanding the changes they make when they experience increased temperatures during a coral bleaching event.",
"image": "/images/team/leteisha-prescott.png",
"alt": "Leteisha Prescott, MSc Student",
"links": {},
"affiliations": [
{
"institution": "James Cook University",
"department": null,
"role": "MSc Student",
"location": "Australia"
}
],
"education": [
{
"degree": "BSc",
"field": null,
"institution": "James Cook University",
"year": null
}
],
"awards": [],
"languages": []
},
{
"name": "Dare Lawrence",
"title": null,
"role": "Honours Student",
"email": "dare.lawrence@my.jcu.edu.au",
"startDate": null,
"endDate": "2026-01-01",
"description": "My interests are in heavy metal accumulation in fish that are ecologically and commercially important. My research spans the North Queensland Coast and inland parts of the Great Barrier Reef. I am co-supervised by Dr. Rummer and Dr. Angela Capper.",
"image": null,
"alt": "Dare Lawrence, Honours Student",
"links": {},
"affiliations": [
{
"institution": "James Cook University",
"department": null,
"role": "Honours Student",
"location": "Australia"
}
],
"education": [],
"awards": [],
"languages": []
},
{
"name": "Kristy Potgieter",
"title": null,
"role": "Honours Student",
"email": "kristy.potgieter@my.jcu.edu.au",
"startDate": null,
"endDate": "2026-01-01",
"description": "",
"image": null,
"alt": "Kristy Potgieter, Honours Student",
"links": {},
"affiliations": [
{
"institution": "James Cook University",
"department": null,
"role": "Honours Student",
"location": "Australia"
}
],
"education": [],
"awards": [],
"languages": []
},
{
"name": "Lauren Nadler",
"title": null,
"role": "PhD Student",
"email": "lauren.nadler@my.jcu.edu.au",
"startDate": null,
"endDate": null,
"description": "Originally from the USA, Lauren completed her undergraduate studies in marine science at Boston University before moving to Glasgow, Scotland for a Master of Research degree. For her PhD at JCU, she is studying the potential impacts of climate change on schooling behaviour in coral reef fish.",
"image": "/images/team/lauren-nadler.jpg",
"alt": "Lauren Nadler, PhD Student",
"links": {
"personalWebsite": "http://laurenenadler.weebly.com"
},
"affiliations": [
{
"institution": "James Cook University",
"department": null,
"role": "PhD Student",
"location": "Australia"
}
],
"education": [
{
"degree": "Master of Research",
"field": null,
"institution": "University of Glasgow",
"year": null
},
{
"degree": "BSc",
"field": "Marine Science",
"institution": "Boston University",
"year": null
}
],
"awards": [],
"languages": []
},
{
"name": "Floriaan Devloo-Delva",
"title": null,
"role": "Volunteer",
"email": "floriaan.devloo.delva@hotmail.com",
"startDate": null,
"endDate": null,
"description": "Floriaan followed an Erasmus Mundus in Marine Biodiversity and Conservation at the universities of Ghent (Belgium), Algarve (Portugal) and Oviedo (Spain), finishing with highest distinction. He is currently in the process of publishing his thesis \"The ecological and genetic characterisation of an invasive mussel (Xenostrobus securis) in Northern Spain\". He was also privileged to present this topic on the YOUMARES 2015 conference in Bremen (Germany). Now traveling to gain more experience and looking into possible PhD positions, he is truly passionate about shark research and conservation, which led him to the Rummer lab, feeding the amazing epaulette sharks.",
"image": "/images/team/floriaan-devloo-delva.png",
"alt": "Floriaan Devloo-Delva, The Belgian volunteer",
"links": {},
"affiliations": [
{
"institution": "Multiple Universities",
"department": "Erasmus Mundus Program",
"role": "Graduate",
"location": "Europe"
}
],
"education": [
{
"degree": "Master",
"field": "Marine Biodiversity and Conservation",
"institution": "Universities of Ghent, Algarve, and Oviedo",
"year": "2015"
}
],
"awards": [],
"languages": []
},
{
"name": "Dennis Heinrich",
"title": null,
"role": "Alumni",
"email": "dennis.heinrich@my.jcu.edu.au",
"startDate": null,
"endDate": "2013",
"description": "Dennis earned his Honours (1st class) at James Cook University under the supervision of Dr Jodie Rummer, Prof. Philip Munday, Prof. Colin Simpfendorfer, and Dr Michelle Heupel where he focused on understanding how near future ocean acidification conditions could affect a benthic coral reef associated shark, the epaulette shark. His research has been published in Conservation Physiology (\"A product of its environment: the epaulette shark (Hemiscyllium ocellatum) exhibits physiological tolerance to elevated environmental CO2\") and ICES Journal of Marine Science (\"Foraging behaviour of the epaulette shark (Hemiscyllium ocellatum) is not affected by elevated CO2\"). He started his PhD in March 2016 with Dr. Charlie Huveneers and the Southern Shark Ecology Group at Flinders University in Adelaide.",
"image": "/images/team/dennis-heinrich.jpg",
"alt": "Dennis Heinrich, Alumni",
"links": {},
"affiliations": [
{
"institution": "James Cook University",
"department": null,
"role": "Honours Graduate",
"location": "Australia"
}
],
"education": [
{
"degree": "Honours",
"field": "Marine Biology",
"institution": "James Cook University",
"year": "2013"
}
],
"awards": [],
"languages": []
},
{
"name": "Alyssa Bowden",
"title": null,
"role": "Alumni",
"email": "liss.bowden@csiro.au",
"startDate": null,
"endDate": "2013",
"description": "Alyssa earned her BSc in Marine Biology from the University of North Carolina at Wilmington and her MSc in Marine Biology from James Cook University where she focused on gill remodelling in tropical reef fish as a result of elevated temperatures. Her research was published in Comparative Biochemistry and Physiology A (\"Alterations in gill structure in tropical reef fishes as a result of elevated temperatures\"). She is currently working on her PhD at the University of Tasmania studying the physiological consequences of amoebic gill disease in Atlantic salmon with Prof. Peter Frappell, Dr Andrea Morash, and Dr Sarah Andrewartha.",
"image": "/images/team/alyssa-bowden.png",
"alt": "Alyssa Bowden, Alumni",
"links": {},
"affiliations": [
{
"institution": "University of Tasmania",
"department": null,
"role": "PhD Student",
"location": "Australia"
}
],
"education": [
{
"degree": "MSc",
"field": "Marine Biology",
"institution": "James Cook University",
"year": "2013"
},
{
"degree": "BSc",
"field": "Marine Biology",
"institution": "University of North Carolina at Wilmington",
"year": null
}
],
"awards": [],
"languages": []
},
{
"name": "Adam Habary",
"title": null,
"role": "Alumni",
"email": "adamhabary@hotmail.com",
"startDate": null,
"endDate": null,
"description": "Adam earned his BSc in general biology from the University of Southern Denmark, finishing with a research project investigating Harbour Porpoise (Phocoena phocoena) click differentiation. He later enrolled as a Cand. Scient. at the University of Copenhagen, studying marine biology. His research at James Cook University focused on the link between the optimal temperature for aerobic performance in coral reef fishes and their temperature preference.",
"image": "/images/team/adam-habary.png",
"alt": "Adam Habary, Alumni",
"links": {},
"affiliations": [],
"education": [
{
"degree": "MSc",
"field": "Marine Biology",
"institution": "University of Copenhagen",
"year": null
},
{
"degree": "BSc",
"field": "Biology",
"institution": "University of Southern Denmark",
"year": null
}
],
"awards": [],
"languages": []
},
{
"name": "Daniel Kraver",
"title": null,
"role": "Alumni",
"email": "Daniel.kraver@my.jcu.edu.au",
"startDate": null,
"endDate": "2015",
"description": "Originally from Connecticut, Daniel earned his BSc degree from Dickinson College in Carlisle, Pennsylvania in 2012. His research interests include ecology, physiology, and conservation of elasmobranchs and other highly exploited marine fishes. For his Master's research, he investigated the developmental & metabolic responses of epaulette shark (Hemiscyllium ocellatum) under environmental conditions associated with climate change. He is currently employed as a Reef Resilience Coordinator for the coral reef conservation program at the Florida Department of Environmental Protection.",
"image": "/images/team/daniel-kraver.jpg",
"alt": "Daniel Kraver, Alumni",
"links": {},
"affiliations": [
{
"institution": "Florida Department of Environmental Protection",
"department": "Coral Reef Conservation Program",
"role": "Reef Resilience Coordinator",
"location": "Florida, USA"
}
],
"education": [
{
"degree": "MSc",
"field": null,
"institution": "James Cook University",
"year": "2015"
},
{
"degree": "BSc",
"field": null,
"institution": "Dickinson College",
"year": "2012"
}
],
"awards": [],
"languages": []
},
{
"name": "Ian Silver-Gorges",
"title": null,
"role": "Alumni",
"email": "isilverg@oberlin.edu",
"startDate": "2014",
"endDate": "2015",
"description": "Originally from Washington D.C., Ian studied Biology at Oberlin College in Ohio. At JCU, he assisted with epaulette shark research and husbandry in the Rummer Lab. His previous experiences include assisting with research on deep reef fauna at the Smithsonian National Museum of Natural History (D.R.O.P. Project, Dr. Carole Baldwin) and conducting estuarine fish research at Old Woman Creek N.E.R.R. (Dr. Kristin Arend).",
"image": "/images/team/ian-silver-gorges.jpg",
"alt": "Ian Silver-Gorges, SIT program Alumni",
"links": {},
"affiliations": [
{
"institution": "Oberlin College",
"department": null,
"role": "Student",
"location": "Ohio, USA"
}
],
"education": [],
"awards": [],
"languages": []
},
{
"name": "Stine Henriksen",
"title": null,
"role": "Alumni",
"email": "fleckner86@hotmail.com",
"startDate": null,
"endDate": "2014",
"description": "Stine earned her BSc in Biology with a Minor in Ecology and Physiology from the University of Southern Denmark. She decided to do part of her Masters degree at James Cook University where she discovered her interest in Fisheries Science and Fish Physiology. Her research interests involve sharks and how they cope with post-release stress.",
"image": "/images/team/stine-henriksen.png",
"alt": "Stine Henriksen, Special Topics Alumni",
"links": {},
"affiliations": [],
"education": [
{
"degree": "BSc",
"field": "Biology",
"institution": "University of Southern Denmark",
"year": null
}
],
"awards": [],
"languages": []
},
{
"name": "Katya Jay",
"title": null,
"role": "Alumni",
"email": "kjay@macalester.edu",
"startDate": null,
"endDate": null,
"description": "Originally from Portland, Oregon, Katya was in her third year studying Biology and Geology at Macalester College in Minnesota. Previous and ongoing experience includes researching the evolutionary history and biogeography of a genus of leaf-litter arachnids from the Wet Tropics at Macalester College. She did a study abroad program in Australia through the School for International Training, and while with the Rummer Lab, she assisted with the mudskipper research.",
"image": "/images/team/katya-jay.jpg",
"alt": "Katya Jay, SIT Student Alumni",
"links": {},
"affiliations": [
{
"institution": "Macalester College",
"department": null,
"role": "Student",
"location": "Minnesota, USA"
}
],
"education": [],
"awards": [],
"languages": []
},
{
"name": "Katherine Corkill",
"title": "Lab Technician",
"role": "Alumni",
"email": "katherine.corkill@jcu.edu.au",
"startDate": null,
"endDate": "2014",
"description": "",
"image": "/images/team/katherine-corkill.png",
"alt": "Katherine Corkill, Lab Technician Alumni",
"links": {},
"affiliations": [],
"education": [],
"awards": [],
"languages": []
},
{
"name": "Julia Peters",
"title": null,
"role": "Alumni",
"email": "julia_peters@brown.edu",
"startDate": null,
"endDate": null,
"description": "Originally from New Jersey, USA, Julia worked towards a BSc in Environmental Science at Brown University in Rhode Island. Her interest in marine biology & conservation stemmed largely from previous work at the Cape Eleuthera Institute in the Bahamas during her gap year where she was involved with a shark physiology study investigating the consequences of commercial fishing practices. At JCU, she worked with Connor on a study determining the metabolic costs of elevated temperatures in neonate epaulette sharks.",
"image": "/images/team/julia-peters.png",
"alt": "Julia Peters, Undergraduate Alumni",
"links": {},
"affiliations": [
{
"institution": "Brown University",
"department": null,
"role": "Student",
"location": "Rhode Island, USA"
}
],
"education": [],
"awards": [],
"languages": []
},
{
"name": "Martijn Johnson",
"title": null,
"role": "Alumni",
"email": "martijn.johnson@my.jcu.edu.au",
"startDate": null,
"endDate": "2015",
"description": "Martijn earned his bachelors degree in applied science (majoring in fisheries) from University of Tasmania. His passion led him to Townsville to study tropical fish and fisheries. For his MSc in Marine Tropical Biology and Ecology, he explored the development of a tropical shark under future climate change conditions. He is currently employed by the Department of Primary Industries NSW Fisheries Resources Department.",
"image": "/images/team/martijn-johnson.png",
"alt": "Martijn Johnson, MSc Alumni",
"links": {},
"affiliations": [
{
"institution": "Department of Primary Industries NSW",
"department": "Fisheries Resources Department",
"role": "Employee",
"location": "NSW, Australia"
}
],
"education": [
{
"degree": "MSc",
"field": "Marine Tropical Biology and Ecology",
"institution": "James Cook University",
"year": "2015"
},
{
"degree": "BSc",
"field": "Applied Science (Fisheries)",
"institution": "University of Tasmania",
"year": null
}
],
"awards": [],
"languages": []
},
{
"name": "Andrew Corley",
"title": null,
"role": "Alumni",
"email": "andrew.corley@my.jcu.edu.au",
"startDate": null,
"endDate": "2015",
"description": "Andrew earned his BA in Ecology and Evolutionary Biology from the University of Colorado. Then, he worked as a SCUBA instructor for several years in Hawaii. His passion for tropical marine fauna brought him to James Cook University where he focused his interests on anthropogenic effects on coral reef-associated organisms. For his MSc, he examined the physiological consequences of long-term exposure to high carbon dioxide levels in reef fishes.",
"image": "/images/team/andrew-corley.png",
"alt": "Andrew Corley, MSc Alumni",
"links": {},
"affiliations": [],
"education": [
{
"degree": "MSc",
"field": null,
"institution": "James Cook University",
"year": "2015"
},
{
"degree": "BA",
"field": "Ecology and Evolutionary Biology",
"institution": "University of Colorado",
"year": null
}
],
"awards": [],
"languages": []
},
{
"name": "Connor Gervais",
"title": null,
"role": "Alumni",
"email": "connor.gervais@my.jcu.edu.au",
"startDate": null,
"endDate": "2016",
"description": "Originally from California, Connor earned his BSc in Marine Biology from the University of California, Santa Cruz. He earned his MSc (Distinction) at JCU with the Rummer Lab where he explored the impact of elevated temperatures on movement, behaviour, and growth in juvenile epaulette sharks (Hemiscyllium ocellatum). His research interests mainly relate to the impact climate change is having on marine organisms, especially elasmobranchs. He also has an ongoing collaboration with Dr Marianne Porter and her FAB Lab at Florida Atlantic University. His recent paper \"Developing in warm water: Irregular colouration and patterns of a neonate elasmobranch\" was published in Marine Biodiversity with Dr. Johann Mourier and Dr. Jodie Rummer.",
"image": "/images/team/connor-gervais.png",
"alt": "Connor Gervais, MSc Alumni",
"links": {},
"affiliations": [],
"education": [
{
"degree": "MSc",
"field": "Marine Biology",
"institution": "James Cook University",
"year": "2016"