-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpublications.html
1072 lines (1001 loc) · 92.8 KB
/
publications.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags always come first -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Homepage</title>
<link rel="stylesheet" href="css/main.css" type="text/css">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.2/css/bootstrap.min.css" integrity="sha384-y3tfxAZXuh4HwSYylfB+J125MxIs6mR5FOHamPBG064zB+AFeWH94NdvaCBm8qnd" crossorigin="anonymous">
<!-- Prepare a container for your calendar. -->
<script src="https://cdn.rawgit.com/IonicaBizau/github-calendar/gh-pages/dist/github-calendar.min.js"></script>
<!-- Optionally, include the theme (if you don't want to struggle to write the CSS) -->
<link rel="stylesheet" href="https://cdn.rawgit.com/IonicaBizau/github-calendar/gh-pages/dist/github-calendar.css"/>
</head>
<body>
<div class="container">
<nav>
<ul class='nav nav-pills'>
<li id='home_page' class='nav-item'><a class='nav-link' href="/index.html">Home</a></li>
<li id='astronomy_page'class='nav-item'><a class='nav-link' href="/astronomy.html">Astronomy</a></li>
<li id='photography_page'class='nav-item hidden-xs-down'><a class='nav-link' href="/photography.html">Photography</a></li>
<li id='timelapse_page'class='nav-item hidden-sm-down'><a class='nav-link' href="/timelapse.html">Time-lapse</a></li>
<li id='publications_page'class='nav-item'><a class='nav-link' href="/publications.html">Publications</a></li>
<li id='python_page'class='nav-item hidden-lg-down'><a class='nav-link' href="/python.html">Python</a></li>
<li id='webdev_page'class='nav-item hidden-lg-down'><a class='nav-link' href="/webdev.html">Web Dev</a></li>
</ul>
</nav>
</div>
<div id='publications' class='container'>
<h1>2020</h1>
<div class='paper'>
<p class='title'> NGTS-10b: The shortest period hot Jupiter yet discovered </p>
<p class='authors'> <strong>McCormac, James</strong>; Gillen, Edward; Jackman, James A. G.; Brown, David J. A.; Bayliss, Daniel; Wheatley, Peter J.; West, Richard G.; Anderson, David R.; Armstrong, David J.; Bouchy, Francois; Briegal, Joshua T.; Burleigh, Matthew R.; Cabrera, Juan; Casewell, Sarah L.; Chaushev, Alexander; Chazelas, Bruno; Chote, Paul; Cooke, Benjamin F.; Costes, Jean C.; Csizmadia, Szilard Eigmuller, Philipp; Erikson, Anders; Foxell, Emma; Gaensicke, Boris T.; Goad, Michael R.; Gunther, Maximilian N.; Hodgkin, Simon T.; Hooton, Matthew J.; Jenkins, James S.; Lambert, Gregory; Lendl, Monika; Longstaff, Emma; Louden, Tom; Moyano, Maximiliano; Nielsen, Louise D.; Pollacco, Don; Queloz, Didier; Rauer, Heike; Raynard, Liam; Smith, Alexis M. S.; Smalley, Barry; Soto, Maritza; Turner, Oliver; Udry, Stephane; Vines, Jose I.; Walker, Simon. R.; Watson, Christopher A. </p>
<p class='date'> Feb 2020 </p>
<p class='journal'>
<a href="https://ui.adsabs.harvard.edu/abs/2019arXiv190912424M/abstract">ADS</a>
</p>
</div>
<div class='paper'>
<p class='title'> An Eclipsing Substellar Binary in a Young Triple System discovered by SPECULOOS </p>
<p class='authors'> Triaud, Amaury H. M. J.; Burgasser, Adam J.; Burdanov, Artem; Kunovac Hodžić, Vedad; Alonso, Roi; Bardalez Gagliuffi, Daniella; Delrez, Laetitia; Demory, Brice-Olivier; de Wit, Julien; Ducrot, Elsa; Hessman, Frederic V.; Husser, Tim-Oliver; Jehin, Emmanuël; Pedersen, Peter P.; Queloz, Didier; <strong>McCormac, James</strong>; Murray, Catriona; Sebastian, Daniel; Thompson, Samantha; Van Grootel, Valérie Gillon, Michaël </p>
<p class='date'> Feb 2020 </p>
<p class='journal'>
<a href="https://ui.adsabs.harvard.edu/abs/2020arXiv200107175T/abstract">ADS</a>
</p>
</div>
<div class='paper'>
<p class='title'> A long period (P = 61.8-d) M5V dwarf eclipsing a Sun-like star from TESS and NGTS </p>
<p class='authors'> Gill, Samuel; Cooke, Benjamin F.; Bayliss, Daniel; Nielson, Louise D.; Lendl, Monika; Wheatley, Peter J.; Anderson, David R.; Moyano, Maximiliano; Bryant, Edward M.; Acton, Jack S.; Belardi, Claudia; Bouchy, Francois; Burleigh, Matthew R.; Casewell, Sarah L.; Chausev, Alexander; Goad, Michael R.; Jackman, James A. G.; Jenkins, James S.; <strong>McCormac, James</strong>; Gunther, Maximilian N. Osborn, Hugh P.; Pollaco, Don; Raynard, Liam; Smith, Alexis M. S.; Tillbrook, Rosanna H.; Turner, Oliver; Udry, Stephane; Vines, Jose I.; Watson, Christopher A.; West, Richard G. </p>
<p class='date'> Feb 2020 </p>
<p class='journal'>
<a href="https://ui.adsabs.harvard.edu/abs/2020arXiv200209311G/abstract">ADS</a>
</p>
</div>
<div class='paper'>
<p class='title'> TOI-222: a single-transit TESS candidate revealed to be a 34-d eclipsing binary with CORALIE, EulerCam, and NGTS </p>
<p class='authors'> Lendl, Monika; Bouchy, François; Gill, Samuel; Nielsen, Louise D.; Turner, Oliver; Stassun, Keivan; Acton, Jack S.; Anderson, David R.; Armstrong, David J.; Bayliss, Daniel; Belardi, Claudia; Bryant, Edward M.; Burleigh, Matthew R.; Chaushev, Alexander; Casewell, Sarah L.; Cooke, Benjamin F.; Eigmüller, Philipp; Gillen, Edward; Goad, Michael R.; Günther, Maximilian N. Hagelberg, Janis; Jenkins, James S.; Louden, Tom; Marmier, Maxime; <strong>McCormac, James</strong>; Moyano, Maximiliano; Pollacco, Don; Raynard, Liam; Tilbrook, Rosanna H.; Udry, Stéphane; Vines, Jose I.; West, Richard G.; Wheatley, Peter J.; Ricker, George; Vanderspek, Roland; Latham, David W.; Seager, Sara; Winn, Josh; Jenkins, Jon M.; Addison, Brett; Briceño, César; Brahm, Rafael; Caldwell, Douglas A.; Doty, John; Espinoza, Néstor; Goeke, Bob; Henning, Thomas; Jordán, Andrés; Krishnamurthy, Akshata; Law, Nicholas; Morris, Robert; Okumura, Jack; Mann, Andrew W.; Rodriguez, Joseph E.; Sarkis, Paula; Schlieder, Joshua; Twicken, Joseph D.; Villanueva, Steven; Wittenmyer, Robert A.; Wright, Duncan J.; Ziegler, Carl </p>
<p class='date'> Feb 2020 </p>
<p class='journal'>
<a href="https://ui.adsabs.harvard.edu/abs/2020MNRAS.492.1761L/abstract">ADS</a>
</p>
</div>
<div class='paper'>
<p class='title'> NGTS clusters survey - I. Rotation in the young benchmark open cluster Blanco 1 </p>
<p class='authors'> Gillen, Edward; Briegal, Joshua T.; Hodgkin, Simon T.; Foreman-Mackey, Daniel; Van Leeuwen, Floor; Jackman, James A. G.; <strong>McCormac, James</strong>; West, Richard G.; Queloz, Didier; Bayliss, Daniel; Goad, Michael R.; Watson, Christopher A.; Wheatley, Peter J.; Belardi, Claudia; Burleigh, Matthew R.; Casewell, Sarah L.; Jenkins, James S.; Raynard, Liam; Smith, Alexis M. S.; Tilbrook, Rosanna H. Vines, Jose I. </p>
<p class='date'> Feb 2020 </p>
<p class='journal'>
<a href="https://ui.adsabs.harvard.edu/abs/2020MNRAS.492.1008G/abstract">ADS</a>
</p>
</div>
<div class='paper'>
<p class='title'> NGTS-8b and NGTS-9b: two non-inflated hot Jupiters </p>
<p class='authors'> Costes, Jean C.; Watson, Christopher A.; Belardi, Claudia; Braker, Ian P.; Burleigh, Matthew R.; Casewell, Sarah L.; Eigmüller, Philipp; Günther, Maximilian N.; Jackman, James A. G.; Nielsen, Louise D.; Soto, Maritza G.; Turner, Oliver; Anderson, David R.; Bayliss, Daniel; Bouchy, François; Briegal, Joshua T.; Bryant, Edward M.; Cabrera, Juan; Chaushev, Alexander; Csizmadia, Szilard Erikson, Anders; Gill, Samuel; Gillen, Edward; Goad, Michael R.; Hodgkin, Simon; Hooton, Matthew J.; Jenkins, James S.; <strong>McCormac, James</strong>; Moyano, Maximiliano; Queloz, Didier; Rauer, Heike; Raynard, Liam; Smith, Alexis M. S.; Thompson, Andrew P. G.; Tilbrook, Rosanna H.; Udry, Stephane; Vines, Jose I.; West, Richard G.; Wheatley, Peter J.</p>
<p class='date'> Jan 2020 </p>
<p class='journal'>
<a href="https://ui.adsabs.harvard.edu/abs/2020MNRAS.491.2834C/abstract">ADS</a>
</p>
</div>
<div class='paper'>
<p class='title'> NGTS and WASP photometric recovery of a single-transit candidate from TESS </p>
<p class='authors'> Gill, Samuel; Bayliss, Daniel; Cooke, Benjamin F.; Wheatley, Peter J.; Nielsen, Louise D.; Lendl, Monika; <strong>McCormac, James</strong>; Bryant, Edward M.; Acton, Jack S.; Anderson, David R.; Belardi, Claudia; Bouchy, François; Burleigh, Matthew R.; Cameron, Andrew Collier; Casewell, Sarah L.; Chaushev, Alexander; Goad, Michael R.; Günther, Maximilian N.; Hellier, Coel; Jackman, James A. G. Jenkins, James S.; Moyano, Maximiliano; Pollacco, Don; Raynard, Liam; Smith, Alexis M. S.; Tilbrook, Rosanna H.; Turner, Oliver; Udry, Stéphane; West, Richard G. </p>
<p class='date'> Jan 2020 </p>
<p class='journal'>
<a href="https://ui.adsabs.harvard.edu/abs/2020MNRAS.491.1548G/abstract">ADS</a>
</p>
</div>
<h1>2019</h1>
<div class='paper'>
<p class='title'> WASP-180Ab: Doppler tomography of a hot Jupiter orbiting the primary star in a visual binary </p>
<p class='authors'> Temple, L. Y.; Hellier, C.; Anderson, D. R.; Barkaoui, K.; Bouchy, F.; Brown, D. J. A.; Burdanov, A.; Collier Cameron, A.; Delrez, L.; Ducrot, E.; Evans, D.; Gillon, M.; Jehin, E.; Lendl, M.; Maxted, P. F. L.; <strong>McCormac, J.</strong>; Murray, C.; Nielsen, L. D.; Pepe, F.; Pollacco, D. Queloz, D.; Ségransan, D.; Smalley, B.; Thompson, S.; Triaud, A. H. M. J.; Turner, O. D.; Udry, S.; West, R. G.; Zouhair, B. </p>
<p class='date'> Dec 2019 </p>
<p class='journal'>
<a href="https://ui.adsabs.harvard.edu/abs/2019MNRAS.490.2467T/abstract">ADS</a>
</p>
</div>
<div class='paper'>
<p class='title'> NGTS-7Ab: an ultrashort-period brown dwarf transiting a tidally locked and active M dwarf </p>
<p class='authors'> Jackman, James A. G.; Wheatley, Peter J.; Bayliss, Dan; Gill, Samuel; Hodgkin, Simon T.; Burleigh, Matthew R.; Braker, Ian P.; Günther, Maximilian N.; Louden, Tom; Turner, Oliver; Anderson, David R.; Belardi, Claudia; Bouchy, François; Briegal, Joshua T.; Bryant, Edward M.; Cabrera, Juan; Casewell, Sarah L.; Chaushev, Alexander; Costes, Jean C.; Csizmadia, Szilard Eigmüller, Philipp; Erikson, Anders; Gänsicke, Boris T.; Gillen, Edward; Goad, Michael R.; Jenkins, James S.; <strong>McCormac, James</strong>; Moyano, Maximiliano; Nielsen, Louise D.; Pollacco, Don; Poppenhaeger, Katja; Queloz, Didier; Rauer, Heike; Raynard, Liam; Smith, Alexis M. S.; Udry, Stéphane; Vines, Jose I.; Watson, Christopher A.; West, Richard G. </p>
<p class='date'> Nov 2019 </p>
<p class='journal'>
<a href="https://ui.adsabs.harvard.edu/abs/2019MNRAS.489.5146J/abstract">ADS</a>
</p>
</div>
<div class='paper'>
<p class='title'> NGTS-6b: an ultrashort period hot-Jupiter orbiting an old K dwarf </p>
<p class='authors'> Vines, Jose I.; Jenkins, James S.; Acton, Jack S.; Briegal, Joshua; Bayliss, Daniel; Bouchy, François; Belardi, Claudia; Bryant, Edward M.; Burleigh, Matthew R.; Cabrera, Juan; Casewell, Sarah L.; Chaushev, Alexander; Cooke, Benjamin F.; Csizmadia, Szilárd; Eigmüller, Philipp; Erikson, Anders; Foxell, Emma; Gill, Samuel; Gillen, Edward; Goad, Michael R. Jackman, James A. G.; King, George W.; Louden, Tom; <strong>McCormac, James</strong>; Moyano, Maximiliano; Nielsen, Louise D.; Pollacco, Don; Queloz, Didier; Rauer, Heike; Raynard, Liam; Smith, Alexis M. S.; Soto, Maritza G.; Tilbrook, Rosanna H.; Titz-Weider, Ruth; Turner, Oliver; Udry, Stéphane; Walker, Simon R.; Watson, Christopher A.; West, Richard G.; Wheatley, Peter J. </p>
<p class='date'> Nov 2019 </p>
<p class='journal'>
<a href="https://ui.adsabs.harvard.edu/abs/2019MNRAS.489.4125V/abstract">ADS</a>
</p>
</div>
<div class='paper'>
<p class='title'> LRG-BEASTS: Transmission Spectroscopy and Retrieval Analysis of the Highly Inflated Saturn-mass Planet WASP-39b </p>
<p class='authors'> Kirk, James; López-Morales, Mercedes; Wheatley, Peter J.; Weaver, Ian C.; Skillen, Ian; Louden, Tom; <strong>McCormac, James</strong>; Espinoza, Néstor </p>
<p class='date'> Oct 2019 </p>
<p class='journal'>
<a href="https://ui.adsabs.harvard.edu/abs/2019AJ....158..144K/abstract">ADS</a>
</p>
</div>
<div class='paper'>
<p class='title'> NGTS-4b: A sub-Neptune transiting in the desert </p>
<p class='authors'> West, Richard G.; Gillen, Edward; Bayliss, Daniel; Burleigh, Matthew R.; Delrez, Laetitia; Günther, Maximilian N.; Hodgkin, Simon T.; Jackman, James A. G.; Jenkins, James S.; King, George; <strong>McCormac, James</strong>; Nielsen, Louise D.; Raynard, Liam; Smith, Alexis M. S.; Soto, Maritza; Turner, Oliver; Wheatley, Peter J.; Almleaky, Yaseen; Armstrong, David J.; Belardi, Claudia Bouchy, François; Briegal, Joshua T.; Burdanov, Artem; Cabrera, Juan; Casewell, Sarah L.; Chaushev, Alexander; Chazelas, Bruno; Chote, Paul; Cooke, Benjamin F.; Csizmadia, Szilard; Ducrot, Elsa; Eigmüller, Philipp; Erikson, Anders; Foxell, Emma; Gänsicke, Boris T.; Gillon, Michaël; Goad, Michael R.; Jehin, Emmanuël; Lambert, Gregory; Longstaff, Emma S.; Louden, Tom; Moyano, Maximiliano; Murray, Catriona; Pollacco, Don; Queloz, Didier; Rauer, Heike; Sohy, Sandrine; Thompson, Samantha J.; Udry, Stéphane; Walker, Simon R.; Watson, Christopher A. </p>
<p class='date'> July 2019 </p>
<p class='journal'>
<a href="https://ui.adsabs.harvard.edu/abs/2019MNRAS.486.5094W/abstract">ADS</a>
</p>
</div>
<div class='paper'>
<p class='title'> The EBLM project. VI. Mass and radius of five low-mass stars in F+M binaries discovered by the WASP survey </p>
<p class='authors'> Gill, S.; Maxted, P. F. L.; Evans, J. A.; Evans, D. F.; Southworth, J.; Smalley, B.; Gary, B. L.; Anderson, D. R.; Bouchy, F.; Cameron, A. C.; Dominik, M.; Faedi, F.; Gillon, M.; Gomez Maqueo Chew, Y.; Hebb, L.; Hellier, C.; Jørgensen, U. G.; Longa-Peña, P.; Martin, D. V.; <strong>McCormac, J.</strong>; Pepe, F. V.; Pollaco, D.; Queloz, D.; Ségransan, D.; Snodgrass, C.; Turner, O. D.; Triaud, A. H. M.; Udry, S.; West, R. G. </p>
<p class='date'> June 2019 </p>
<p class='journal'>
<a href="https://ui.adsabs.harvard.edu/abs/2019A%26A...626A.119G/abstract">ADS</a>
</p>
</div>
<div class='paper'>
<p class='title'> The PDS 110 observing campaign - photometric and spectroscopic observations reveal eclipses are aperiodic </p>
<p class='authors'> Osborn, H. P.; Kenworthy, M.; Rodriguez, J. E.; de Mooij, E. J. W.; Kennedy, G. M.; Relles, H.; Gomez, E.; Hippke, M.; Banfi, M.; Barbieri, L.; Becker, I. S.; Benni, P.; Berlind, P.; Bieryla, A.; Bonnoli, G.; Boussier, H.; Brincat, S. M.; Briol, J.; Burleigh, M. R.; Butterley, T. Calkins, M. L.; Chote, P.; Ciceri, S.; Deldem, M.; Dhillon, V. S.; Dose, E.; Dubois, F.; Dvorak, S.; Esquerdo, G. A.; Evans, D. F.; Ferratfiat, S.; Fossey, S. J.; Günther, M. N.; Hall, J.; Hambsch, F. -J.; Herrero, E.; Hills, K.; James, R.; Jayawardhana, R.; Kafka, S.; Killestein, T. L.; Kotnik, C.; Latham, D. W.; Lemay, D.; Lewin, P.; Littlefair, S.; Lopresti, C.; Mallonn, M.; Mancini, L.; Marchini, A.; <strong>McCormac, J. J.</strong>; Murawski, G.; Myers, G.; Papini, R.; Popov, V.; Quadri, U.; Quinn, S. N.; Raynard, L.; Rizzuti, L.; Robertson, J.; Salvaggio, F.; Scholz, A.; Sfair, R.; Smith, A. M. S.; Southworth, J.; Tan, T. G.; Vanaverbeke, S.; Waagen, E. O.; Watson, C. A.; West, R. G.; Winter, O. C.; Wheatley, P. J.; Wilson, R. W.; Zhou, G. </p>
<p class='date'> May 2019 </p>
<p class='journal'>
<a href="https://ui.adsabs.harvard.edu/abs/2019MNRAS.485.1614O/abstract">ADS</a>
</p>
</div>
<div class='paper'>
<p class='title'> The EBLM Project. V. Physical properties of ten fully convective, very-low-mass stars </p>
<p class='authors'> von Boetticher, Alexander; Triaud, Amaury H. M. J.; Queloz, Didier; Gill, Sam; Maxted, Pierre F. L.; Almleaky, Yaseen; Anderson, David R.; Bouchy, François; Burdanov, Artem; Collier Cameron, Andrew; Delrez, Laetitia; Ducrot, Elsa; Faedi, Francesca; Gillon, Michaël; Gómez Maqueo Chew, Yilen; Hebb, Leslie; Hellier, Coel; Jehin, Emmanuël; Lendl, Monika; Marmier, Maxime Martin, David V.; <strong>McCormac, James</strong>; Pepe, Francesco; Pollacco, Don; Ségransan, Damien; Smalley, Barry; Thompson, Samantha; Turner, Oliver; Udry, Stéphane; Van Grootel, Valérie; West, Richard </p>
<p class='date'> May 2019 </p>
<p class='journal'>
<a href="https://ui.adsabs.harvard.edu/abs/2019A%26A...625A.150V/abstract">ADS</a>
</p>
</div>
<div class='paper'>
<p class='title'> NGTS-5b: a highly inflated planet offering insights into the sub-Jovian desert </p>
<p class='authors'> Eigmüller, Philipp; Chaushev, Alexander; Gillen, Edward; Smith, Alexis; Nielsen, Louise D.; Turner, Oliver; Csizmadia, Szilard; Smalley, Barry; Bayliss, Daniel; Belardi, Claudia; Bouchy, François; Burleigh, Matthew R.; Cabrera, Juan; Casewell, Sarah L.; Chazelas, Bruno; Cooke, Benjamin F.; Erikson, Anders; Gänsicke, Boris T.; Günther, Maximilian N.; Goad, Michael R. Grange, Andrew; Jackman, James A. G.; Jenkins, James S.; <strong>McCormac, James</strong>; Moyano, Maximiliano; Pollacco, Don; Poppenhaeger, Katja; Queloz, Didier; Raynard, Liam; Rauer, Heike; Udry, Stéphane; Walker, Simon. R.; Watson, Christopher A.; West, Richard G.; Wheatley, Peter J. </p>
<p class='date'> May 2019 </p>
<p class='journal'>
<a href="https://ui.adsabs.harvard.edu/abs/2019A%26A...625A.142E/abstract">ADS</a>
</p>
</div>
<div class='paper'>
<p class='title'> Detection of a giant flare displaying quasi-periodic pulsations from a pre-main-sequence M star by the Next Generation Transit Survey </p>
<p class='authors'> Jackman, James A. G.; Wheatley, Peter J.; Pugh, Chloe E.; Kolotkov, Dmitrii Y.; Broomhall, Anne-Marie; Kennedy, Grant M.; Murphy, Simon J.; Raddi, Roberto; Burleigh, Matthew R.; Casewell, Sarah L.; Eigmüller, Philipp; Gillen, Edward; Günther, Maximilian N.; Jenkins, James S.; Louden, Tom; <strong>McCormac, James</strong>; Raynard, Liam; Poppenhaeger, Katja; Udry, Stéphane; Watson, Christopher A. West, Richard G. </p>
<p class='date'> Feb 2019 </p>
<p class='journal'>
<a href="https://ui.adsabs.harvard.edu/abs/2019MNRAS.482.5553J/abstract">ADS</a>
</p>
</div>
<div class='paper'>
<p class='title'> Discovery of Three New Transiting Hot Jupiters: WASP-161 b, WASP-163 b, and WASP-170 b </p>
<p class='authors'> Barkaoui, K.; Burdanov, A.; Hellier, C.; Gillon, M.; Smalley, B.; Maxted, P. F. L.; Lendl, M.; Triaud, A. H. M. J.; Anderson, D. R.; <strong>McCormac, J.</strong>; Jehin, E.; Almleaky, Y.; Armstrong, D. J.; Benkhaldoun, Z.; Bouchy, F.; Brown, D. J. A.; Cameron, A. C.; Daassou, A.; Delrez, L.; Ducrot, E. Foxell, E.; Murray, C.; Nielsen, L. D.; Pepe, F.; Pollacco, D.; Pozuelos, F. J.; Queloz, D.; Segransan, D.; Udry, S.; Thompson, S.; West, R. G. </p>
<p class='date'> Feb 2019 </p>
<p class='journal'>
<a href="https://ui.adsabs.harvard.edu/abs/2019AJ....157...43B/abstract">ADS</a>
</p>
</div>
<h1>2018</h1>
<div class='paper'>
<p class='title'> The SPECULOOS Southern Observatory Begins its Hunt for Rocky Planets </p>
<p class='authors'> Jehin, E.; Gillon, M.; Queloz, D.; Delrez, L.; Burdanov, A.; Murray, C.; Sohy, S.;
Ducrot, E.; Sebastian, D.; Thompson, S.; <strong>McCormac, J.</strong>; Almleaky, Y.;
Burgasser, A. J.; Demory, B. -O.; de Wit, J.; Barkaoui, K.; Pozuelos, F. J.;
Triaud, A. H. M. J.; Grootel, V. V. </p>
<p class='date'> Dec 2018 </p>
<p class='journal'>
<a href="https://ui.adsabs.harvard.edu/abs/2018Msngr.174....2J/abstract">ADS</a>
</p>
</div>
<div class='paper'>
<p class='title'> NGTS-2b: an inflated hot-Jupiter transiting a bright F-dwarf </p>
<p class='authors'> Raynard, Liam; Goad, Michael R.; Gillen, Edward; Nielsen, Louise D.; Watson, Christopher A.;
Thompson, Andrew P. G.; <strong>McCormac, James</strong>; Bayliss, Daniel; Soto, Maritza;
Csizmadia, Szilard; Chaushev, Alexander; Burleigh, Matthew R.; Alexander, Richard;
Armstrong, David J.; Bouchy, François; Briegal, Joshua T.; Cabrera, Juan; Casewell, Sarah L.;
Chazelas, Bruno; Cooke, Benjamin F. Eigmüller, Philipp; Erikson, Anders; Gänsicke, Boris T.;
Grange, Andrew; Günther, Maximilian N.; Hodgkin, Simon T.; Hooton, Matthew J.; Jenkins, James S.;
Lambert, Gregory; Louden, Tom; Metrailler, Lionel; Moyano, Maximiliano; Pollacco, Don;
Poppenhaeger, Katja; Queloz, Didier; Raddi, Roberto; Rauer, Heike; Read, Andrew M.;
Smalley, Barry; Smith, Alexis M. S.; Turner, Oliver; Udry, Stéphane; Walker, Simon R.;
West, Richard G.; Wheatley, Peter J. </p>
<p class='date'> Dec 2018 </p>
<p class='journal'>
<a href="https://ui.adsabs.harvard.edu/abs/2018MNRAS.481.4960R/abstract">ADS</a>
</p>
</div>
<div class='paper'>
<p class='title'> A low-mass eclipsing binary within the fully convective zone from the Next Generation Transit Survey </p>
<p class='authors'> Casewell, S. L.; Raynard, L.; Watson, C. A.; Gillen, E.; de Mooij, E.; Bayliss, D.;
Bouchy, F.; Thompson, A.; Jackman, J. A. G.; Burleigh, M. R.; Chaushev, A.; Belardi, C.;
Louden, T.; Goad, M. R.; Nielsen, L. D.; Poppenhaeger, K.; Eigmüller, Ph; Günther, Maximilian N.;
Jenkins, J. S.; <strong>McCormac, J.</strong>; Moyano, M.; Queloz, D.; Smith, A. M. S.; West, R. G.; Wheatley, P. J. </p>
<p class='date'> Dec 2018 </p>
<p class='journal'>
<a href="https://ui.adsabs.harvard.edu/abs/2018MNRAS.481.1897C/abstract">ADS</a>
</p>
</div>
<div class='paper'>
<p class='title'> The 0.8-4.5 μm Broadband Transmission Spectra of TRAPPIST-1 Planets </p>
<p class='authors'> Ducrot, E.; Sestovic, M.; Morris, B. M.; Gillon, M.; Triaud, A. H. M. J.; De Wit, J.;
Thimmarayappa, D.; Agol, E.; Almleaky, Y.; Burdanov, A.; Burgasser, A. J.; Delrez, L.;
Demory, B. -O.; Jehin, E.; Leconte, J.; <strong>McCormac, J.</strong>; Murray, C.;
Queloz, D.; Selsis, F.; Thompson, S. Van Grootel, V. </p>
<p class='date'> Nov 2018 </p>
<p class='journal'>
<a href="https://ui.adsabs.harvard.edu/abs/2018AJ....156..218D/abstract">ADS</a>
</p>
</div>
<div class='paper'>
<p class='title'> K2-265 b: a transiting rocky super-Earth </p>
<p class='authors'> Lam, K. W. F.; Santerne, A.; Sousa, S. G.; Vigan, A.; Armstrong, D. J.; Barros, S. C. C.;
Brugger, B.; Adibekyan, V.; Almenara, J. -M.; Delgado Mena, E.; Dumusque, X.; Barrado, D.;
Bayliss, D.; Bonomo, A. S.; Bouchy, F.; Brown, D. J. A.; Ciardi, D.; Deleuil, M.; Demangeon, O.;
Faedi, F. Foxell, E.; Jackman, J. A. G.; King, G. W.; Kirk, J.; Ligi, R.; Lillo-Box, J.; Lopez, T.;
Lovis, C.; Louden, T.; Nielsen, L. D.; <strong>McCormac, J.</strong>; Mousis, O.; Osborn, H. P.; Pollacco, D.;
Santos, N. C.; Udry, S.; Wheatley, P. J. </p>
<p class='date'> Nov 2018 </p>
<p class='journal'>
<a href="https://ui.adsabs.harvard.edu/abs/2018A%26A...620A..77L/abstract">ADS</a>
</p>
</div>
<div class='paper'>
<p class='title'> Single site observations of TESS single transit detections </p>
<p class='authors'> Cooke, Benjamin F.; Pollacco, Don; West, Richard; <strong>McCormac, James</strong>; Wheatley, Peter J. </p>
<p class='date'> Nov 2018 </p>
<p class='journal'>
<a href="https://ui.adsabs.harvard.edu/abs/2018A%26A...619A.175C/abstract">ADS</a>
</p>
</div>
<div class='paper'>
<p class='title'> Unmasking the hidden NGTS-3Ab: a hot Jupiter in an unresolved binary system </p>
<p class='authors'> Günther, Maximilian N.; Queloz, Didier; Gillen, Edward; Delrez, Laetitia; Bouchy, François;
<strong>McCormac, James</strong>; Smalley, Barry; Almleaky, Yaseen; Armstrong, David J.;
Bayliss, Daniel; Burdanov, Artem; Burleigh, Matthew; Cabrera, Juan; Casewell, Sarah L.;
Cooke, Benjamin F.; Csizmadia, Szilárd; Ducrot, Elsa; Eigmüller, Philipp; Erikson, Anders; Gänsicke, Boris T </p>
<p class='date'> Aug 2018 </p>
<p class='journal'>
<a href="https://ui.adsabs.harvard.edu/abs/2018MNRAS.478.4720G/abstract">ADS</a>
</p>
</div>
<div class='paper'>
<p class='title'> Automatic vetting of planet candidates from ground-based surveys: machine learning with NGTS </p>
<p class='authors'> Armstrong, David J.; Günther, Maximilian N.; <strong>McCormac, James</strong>; Smith, Alexis M. S.;
Bayliss, Daniel; Bouchy, François; Burleigh, Matthew R.; Casewell, Sarah; Eigmüller, Philipp; Gillen, Edward;
Goad, Michael R.; Hodgkin, Simon T.; Jenkins, James S.; Louden, Tom; Metrailler, Lionel; Pollacco, Don;
Poppenhaeger, Katja; Queloz, Didier; Raynard, Liam; Rauer, Heike </p>
<p class='date'> Aug 2018 </p>
<p class='journal'>
<a href="https://ui.adsabs.harvard.edu/abs/2018MNRAS.478.4225A/abstract">ADS</a>
</p>
</div>
<div class='paper'>
<p class='title'> SPECULOOS: a network of robotic telescopes to hunt for terrestrial planets around the nearest ultracool dwarfs </p>
<p class='authors'> Delrez, Laetitia; Gillon, Michael.; Queloz, Didier; Demory, Brice-Olivier; Almleaky, Yaseen; de Wit, Julien;
Jehin, Emmanuël.; Triaud, Amaury H. M. J.; Barkaoui, Khalid; Burdanov, Artem; Burgasser, Adam J.; Ducrot, Elsa;
<strong>McCormac, James</strong>; Murray, Catriona; Silva Fernandes, Catarina; Sohy, Sandrine; Thompson, Samantha J.;
Van Grootel, Valérie; Alonso, Roi; Benkhaldoun, Zouhair </p>
<p class='date'> July 2018 </p>
<p class='journal'>
<a href="https://ui.adsabs.harvard.edu/abs/2018SPIE10700E..1ID/abstract">ADS</a>
</p>
</div>
<div class='paper'>
<p class='title'> Ground-based detection of G star superflares with NGTS </p>
<p class='authors'> Jackman, James A. G.; Wheatley, Peter J.; Pugh, Chloe E.; Gänsicke, Boris T.; Gillen, Edward;
Broomhall, Anne-Marie; Armstrong, David J.; Burleigh, Matthew R.; Chaushev, Alexander;
Eigmüller, Philipp; Erikson, Anders; Goad, Michael R.; Grange, Andrew; Günther, Maximilian N.;
Jenkins, James S.; <strong>McCormac, James</strong>; Raynard, Liam; Thompson, Andrew P. G.; Udry, Stéphane;
Walker, Simon; Watson, Christopher A.; West, Richard G.</p>
<p class='date'> July 2018 </p>
<p class='journal'>
<a href="https://adsabs.harvard.edu/doi/10.1093/mnras/sty897">ADS</a>
</p>
</div>
<div class='paper'>
<p class='title'> The Next Generation Transit Survey (NGTS) </p>
<p class='authors'> Wheatley, Peter J.; West, Richard G.; Goad, Michael R.; Jenkins, James S.; Pollacco, Don L.;
Queloz, Didier; Rauer, Heike; Udry, Stephane; Watson, Christopher A.; Chazelas, Bruno;
Eigmuller, Philipp; Lambert, Gregory; Genolet, Ludovic; <strong>McCormac, James</strong>; Walker, Simon;
Armstrong, David J.; Bayliss, Daniel; Bento, Joao; Bouchy, Francois; Burleigh, Matthew R.;
Cabrera, Juan; Casewell, Sarah L.; Chaushev, Alexander; Chote, Paul; Csizmadia, Szilard;
Erikson, Anders; Faedi, Francesca; Foxell, Emma; Gansicke, Boris T.; Gillen, Edward; Grange, Andrew;
Gunther, Maximilian N.; Hodgkin, Simon T.; Jackman, James; Jordan, Andres; Louden, Tom; Metrailler, Lionel;
Moyano, Maximiliano; Nielsen, Louise D.; Osborn, Hugh P.; Poppenhaeger, Katja; Raddi, Roberto;
Raynard, Liam; Smith, Alexis M. S.; Soto, Maritza; Titz-Weider, Ruth </p>
<p class='date'> Apr 2018 </p>
<p class='journal'>
<a href="https://adsabs.harvard.edu/abs/2018MNRAS.475.4476W">ADS</a>
</p>
</div>
<div class='paper'>
<p class='title'> NGTS-1b: A hot Jupiter transiting an M-dwarf </p>
<p class='authors'> Bayliss, Daniel; Gillen, Edward; Eigmuller, Philipp; <strong>McCormac, James</strong>; Alexander, Richard D.;
Armstrong, David J.; Booth, Rachel S.; Bouchy, Francois; Burleigh, Matthew R.; Cabrera, Juan; Casewell, Sarah L.;
Chaushev, Alexander; Chazelas, Bruno; Csizmadia, Szilard; Erikson, Anders; Faedi, Francesca; Foxell, Emma;
Gansicke, Boris T.; Goad, Michael R.; Grange, Andrew; Gunther, Maximilian N.; Hodgkin, Simon T.; Jackman, James;
Jenkins, James S.; Lambert, Gregory; Louden, Tom; Metrailler, Lionel; Moyano, Maximiliano; Pollacco, Don;
Poppenhaeger, Katja; Queloz, Didier; Raddi, Roberto; Rauer, Heike; Raynard, Liam; Smith, Alexis M. S.;
Soto, Maritza; Thompson, Andrew P. G.; Titz-Weider, Ruth; Udry, Stephane; Walker, Simon. R.; Watson, Christopher A.;
West, Richard G.; Wheatley, Peter J. </p>
<p class='date'> Apr 2018 </p>
<p class='journal'>
<a href="https://adsabs.harvard.edu/abs/2017arXiv171011099B">ADS</a>
</p>
</div>
<div class='paper'>
<p class='title'> An Earth-sized exoplanet with a Mercury-like composition</p>
<p class='authors'> Santerne, A.; Brugger, B.; Armstrong, D. J.; Adibekyan, V.; Lillo-Box, J.; Gosselin, H.; Aguichine, A.;
Almenara, J.-M.; Barrado, D.; Barros, S. C. C.; Bayliss, D.; Boisse, I.; Bonomo, A. S.; Bouchy, F.;
Brown, D. J. A.; Deleuil, M.; Delgado Mena, E.; Demangeon, O.; Díaz, R. F.; Doyle, A.; Dumusque, X.;
Faedi, F.; Faria, J. P.; Figueira, P.; Foxell, E.; Giles, H.; Hébrard, G.; Hojjatpanah, S.; Hobson, M.;
Jackman, J.; King, G.; Kirk, J.; Lam, K. W. F.; Ligi, R.; Lovis, C.; Louden, T.; <strong>McCormac, J.</strong>;
Mousis, O.; Neal, J. J.; Osborn, H. P.; Pepe, F.; Pollacco, D.; Santos, N. C.; Sousa, S. G.; Udry, S.; Vigan, A.</p>
<p class='date'> Mar 2018 </p>
<p class='journal'>
<a href="https://adsabs.harvard.edu/doi/10.1038/s41550-018-0420-5">ADS</a>
</p>
</div>
<div class='paper'>
<p class='title'> The discovery of WASP-151b, WASP-153b, WASP-156b: Insights on giant planet migration and the upper boundary of the Neptunian desert </p>
<p class='authors'> Demangeon, Olivier. D. S.; Faedi, F.; Hébrard, G.; Brown, D. J. A.; Barros, S. C. C.; Doyle, A. P.
; Maxted, P. F. L.; Collier Cameron, A.; Hay, K. L.; Alikakos, J.; Anderson, D. R.; Armstrong, D. J.;
Boumis, P.; Bonomo, A. S.; Bouchy, F.; Haswell, C. A.; Hellier, C.; Kiefer, F.; Lam, K. W. F.; Mancini, L.;
<strong>McCormac, J.</strong>; Norton, A. J.; Osborn, H. P.; Palle, E.; Pepe, F.; Pollacco, D. L.; Prieto-Arranz, J.;
Queloz, D.; Ségransan, D.; Smalley, B.; Triaud, A. H. M. J.; Udry, S.; West, R.; Wheatley, P. J. </p>
<p class='date'> Mar 2018 </p>
<p class='journal'>
<a href="https://adsabs.harvard.edu/abs/2017arXiv171006321D">ADS</a>
</p>
</div>
<div class='paper'>
<p class='title'> LRG-BEASTS III: ground-based transmission spectrum of the gas giant orbiting the cool dwarf WASP-80 </p>
<p class='authors'> Kirk, J.; Wheatley, P. J.; Louden, T.; Skillen, I.; King, G. W.; <strong>McCormac, J.</strong>; Irwin, P. G. J. </p>
<p class='date'> Feb 2018 </p>
<p class='journal'>
<a href="https://adsabs.harvard.edu/abs/2018MNRAS.474..876K">ADS</a>
</p>
</div>
<div class='paper'>
<p class='title'> Qatar Exoplanet Survey: Qatar-6b—A Grazing Transiting Hot Jupiter </p>
<p class='authors'> Alsubai, Khalid; Tsvetanov, Zlatan I.; Latham, David W.; Bieryla, Allyson; Esquerdo, Gilbert A.;
Mislis, Dimitris; Pyrzas, Stylianos; Foxell, Emma; <strong>McCormac, James</strong>; Baranec, Christoph;
Vilchez, Nicolas P. E.; West, Richard; Esamdin, Ali; Dang, Zhenwei; Dalee, Hani M.;
Al-Rajihi, Amani A.; Al-Harbi, Abeer Kh. </p>
<p class='date'> Feb 2018 </p>
<p class='journal'>
<a href="https://adsabs.harvard.edu/abs/2018AJ....155...52A">ADS</a>
</p>
</div>
<div class='paper'>
<p class='title'> The First Post-Kepler Brightness Dips of KIC 8462852 </p>
<p class='authors'> Boyajian, Tabetha. S.; Alonso, Roi; Ammerman, Alex; Armstrong, David; Asensio Ramos, A.;
Barkaoui, K.; Beatty, Thomas G.; Benkhaldoun, Z.; Benni, Paul; Bentley, Rory O.; Berdyugin, Andrei;
Berdyugina, Svetlana; Bergeron, Serge; Bieryla, Allyson; Blain, Michaela G.; Capetillo Blanco, Alicia;
Bodman, Eva H. L.; Boucher, Anne; Bradley, Mark; Brincat, Stephen M.; Brink, Thomas G.; Briol, John;
Brown, David J. A.; Budaj, J.; Burdanov, A.; Cale, B.; Aznar Carbo, Miguel; Castillo García, R.;
Clark, Wendy J.; Clayton, Geoffrey C.; Clem, James L.; Coker, Phillip H.; Cook, Evan M.;
Copperwheat, Chris M.; Curtis, J. L.; Cutri, R. M.; Cseh, B.; Cynamon, C. H.; Daniels, Alex J.;
Davenport, James R. A.; Deeg, Hans J.; De Lorenzo, Roberto; de Jaeger, Thomas; Desrosiers, Jean-Bruno;
Dolan, John; Dowhos, D. J.; Dubois, Franky; Durkee, R.; Dvorak, Shawn; Easley, Lynn; Edwards, N.;
Ellis, Tyler G.; Erdelyi, Emery; Ertel, Steve; Farfán, Rafael. G.; Farihi, J.; Filippenko, Alexei V.;
Foxell, Emma; Gandolfi, Davide; Garcia, Faustino; Giddens, F.; Gillon, M.; González-Carballo, Juan-Luis;
González-Fernández, C.; González Hernández, J. I.; Graham, Keith A.; Greene, Kenton A.; Gregorio, J.;
Hallakoun, Na’ama; Hanyecz, Ottó; Harp, G. R.; Henry, Gregory W.; Herrero, E.; Hildbold, Caleb F.;
Hinzel, D.; Holgado, G.; Ignácz, Bernadett; Ilyin, Ilya; Ivanov, Valentin D.; Jehin, E.; Jermak, Helen E.;
Johnston, Steve; Kafka, S.; Kalup, Csilla; Kardasis, Emmanuel; Kaspi, Shai; Kennedy, Grant M.; Kiefer, F.;
Kielty, C. L.; Kessler, Dennis; Kiiskinen, H.; Killestein, T. L.; King, Ronald A.; Kollar, V.; Korhonen, H.;
Kotnik, C.; Könyves-Tóth, Réka; Kriskovics, Levente; Krumm, Nathan; Krushinsky, Vadim; Kundra, E.;
Lachapelle, Francois-Rene; LaCourse, D.; Lake, P.; Lam, Kristine; Lamb, Gavin P.; Lane, Dave;
Lau, Marie Wingyee; Lewin, Pablo; Lintott, Chris; Lisse, Carey; Logie, Ludwig; Longeard, Nicolas;
Lopez Villanueva, M.; Whit Ludington, E.; Mainzer, A.; Malo, Lison; Maloney, Chris; Mann, A.; Mantero, A.;
Marengo, Massimo; Marchant, Jon; Martínez González, M. J.; Masiero, Joseph R.; Mauerhan, Jon C.;
<strong>McCormac, James</strong>; McNeely, Aaron; Meng, Huan Y. A.; Miller, Mike; Molnar, Lawrence A.;
Morales, J. C.; Morris, Brett M.; Muterspaugh, Matthew W.; Nespral, David; Nugent, C. R.; Nugent, Katherine M.;
Odasso, A.; O’Keeffe, Derek; Oksanen, A.; O’Meara, John M.; Ordasi, András; Osborn, Hugh; Ott, John J.;
Parks, J. R.; Rodriguez Perez, Diego; Petriew, Vance; Pickard, R.; Pál, András; Plavchan, P.;
Pollacco, Don; Pozo Nuñez, F.; Pozuelos, F. J.; Rau, Steve; Redfield, Seth; Relles, Howard; Ribas, Ignasi;
Richards, Jon; Saario, Joonas L. O.; Safron, Emily J.; Sallai, J. Martin; Sárneczky, Krisztián;
Schaefer, Bradley E.; Schumer, Clea F.; Schwartzendruber, Madison; Siegel, Michael H.; Siemion, Andrew P. V.;
Simmons, Brooke D.; Simon, Joshua D.; Simón-Díaz, S.; Sitko, Michael L.; Socas-Navarro, Hector; Sódor, Á.;
Starkey, Donn; Steele, Iain A.; Stone, Geoff; Strassmeier, Klaus G.; Street, R. A.; Sullivan, Tricia;
Suomela, J.; Swift, J. J.; Szabó, Gyula M.; Szabó, Róbert; Szakáts, Róbert; Szalai, Tamás; Tanner, Angelle M.;
Toledo-Padrón, B.; Tordai, Tamás; Triaud, Amaury H. M. J.; Turner, Jake D.; Ulowetz, Joseph H.;
Urbanik, Marian; Vanaverbeke, Siegfried; Vanderburg, Andrew; Vida, Krisztián; Vietje, Brad P.;
Vinkó, József; von Braun, K.; Waagen, Elizabeth O.; Walsh, Dan; Watson, Christopher A.; Weir, R. C.;
Wenzel, Klaus; Westendorp Plaza, C.; Williamson, Michael W.; Wright, Jason T.; Wyatt, M. C.; Zheng, WeiKang;
Zsidi, Gabriella </p>
<p class='date'> Jan 2018 </p>
<p class='journal'>
<a href="https://adsabs.harvard.edu/abs/2018ApJ...853L...8B">ADS</a>
</p>
</div>
<h1>2017</h1>
<div class='paper'>
<p class='title'> Centroid vetting of transiting planet candidates from the Next Generation Transit Survey </p>
<p class='authors'> Günther, Maximilian N.; Queloz, Didier; Gillen, Edward; <strong>McCormac, James</strong>;
Bayliss, Daniel; Bouchy, Francois; Walker, Simon. R.; West, Richard G.; Eigmüller, Philipp;
Smith, Alexis M. S.; Armstrong, David J.; Burleigh, Matthew; Casewell, Sarah L.;
Chaushev, Alexander P.; Goad, Michael R.; Grange, Andrew; Jackman, James; Jenkins, James S.;
Louden, Tom; Moyano, Maximiliano; Pollacco, Don; Poppenhaeger, Katja; Rauer, Heike; Raynard, Liam;
Thompson, Andrew P. G.; Udry, Stéphane; Watson, Christopher A.; Wheatley, Peter J. </p>
<p class='date'> Nov 2017 </p>
<p class='journal'>
<a href="https://adsabs.harvard.edu/abs/2017MNRAS.472..295G">ADS</a>
</p>
</div>
<div class='paper'>
<p class='title'> MASCARA-1 b: A hot Jupiter transiting a bright m_V=8.3 A-star in a misaligned orbit </p>
<p class='authors'> Talens, G. J. J.; Albrecht, S.; Spronck, J. F. P.; Lesage, A.-L.; Otten, G. P. P. L.; Stuik, R.;
Van Eylen, V.; Van Winckel, H.; Pollacco, D.; <strong>McCormac, J.</strong>; Grundahl, F.;
Fredslund Andersen, M.; Antoci, V.; Snellen, I. A. G </p>
<p class='date'> July 2017 </p>
<p class='journal'>
<a href="https://adsabs.harvard.edu/abs/2017A%26A...606A..73T">ADS</a>
</p>
</div>
<div class='paper'>
<p class='title'> A population of faint low surface brightness galaxies in the Perseus cluster core </p>
<p class='authors'> Wittmann, Carolin; Lisker, Thorsten; Ambachew Tilahun, Liyualem; Grebel, Eva K.;
Conselice, Christopher J.; Penny, Samantha; Janz, Joachim; Gallagher, John S.;
Kotulla, Ralf; <strong>McCormac, James</strong> </p>
<p class='date'> Sept 2017 </p>
<p class='journal'>
<a href="https://adsabs.harvard.edu/abs/2017MNRAS.470.1512W">ADS</a>
</p>
</div>
<div class='paper'>
<p class='title'> The EURONEAR Lightcurve Survey of Near Earth Asteroids </p>
<p class='authors'> Vaduvescu, O.; Macias, A. Aznar; Tudor, V.; Predatu, M.; Galád, A.; Gajdoš, Š.;
Világi, J.; Stevance, H. F.; Errmann, R.; Unda-Sanzana, E.; Char, F.; Peixinho, N.;
Popescu, M.; Sonka, A.; Cornea, R.; Suciu, O.; Toma, R.; Santos-Sanz, P.; Sota, A.;
Licandro, J.; Serra-Ricart, M.; Morate, D.; Mocnik, T.; Diaz Alfaro, M.; Lopez-Martinez, F.;
<strong>McCormac, J.</strong>; Humphries, N. </p>
<p class='date'> Aug 2017 </p>
<p class='journal'>
<a href="https://adsabs.harvard.edu/abs/2017EM%26P..120...41V">ADS</a>
</p>
</div>
<div class='paper'>
<p class='title'> Rayleigh scattering in the transmission spectrum of HAT-P-18b </p>
<p class='authors'> Kirk, J.; Wheatley, P. J.; Louden, T.; Doyle, A. P.; Skillen, I.;
<strong>McCormac, J.</strong>; Irwin, P. G. J.; Karjalainen, R. </p>
<p class='date'> July 2017 </p>
<p class='journal'>
<a href="https://adsabs.harvard.edu/abs/2017MNRAS.468.3907K">ADS</a>
</p>
</div>
<div class='paper'>
<p class='title'> MASCARA-2 b: A hot Jupiter transiting a m_V=7.6 A-star </p>
<p class='authors'> Talens, G. J. J.; Justesen, A. B.; Albrecht, S.; <strong>McCormac, J.</strong>;
Van Eylen, V.; Otten, G. P. P. L.; Murgas, F.; Palle, E.; Pollacco, D.; Stuik, R.;
Spronck, J. F. P.; Lesage, A.-L.; Grundahl, F.; Fredslund Andersen, M.; Antoci, V.;
Snellen, I. A. G. </p>
<p class='date'> July 2017 </p>
<p class='journal'>
<a href="https://adsabs.harvard.edu/abs/2017arXiv170701500T">ADS</a>
</p>
</div>
<div class='paper'>
<p class='title'> K2-110 b: a massive mini-Neptune exoplanet </p>
<p class='authors'> Osborn, H. P.; Santerne, A.; Barros, S. C. C.; Santos, N. C.; Dumusque, X.; Malavolta, L.;
Armstrong, D. J.; Hojjatpanah, S.; Demangeon, O.; Adibekyan, V.; Almenara, J.-M.;
Barrado, D.; Bayliss, D.; Boisse, I.; Bouchy, F.; Brown, D. J. A.; Cameron, A. C.;
Charbonneau, D.; Deleuil, M.; Delgado Mena, E.; Díaz, R. F.; Hébrard, G.; Kirk, J.;
King, G. W.; Lam, K. W. F.; Latham, D.; Lillo-Box, J.; Louden, T. M.; Lovis, C.; Marmier, M.;
<strong>McCormac, J.</strong>; Molinari, E.; Pepe, F.; Pollacco, D.; Sousa, S. G.; Udry, S.; Walker, S. R. </p>
<p class='date'> July 2017 </p>
<p class='journal'>
<a href="https://adsabs.harvard.edu/abs/2017A%26A...604A..19O">ADS</a>
</p>
</div>
<div class='paper'>
<p class='title'> The Next Generation Transit Survey - Prototyping Phase </p>
<p class='authors'> <strong>McCormac, James</strong>; Pollacco, Don; Wheatley, Peter; West, Richard; Walker, Simon; Bento, Joao; Skillen, Ian; Faedi,
Francesca; Burleigh, Matt; Casewell, Sarah; Chazelas, Bruno; Genolet, Ludovic; Gibson, Neale; Goad, Mike; Lawrie,
Katherine; Ryans, Robert; Todd, Ian; Udry, Stephan; Watson, Christopher </p>
<p class='date'> Feb 2017 </p>
<p class='journal'>
<a href="https://adsabs.harvard.edu/abs/2016arXiv161100691M">ADS</a>
</p>
</div>
<div class='paper'>
<p class='title'> From Dense Hot Jupiter to Low Density Neptune: The Discovery of WASP-127b, WASP-136b and WASP-138b </p>
<p class='authors'> Lam, K. W. F.; Faedi, F.; Brown, D. J. A.; Anderson, D. R.; Delrez, L.; Gillon, M.; Hébrard, G.; Lendl, M.; Mancini, L.;
Southworth, J.; Smalley, B.; Triaud, A. H. M.; Turner, O. D.; Hay, K. L.; Armstrong, D. J.; Barros, S. C. C.; Bonomo, A. S.;
Bouchy, F.; Boumis, P.; Collier Cameron, A.; Doyle, A. P.; Hellier, C.; Henning, T.; Jehin, E.; King, G.; Kirk, J.; Louden, T.;
Maxted, P. F. L.; <strong>McCormac, J.</strong>; Osborn, H. P.; Palle, E.; Pepe, F.; Pollacco, D.; Prieto-Arranz, J.;
Queloz, D.; Rey, J.; Ségransan, D.; Udry, S.; Walker, S.; West, R. G.; Wheatley, P. J. </p>
<p class='date'> Feb 2017 </p>
<p class='journal'>
<a href="https://adsabs.harvard.edu/abs/2016arXiv160707859L">ADS</a>
</p>
</div>
<h1>2016</h1>
<div class='paper'>
<p class='title'> WASP-92b, WASP-93b and WASP-118b: three new transiting close-in giant planets </p>
<p class='authors'> Hay, K. L.; Collier-Cameron, A.; Doyle, A. P.; Hébrard, G.; Skillen, I.; Anderson, D. R.; Barros, S. C. C.;
Brown, D. J. A.; Bouchy, F.; Busuttil, R.; Delorme, P.; Delrez, L.; Demangeon, O.; Díaz, R. F.; Gillon, M.;
Gómez Maqueo Chew, Y.; Gonzàlez, E.; Hellier, C.; Holmes, S.; Jarvis, J. F.; Jehin, E.; Joshi, Y. C.; Kolb, U.;
Lendl, M.; Maxted, P. F. L.; <strong>McCormac, J.</strong>; Miller, G. R. M.; Mortier, A.; Pallé, E.;
Pollacco, D.; Prieto-Arranz, J.; Queloz, D.; Ségransan, D.; Simpson, E. K.; Smalley, B.; Southworth, J.;
Triaud, A. H. M. J.; Turner, O. D.; Udry, S.; Vanhuysse, M.; West, R. G.; Wilson, P. A. </p>
<p class='date'> December 2016 </p>
<p class='journal'>
<a href="https://adsabs.harvard.edu/abs/2016MNRAS.463.3276H">ADS</a>
</p>
</div>
<div class='paper'>
<p class='title'> The Astropy Problem </p>
<p class='authors'> Muna, Demitri; Alexander, Michael; Allen, Alice; Ashley, Richard; Asmus, Daniel; Azzollini, Ruyman; Bannister, Michele;
Beaton, Rachael; Benson, Andrew; Berriman, G. Bruce; Bilicki, Maciej; Boyce, Peter; Bridge, Joanna; Cami, Jan;
Cangi, Eryn; Chen, Xian; Christiny, Nicholas; Clark, Christopher; Collins, Michelle; Comparat, Johan; Cook, Neil;
Croton, Darren; Delberth Davids, Isak; Depagne, Éric; Donor, John; dos Santos, Leonardo A.; Douglas, Stephanie;
Du, Alan; Durbin, Meredith; Erb, Dawn; Faes, Daniel; Fernández-Trincado, J. G.; Foley, Anthony; Fotopoulou, Sotiria;
Frimann, Søren; Frinchaboy, Peter; Garcia-Dias, Rafael; Gawryszczak, Artur; George, Elizabeth; Gonzalez, Sebastian;
Gordon, Karl; Gorgone, Nicholas; Gosmeyer, Catherine; Grasha, Katie; Greenfield, Perry; Grellmann, Rebekka;
Guillochon, James; Gurwell, Mark; Haas, Marcel; Hagen, Alex; Haggard, Daryl; Haines, Tim; Hall, Patrick; Hellwing, Wojciech;
Herenz, Edmund Christian; Hinton, Samuel; Hlozek, Renee; Hoffman, John; Holman, Derek; Holwerda, Benne Willem; Horton, Anthony;
Hummels, Cameron; Jacobs, Daniel; Juel Jensen, Jens; Jones, David; Karick, Arna; Kelley, Luke; Kenworthy, Matthew;
Kitchener, Ben; Klaes, Dominik; Kohn, Saul; Konorski, Piotr; Krawczyk, Coleman; Kuehn, Kyler; Kuutma, Teet; Lam, Michael T.;
Lane, Richard; Liske, Jochen; Lopez-Camara, Diego; Mack, Katherine; Mangham, Sam; Mao, Qingqing; Marsh, David J. E.;
Mateu, Cecilia; Maurin, Loïc; <strong>McCormac, James</strong>; Momcheva, Ivelina; Monteiro, Hektor; Mueller, Michael;
Munoz, Roberto; Naidu, Rohan; Nelson, Nicholas; Nitschelm, Christian; North, Chris; Nunez-Iglesias, Juan; Ogaz, Sara;
Owen, Russell; Pare, John; Patrício, Vera; Pepper, Joshua; Perrin, Marshall; Pickering, Timothy; Piscionere, Jennifer;
Pogge, Richard; Poleski, Radek; Pourtsidou, Alkistis; Price-Whelan, Adrian M.; Rawls, Meredith L.; Read, Shaun; Rees, Glen;
Rein, Hanno; Rice, Thomas; Riemer-Sørensen, Signe; Rusomarov, Naum; Sanchez, Sebastian F.; Santander-García, Miguel; Sarid, Gal;
Schoenell, William; Scholz, Aleks; Schuhmann, Robert L.; Schuster, William; Scicluna, Peter; Seidel, Marja; Shao, Lijing;
Sharma, Pranav; Shulevski, Aleksandar; Shupe, David; Sifón, Cristóbal; Simmons, Brooke; Sinha, Manodeep; Skillen, Ian;
Soergel, Bjoern; Spriggs, Thomas; Srinivasan, Sundar; Stevens, Abigail; Streicher, Ole; Suchyta, Eric; Tan, Joshua;
Telford, O. Grace; Thomas, Romain; Tonini, Chiara; Tremblay, Grant; Tuttle, Sarah; Urrutia, Tanya; Vaughan, Sam;
Verdugo, Miguel; Wagner, Alexander; Walawender, Josh; Wetzel, Andrew; Willett, Kyle; Williams, Peter K. G.; Yang, Guang;
Zhu, Guangtun; Zonca, Andrea
<p class='date'> October 2016 </p>
<p class='journal'>
<a href="https://adsabs.harvard.edu/abs/2016arXiv161003159M">ADS</a>
</p>
</div>
<div class='paper'>
<p class='title'> K2-30 b and K2-34 b: Two inflated hot Jupiters around solar-type stars </p>
<p class='authors'> Lillo-Box, J.; Demangeon, O.; Santerne, A.; Barros, S. C. C.; Barrado, D.; Hébrard, G.; Osborn, H. P.; Armstrong, D. J.;
Almenara, J.-M.; Boisse, I.; Bouchy, F.; Brown, D. J. A.; Courcol, B.; Deleuil, M.; Delgado Mena, E.; Díaz, R. F.; Kirk, J.;
Lam, K. W. F.; <strong>McCormac, J.</strong>; Pollacco, D.; Rajpurohit, A.; Rey, J.; Santos, N. C.; Sousa, S. G.;
Tsantaki, M.; Wilson, P. A. </p>
<p class='date'> October 2016 </p>
<p class='journal'>
<a href="https://adsabs.harvard.edu/abs/2016A%26A...594A..50L">ADS</a>
</p>
</div>
<div class='paper'>
<p class='title'> WASP-113b and WASP-114b, two inflated hot Jupiters with contrasting densities </p>
<p class='authors'> Barros, S. C. C.; Brown, D. J. A.; Hébrard, G.; Gómez Maqueo Chew, Y.; Anderson, D. R.; Boumis, P.; Delrez, L.; Hay, K. L.;
Lam, K. W. F.; Llama, J.; Lendl, M.; <strong>McCormac, J.</strong>; Skiff, B.; Smalley, B.; Turner, O.; Vanhuysse, M.; Armstrong, D. J.;
Boisse, I.; Bouchy, F.; Collier Cameron, A.; Faedi, F.; Gillon, M.; Hellier, C.; Jehin, E.; Liakos, A.; Meaburn, J.; Osborn, H. P.;
Pepe, F.; Plauchu-Frayn, I.; Pollacco, D.; Queloz, D.; Rey, J.; Spake, J.; Ségransan, D.; Triaud, A. H. M.; Udry, S.; Walker, S. R.;
Watson, C. A.; West, R. G.; Wheatley, P. J. </p>
<p class='date'> October 2016 </p>
<p class='journal'>
<a href="https://adsabs.harvard.edu/abs/2016A%26A...593A.113B">ADS</a>
</p>
</div>
<div class='paper'>
<p class='title'> The Next Generation Transit Survey Becomes Operational at Paranal </p>
<p class='authors'> West, R. G.; Pollacco, D.; Wheatley, P.; Goad, M.; Queloz, D.; Rauer, H.; Watson, C.; Udry, S.; Bannister, N.; Bayliss, D.;
Bouchy, F.; Burleigh, M.; Cabrera, J.; Chaushev, A.; Chazelas, B.; Crausaz, M.; Csizmadia, S.; Eigmüller, P.; Erikson, A.;
Genolet, L.; Gillen, E.; Grange, A.; Günther, M.; Hodgkin, S.; Kirk, J.; Lambert, G.; Louden, T.; <strong>McCormac, J.</strong>;
Metrailler, L.; Neveu, M.; Smith, A.; Thompson, A.; Raddi, R.; Walker, S. R.; Jenkins, J.; Jordán, A. </p>
<p class='date'> September 2016 </p>
<p class='journal'>
<a href="https://adsabs.harvard.edu/abs/2016Msngr.165...10W">ADS</a>
</p>
</div>
<div class='paper'>
<p class='title'> Supernova 2014J at M82 - II. Direct analysis of a middle-class Type Ia supernova </p>
<p class='authors'> Vallely, Patrick; Moreno-Raya, M. E.; Baron, E.; Ruiz-Lapuente, Pilar; Domínguez, I.; Galbany, Lluís; González Hernández, J. I.;
Méndez, J.; Hamuy, M.; López-Sánchez, A. R.; Catalán, S.; Cooke, E.; Fariña, C.; Génova-Santos, R.; Karjalainen, R.; Lietzen, H.;
<strong>McCormac, J.</strong>; Riddick, F.; Rubiño-Martín, J. A.; Skillen, I.; Tudor, V.; Vaduvescu, O. </p>
<p class='date'> August 2016 </p>
<p class='journal'>
<a href="https://adsabs.harvard.edu/abs/2016MNRAS.460.1614V">ADS</a>
</p>
</div>
<div class='paper'>
<p class='title'> WASP-86b and WASP-102b: super-dense versus bloated planets </p>
<p class='authors'> Faedi, F.; Gómez Maqueo Chew, Y.; Pollacco, D.; Brown, D. J. A.; Hébrard, G.; Smalley, B.; Lam, K. W. F.; Veras, D.;
Anderson, D.; Doyle, A. P.; Gillon, M.; Goad, M. R.; Lendl, M.; Mancini, L.; <strong>McCormac, J.</strong>; Plauchu-Frayn, I.;
Prieto-Arranz, J.; Scholz, A.; Street, R.; Triaud, A. H. M.; West, R.; Wheatley, P. J.; Armstrong, D. J.; Barros, S. C. C.;
Boisse, I.; Bouchy, F.; Boumis, P.; Collier Cameron, A.; Haswell, C. A.; Hay, K. L.; Hellier, C.; Kolb, U.; Maxted, P. F. L.;
Norton, A. J.; Osborn, H. P.; Palle, E.; Pepe, F.; Queloz, D.; Ségransan, D.; Udry, S.; Wilson, P. A. </p>
<p class='date'> August 2016 </p>
<p class='journal'>
<a href="https://adsabs.harvard.edu/abs/2016arXiv160804225F">ADS</a>
</p>
</div>
<div class='paper'>
<p class='title'> K2-29 b/WASP-152 b: An Aligned and Inflated Hot Jupiter in a Young Visual Binary </p>
<p class='authors'> Santerne, A.; Hébrard, G.; Lillo-Box, J.; Armstrong, D. J.; Barros, S. C. C.; Demangeon, O.; Barrado, D.; Debackere, A.;
Deleuil, M.; Delgado Mena, E.; Montalto, M.; Pollacco, D.; Osborn, H. P.; Sousa, S. G.; Abe, L.; Adibekyan, V.; Almenara, J.-M.;
André, P.; Arlic, G.; Barthe, G.; Bendjoya, P.; Behrend, R.; Boisse, I.; Bouchy, F.; Boussier, H.; Bretton, M.; Brown, D. J. A.;
Carry, B.; Cailleau, A.; Conseil, E.; Coulon, G.; Courcol, B.; Dauchet, B.; Dalouzy, J.-C.; Deldem, M.; Desormières, O.;
Dubreuil, P.; Fehrenbach, J.-M.; Ferratfiat, S.; Girelli, R.; Gregorio, J.; Jaecques, S.; Kugel, F.; Kirk, J.; Labrevoir, O.;
Lachurié, J.-C.; Lam, K. W. F.; Le Guen, P.; Martinez, P.; Maurin, L. P. A.; <strong>McCormac, J.</strong>; Pioppa, J.-B.;
Quadri, U.; Rajpurohit, A.; Rey, J.; Rivet, J.-P.; Roy, R.; Santos, N. C.; Signoret, F.; Strabla, L.; Suarez, O.; Toublanc, D.;
Tsantaki, M.; Vienney, J.-M.; Wilson, P. A.; Bachschmidt, M.; Colas, F.; Gerteis, O.; Louis, P.; Mario, J.-C.; Marlot, C.;
Montier, J.; Perroud, V.; Pic, V.; Romeuf, D.; Ubaud, S.; Verilhac, D. </p>
<p class='date'> June 2016 </p>
<p class='journal'>
<a href="https://adsabs.harvard.edu/abs/2016ApJ...824...55S">ADS</a>
</p>
</div>
<div class='paper'>
<p class='title'> EPIC212521166 b: a Neptune-mass planet with Earth-like density </p>
<p class='authors'> Osborn, H. P.; Santerne, A.; Barros, S. C. C.; Armstrong, D. J.; Santos, N. C.; Hojjatpanah, S.; Demangeon, O.;
Adibekyan, V.; Almenara, J. M.; Barrado, D.; Bayliss, D.; Boisse, I.; Bouchy, F.; Brown, D. J. A.; Deleuil, M.;
Delgado Mena, E.; Hébrard, G.; Kirk, J.; King, G. W.; Lam, K. W. F.; Lillo-Box, J.; Louden, T. M.; Lovis, C.;
Marmier, M.; <strong>McCormac, J.</strong>; Pollacco, D.; Sousa, S. G.; Udry, S.; Walker, S. R. </p>
<p class='date'> May 2016 </p>
<p class='journal'>
<a href="https://adsabs.harvard.edu/abs/2016arXiv160504291O">ADS</a>
</p>
</div>
<h1>2015</h1>
<div class='paper'>
<p class='title'>K2 Variable Catalogue II: Machine Learning Classification of Variable Stars and Eclipsing Binaries in K2 Fields 0-4</p>
<p class='authors'> Armstrong, D. J.; Kirk, J.; Lam, K. W. F.; <strong>McCormac, J.</strong>; Osborn, H. P.; Spake, J.; Walker, S.;
Brown, D. J. A.; Kristiansen, M. H.; Pollacco, D.; West, R.; Wheatley, P. J.</p>
<p class='date'> December 2015</p>
<p class='journal'>
<a href="https://adsabs.harvard.edu/abs/2015arXiv151201246A">ADS</a>
</p>
</div>
<div class='paper'>
<p class='title'>Photodynamical mass determination of the multiplanetary system K2-19</p>
<p class='authors'> Barros, S. C. C.; Almenara, J. M.; Demangeon, O.; Tsantaki, M.; Santerne, A.; Armstrong, D. J.; Barrado, D.;
Brown, D.; Deleuil, M.; Lillo-Box, J.; Osborn, H.; Pollacco, D.; Abe, L.; Andre, P.; Bendjoya, P.; Boisse, I.;
Bonomo, A. S.; Bouchy, F.; Bruno, G.; Cerda, J. Rey; Courcol, B.; Díaz, R. F.; Hébrard, G.; Kirk, J.; Lachurié, J. C.;
Lam, K. W. F.; Martinez, P.; <strong>McCormac, J.</strong>; Moutou, C.; Rajpurohit, A.; Rivet, J.-P.; Spake, J.; Suarez, O.;
Toublanc, D.; Walker, S. R.</p>
<p class='date'> December 2015</p>
<p class='journal'>
<a href="https://adsabs.harvard.edu/abs/2015MNRAS.454.4267B">ADS</a>
</p>
</div>
<div class='paper'>
<p class='title'>SN 2014J at M82: I. A middle-class type Ia supernova by all spectroscopic metrics</p>
<p class='authors'> Galbany, L.; Moreno-Raya, M. E.; Ruiz-Lapuente, P.; González Hernández,
J. I.; Méndez, J.; Vallely, P.; Baron, E.; Domínguez, I.; Hamuy, M.; López-Sánchez,
A. R.; Mollá, M.; Catalán, S.; Cooke, E. A.; Fariña, C.; Génova-Santos, R.;
Karjalainen, R.; Lietzen, H.; <strong>McCormac, J.</strong>; Riddick, F. C.; Rubiño-Martín, J. A.;
Skillen, I.; Tudor, V.; Vaduvescu, O.</p>
<p class='date'> October 2015</p>
<p class='journal'>
<a href="https://adsabs.harvard.edu/abs/2015arXiv151006596G">ADS</a>
</p>
</div>
<div class='paper'>
<p class='title'>Single Transit Candidates from K2: Detection and Period Estimation</p>
<p class='authors'> Osborn, H. P.; Armstrong, D. J.; Brown, D. J. A.; <strong>McCormac, J.</strong>; Doyle, A. P.; Louden, T. M.; Kirk, J.;
Spake, J. J.; Lam, K. W. F.; Walker, S. R.; Faedi, F.; Pollacco, D. L.</p>
<p class='date'> December 2015</p>
<p class='journal'>
<a href="https://adsabs.harvard.edu/abs/2015arXiv151203722O">ADS</a>
</p>
</div>
<div class='paper'>
<p class='title'>Supernova 2014J at M82: II. Direct Analysis of Spectra Obtained with Isaac Newton and William Herschel Telescopes</p>
<p class='authors'> Vallely, Patrick; Moreno-Raya, M. E.; Baron, E.; Ruiz-Lapuente, Pilar; Dominguez, I.; Galbany, Lluis;
Gonzalez Hernandez, J. I.; Mendez, J.; Hamuy, M.; Lopez-Sanchez, A. R.; Catalan, S.; Cooke, E.; Farina, C.;
Genova-Santos, R.; Karjalainen, R.; Lietzen, H.; <strong>McCormac, J.</strong>; Riddick, F.; Rubino-Martin, J. A.; Tudor,
V.; Skillen I.; Vaduvescu, O. </p>
<p class='date'> December 2015 </p>
<p class='journal'>
<a href="https://adsabs.harvard.edu/abs/2015arXiv151202608V">ADS</a>
</p>
</div>
<div class='paper'>
<p class='title'>Characterization of the K2-19 Multiple-transiting Planetary System via High-dispersion Spectroscopy, AO Imaging, and Transit Timing Variations</p>
<p class='authors'> Narita, Norio; Hirano, Teruyuki; Fukui, Akihiko; Hori, Yasunori; Sanchis-Ojeda, Roberto; Winn, Joshua N.; Ryu, Tsuguru;
Kusakabe, Nobuhiko; Kudo, Tomoyuki; Onitsuka, Masahiro; Delrez, Laetitia; Gillon, Michael; Jehin, Emmanuel; <strong>McCormac, James</strong>;
Holman, Matthew; Izumiura, Hideyuki; Takeda, Yoichi; Tamura, Motohide; Yanagisawa, Kenshi </p>
<p class='date'> December 2015 </p>
<p class='journal'>
<a href="https://adsabs.harvard.edu/abs/2015ApJ...815...47N">ADS</a>
</p>
</div>
<div class='paper'>
<p class='title'> WASP-135b: a highly irradiated, inflated hot Jupiter orbiting a G5V star </p>
<p class='authors'> Spake, Jessica J.; Brown, David J. A.; Doyle, Amanda P.; Hébrard, Guillaume; <strong>McCormac, James</strong>; Armstrong, David J.;
Pollacco, Don; Gómez Maqueo Chew, Yilen; Anderson, David R.; Barros, Susana C. C.; Bouchy, François; Boumis, Panayotis;
Bruno, Giovanni; Collier Cameron, Andrew; Courcol, Bastien; Davies, Guy R.; Faedi, Francesca; Hellier, Coel; Kirk, James;
Lam, Kristine W. F.; Liakos, Alexios; Louden, Tom; Maxted, Pierre F. L.; Osborn, Hugh P.; Palle, Enric; Prieto Arranz, Jorge;
Udry, Stéphane; Walker, Simon R.; West, Richard G.; Wheatley, Peter J. </p>
<p class='date'> November 2015 </p>
<p class='journal'>
<a href="https://adsabs.harvard.edu/abs/2015arXiv151105954S">ADS</a>
</p>
</div>
<div class='paper'>
<p class='title'> One of the closest exoplanet pairs to the 3:2 mean motion resonance: K2-19b and c </p>
<p class='authors'> Armstrong, David J.; Santerne, Alexandre; Veras, Dimitri; Barros, Susana C. C.; Demangeon, Olivier; Lillo-Box, Jorge; <strong>McCormac, James</strong>;
Osborn, Hugh P.; Tsantaki, Maria; Almenara, José-Manuel; Barrado, David; Boisse, Isabelle; Bonomo, Aldo S.; Brown, David J. A.;
Bruno, Giovanni; Rey Cerda, Javiera; Courcol, Bastien; Deleuil, Magali; Díaz, Rodrigo F.; Doyle, Amanda P.; Hébrard, Guillaume;
Kirk, James; Lam, Kristine W. F.; Pollacco, Don L.; Rajpurohit, Arvind; Spake, Jessica; Walker, Simon R. </p>
<p class='date'> October 2015 </p>
<p class='journal'>
<a href="https://adsabs.harvard.edu/abs/2015A%26A...582A..33A">ADS</a>
</p>
</div>
<div class='paper'>
<p class='title'> K2 Variable Catalogue: Variable stars and eclipsing binaries in K2 campaigns 1 and 0 </p>
<p class='authors'> Armstrong, D. J.; Kirk, J.; Lam, K. W. F.; <strong>McCormac, J.</strong>; Walker, S. R.; Brown, D. J. A.; Osborn, H. P.; Pollacco, D. L.; Spake, J. </p>
<p class='date'> July 2015 </p>
<p class='journal'>
<a href="https://adsabs.harvard.edu/abs/2015A%26A...579A..19A">ADS</a>
</p>
</div>
<div class='paper'>
<p class='title'> Subaru and Swift observations of V652 Herculis: resolving the photospheric pulsation </p>
<p class='authors'> Jeffery, C. S.; Kurtz, D.; Shibahashi, H.; Starling, R. L. C.; Elkin, V.; Montañés-Rodríguez, P.; <strong>McCormac, J.</strong> </p>
<p class='date'> March 2015 </p>
<p class='journal'>
<a href="https://adsabs.harvard.edu/abs/2015MNRAS.447.2836J">ADS</a>
</p>
</div>
<h1>2014</h1>
<div class='paper'>
<p class='title'> The next generation transit survey prototyping phase </p>
<p class='authors'> <strong>McCormac, J.</strong>; Pollacco, P.; The NGTS Consortium </p>
<p class='date'> December 2014 </p>
<p class='journal'>
<a href="https://adsabs.harvard.edu/abs/2014RMxAC..45...98M">ADS</a>
</p>
</div>
<div class='paper'>
<p class='title'> The EBLM project. II. A very hot, low-mass M dwarf in an eccentric and long-period, eclipsing binary system from the SuperWASP Survey </p>
<p class='authors'> Gómez Maqueo Chew, Y.; Morales, J. C.; Faedi, F.; García-Melendo, E.; Hebb, L.; Rodler, F.; Deshpande, R.; Mahadevan, S.;
<strong>McCormac, J.</strong>; Barnes, R.; Triaud, A. H. M. J.; Lopez-Morales, M.; Skillen, I.; Collier Cameron, A.; Joner, M. D.; Laney, C. D.;
Stephens, D. C.; Stassun, K. G.; Cargile, P. A.; Montañés-Rodríguez, P. </p>
<p class='date'> December 2014 </p>
<p class='journal'>
<a href="https://adsabs.harvard.edu/abs/2014A%26A...572A..50G">ADS</a>
</p>
</div>
<div class='paper'>
<p class='title'> A window on exoplanet dynamical histories: Rossiter-McLaughlin observations of WASP-13b and WASP-32b </p>
<p class='authors'> Brothwell, R. D.; Watson, C. A.; Hébrard, G.; Triaud, A. H. M. J.; Cegla, H. M.; Santerne, A.; Hébrard, E.; Anderson, D. R.; Pollacco, D.;
Simpson, E. K.; Bouchy, F.; Brown, D. J. A.; Chew, Y. Gómez Maqueo; Cameron, A. Collier; Armstrong, D. J.; Barros, S. C. C.; Bento, J.;
Bochinski, J.; Burwitz, V.; Busuttil, R.; Delrez, L.; Doyle, A. P.; Faedi, F.; Fumel, A.; Gillon, M.; Haswell, C. A.; Hellier, C.; Jehin, E.;
Kolb, U.; Lendl, M.; Liebig, C.; Maxted, P. F. L.; <strong>McCormac, J.</strong>; Miller, G. R. M.; Norton, A. J.; Pepe, F.; Queloz, D.; Rodríguez, J.; Ségransan, D.;
Skillen, I.; Smalley, B.; Stassun, K. G.; Udry, S.; West, R. G.; Wheatley, P. J. </p>
<p class='date'> June 2014 </p>
<p class='journal'>
<a href="https://adsabs.harvard.edu/abs/2014MNRAS.440.3392B">ADS</a>
</p>
</div>
<div class='paper'>
<p class='title'> A search for photometric variability towards M71 with the Near-Infrared Transiting ExoplanetS Telescope </p>
<p class='authors'> <strong>McCormac, J.</strong>; Skillen, I.; Pollacco,
D.; Faedi, F.; Ramsay, G.; Dhillon, V. S.; Todd, I.; Gonzalez, A. </p>
<p class='date'> March 2014 </p>
<p class='journal'>
<a href="https://adsabs.harvard.edu/abs/2014MNRAS.438.3383M">ADS</a>
</p>
</div>
<div class='paper'>
<p class='title'> Next Generation Transit Survey (NGTS) </p>
<p class='authors'> Wheatley, Peter J.; Pollacco, Don L.; Queloz, Didier; Rauer, Heike; Watson, Christopher A.; West, Richard G.;
Chazelas, Bruno; Louden, Tom M.; Bannister, Nigel; Bento, Joao; Burleigh, Matthew; Cabrera, Juan; Eigmüller, Philipp;
Erikson, Anders; Genolet, Ludovic; Goad, Michael; Grange, Andrew; Jordán, Andrés; Lawrie, Katherine; <strong>McCormac, James</strong>;
Neveu, Marion; Walker, Simon </p>
<p class='date'> January 2014 </p>
<p class='journal'>
<a href="https://adsabs.harvard.edu/abs/2014IAUS..299..311W">ADS</a>
</p>
</div>
<h1>2013</h1>
<div class='paper'>
<p class='title'> Discovery of WASP-65b and WASP-75b: Two hot Jupiters without highly inflated radii </p>
<p class='authors'> Gómez Maqueo Chew, Y.; Faedi, F.; Pollacco, D.; Brown, D. J. A.; Doyle, A. P.; Collier Cameron, A.; Gillon, M.; Lendl, M.;
Smalley, B.; Triaud, A. H. M. J.; West, R. G.; Wheatley, P. J.; Busuttil, R.; Liebig, C.; Anderson, D. R.; Armstrong, D. J.;
Barros, S. C. C.; Bento, J.; Bochinski, J.; Burwitz, V.; Delrez, L.; Enoch, B.; Fumel, A.; Haswell, C. A.; Hébrard, G.;
Hellier, C.; Holmes, S.; Jehin, E.; Kolb, U.; Maxted, P. F. L.; <strong>McCormac, J.</strong>; Miller, G. R. M.; Norton, A. J.; Pepe, F.;
Queloz, D.; Rodríguez, J.; Ségransan, D.; Skillen, I.; Stassun, K. G.; Udry, S.; Watson, C. </p>
<p class='date'> November 2013 </p>
<p class='journal'>
<a href="https://adsabs.harvard.edu/abs/2013A%26A...559A..36G">ADS</a>
</p>
</div>
<div class='paper'>
<p class='title'> Discovery of Five Probable Novae in M81 </p>
<p class='authors'> Hornoch, K.; Vaduvescu, O.; Dominguez, L.; <strong>McCormac, J.</strong>; Mocnik, T.; Ramanjooloo, Y.; Fusillo, N. Gentile; Doostmohammadi, S. </p>
<p class='date'> October 2013 </p>
<p class='journal'>
<a href="https://adsabs.harvard.edu/abs/2013ATel.5489....1H">ADS</a>
</p>
</div>
<div class='paper'>
<p class='title'> Discovery of Two Apparent Novae in M81 </p>
<p class='authors'> Hornoch, K.; <strong>McCormac, J.</strong>; Vaduvescu, O. </p>
<p class='date'> June 2013 </p>
<p class='journal'>
<a href="https://adsabs.harvard.edu/abs/2013ATel.5109....1H">ADS</a>
</p>
</div>
<div class='paper'>
<p class='title'> DONUTS: A Science Frame Autoguiding Algorithm with Sub-Pixel Precision, Capable of Guiding on Defocused Stars </p>
<p class='authors'> <strong>McCormac, J.</strong>; Pollacco, D.; Skillen, I.; Faedi, F.; Todd,
I.; Watson, C. A. </p>
<p class='date'> May 2013 </p>
<p class='journal'>
<a href="https://adsabs.harvard.edu/abs/2013PASP..125..548M">ADS</a>
</p>
</div>
<div class='paper'>
<p class='title'> The Next Generation Transit Survey (NGTS) </p>
<p class='authors'> Wheatley, Peter J.; Pollacco, Don L.; Queloz, Didier; Rauer, Heike; Watson, Christopher A.; West, Richard G.;
Chazelas, Bruno; Louden, Tom M.; Walker, Simon; Bannister, Nigel; Bento, Joao; Burleigh, Matthew; Cabrera, Juan;
Eigmüller, Philipp; Erikson, Anders; Genolet, Ludovic; Goad, Michael; Grange, Andrew; Jordán, Andrés; Lawrie, Katherine;
<strong>McCormac, James</strong>; Neveu, Marion </p>
<p class='date'> April 2013 </p>
<p class='journal'>
<a href="https://adsabs.harvard.edu/abs/2013EPJWC..4713002W">ADS</a>
</p>
</div>
<div class='paper'>
<p class='title'> WASP-54b, WASP-56b, and WASP-57b: Three new sub-Jupiter mass planets from SuperWASP </p>
<p class='authors'> Faedi, F.; Pollacco, D.; Barros, S. C. C.; Brown, D.; Collier Cameron, A.; Doyle, A. P.; Enoch, R.; Gillon, M.; Gómez Maqueo Chew, Y.;
Hébrard, G.; Lendl, M.; Liebig, C.; Smalley, B.; Triaud, A. H. M. J.; West, R. G.; Wheatley, P. J.; Alsubai, K. A.; Anderson, D. R.;
Armstrong, D.; Bento, J.; Bochinski, J.; Bouchy, F.; Busuttil, R.; Fossati, L.; Fumel, A.; Haswell, C. A.; Hellier, C.; Holmes, S.;
Jehin, E.; Kolb, U.; <strong>McCormac, J.</strong>; Miller, G. R. M.; Moutou, C.; Norton, A. J.; Parley, N.; Queloz, D.; Santerne, A.; Skillen, I.;
Smith, A. M. S.; Udry, S.; Watson, C. </p>
<p class='date'> March 2013 </p>
<p class='journal'>
<a href="https://adsabs.harvard.edu/abs/2013A%26A...551A..73F">ADS</a>
</p>
</div>
<div class='paper'>
<p class='title'> WASP-52b, WASP-58b, WASP-59b, and WASP-60b: Four new transiting close-in giant planets </p>
<p class='authors'> Hébrard, G.; Collier Cameron, A.; Brown, D. J. A.; Díaz, R. F.; Faedi, F.; Smalley, B.; Anderson, D. R.; Armstrong, D.; Barros, S. C. C.;
Bento, J.; Bouchy, F.; Doyle, A. P.; Enoch, B.; Gómez Maqueo Chew, Y.; Hébrard, É. M.; Hellier, C.; Lendl, M.; Lister, T. A.; Maxted, P. F. L.;
<strong>McCormac, J.</strong>; Moutou, C.; Pollacco, D.; Queloz, D.; Santerne, A.; Skillen, I.; Southworth, J.; Tregloan-Reed, J.; Triaud, A. H. M. J.; Udry, S.;
Vanhuysse, M.; Watson, C. A.; West, R. G.; Wheatley, P. J. </p>
<p class='date'> January 2013 </p>
<p class='journal'>
<a href="https://adsabs.harvard.edu/abs/2013A%26A...549A.134H">ADS</a>
</p>
</div>
<h1>2012</h1>
<div class='paper'>
<p class='title'> A hot Uranus transiting the nearby M dwarf GJ 3470. Detected with HARPS velocimetry. Captured in transit with TRAPPIST photometry </p>
<p class='authors'> Bonfils, X.; Gillon, M.; Udry, S.; Armstrong, D.; Bouchy, F.; Delfosse, X.; Forveille, T.; Fumel, A.; Jehin, E.; Lendl, M.; Lovis, C.; Mayor, M.;
<strong>McCormac, J.</strong>; Neves, V.; Pepe, F.; Perrier, C.; Pollaco, D.; Queloz, D.; Santos, N. C. </p>
<p class='date'> October 2012 </p>
<p class='journal'>
<a href="https://adsabs.harvard.edu/abs/2012A%26A...546A..27B">ADS</a>
</p>
</div>
<div class='paper'>
<p class='title'> NGTS: a robotic transit survey to detect Neptune and super-Earth mass planets </p>
<p class='authors'> Chazelas, Bruno; Pollacco, Don; Queloz, Didier; Rauer, Heike; Wheatley, Peter J.;
West, Richard; Da Silva Bento, Joao; Burleigh, Matthew; <strong>McCormac, James</strong>; Eigmüller, Philipp;
Erikson, Anders; Genolet, Ludovic; Goad, Mike; Jordán, Andrés.; Neveu, Marion; Walker, Simon </p>
<p class='date'> September 2012 </p>
<p class='journal'>
<a href="https://adsabs.harvard.edu/abs/2012SPIE.8444E..0EC">ADS</a>
</p>
</div>
<div class='paper'>
<p class='title'> A transiting companion to the eclipsing binary KIC002856960 </p>
<p class='authors'> Armstrong, D.; Pollacco, D.; Watson, C. A.; Faedi, F.; Gómez Maqueo Chew, Y.; Cegla, H. M.; McDaid, P.;
Burton, J.; <strong>McCormac, J.</strong>; Skillen, I. </p>
<p class='date'> September 2012 </p>
<p class='journal'>
<a href="https://adsabs.harvard.edu/abs/2012A%26A...545L...4A">ADS</a>
</p>
</div>
<h1>2011</h1>
<div class='paper'>
<p class='title'> New transiting exoplanets from the SuperWASP-North survey </p>
<p class='authors'> Faedi, Francesca; Barros, Susana C. C.; Pollacco, Don; Simpson, Elaine K.; <strong>McCormac, James</strong>; Moulds, Victoria; Watson, Chris;
Todd, Ian; Keenan, F.; Fitzsimmons, Alan; Chew, Yilen Gómez Maqueo </p>
<p class='date'> November 2011 </p>
<p class='journal'>
<a href="https://adsabs.harvard.edu/abs/2011IAUS..276..143F">ADS</a>
</p>
</div>
<div class='paper'>
<p class='title'> WASP-35b, WASP-48b, and HAT-P-30b/WASP-51b: Two New Planets and an Independent Discovery of a Hat Planet </p>
<p class='authors'> Enoch, B.; Anderson, D. R.; Barros, S. C. C.; Brown, D. J. A.; Collier Cameron, A.; Faedi, F.; Gillon, M.; Hébrard, G.; Lister, T. A.;
Queloz, D.; Santerne, A.; Smalley, B.; Street, R. A.; Triaud, A. H. M. J.; West, R. G.; Bouchy, F.; Bento, J.; Butters, O.; Fossati, L.;
Haswell, C. A.; Hellier, C.; Holmes, S.; Jehin, E.; Lendl, M.; Maxted, P. F. L.; <strong>McCormac, J.</strong>; Miller, G. R. M.; Moulds, V.; Moutou, C.; Norton, A. J.;
Parley, N.; Pepe, F.; Pollacco, D.; Segransan, D.; Simpson, E.; Skillen, I.; Smith, A. M. S.; Udry, S.; Wheatley, P. J. </p>
<p class='date'> September 2011 </p>
<p class='journal'>
<a href="https://adsabs.harvard.edu/abs/2011AJ....142...86E">ADS</a>
</p>
</div>
<div class='paper'>
<p class='title'> WASP-40b: Independent Discovery of the 0.6 M Transiting Exoplanet HAT-P-27b </p>
<p class='authors'> Anderson, D. R.; Barros, S. C. C.; Boisse, I.; Bouchy, F.; Collier Cameron, A.; Faedi, F.; Hebrard, G.; Hellier, C.; Lendl, M.; Moutou, C.; Pollacco, D.; Santerne, A.;
Smalley, B.; Smith, A. M. S.; Todd, I.; Triaud, A. H. M. J.; West, R. G.; Wheatley, P. J.; Bento, J.; Enoch, B.; Gillon, M.; Maxted, P. F. L.; <strong>McCormac, J.</strong>; Queloz, D.;
Simpson, E. K.; Skillen, I. </p>
<p class='date'> May 2011 </p>
<p class='journal'>
<a href="https://adsabs.harvard.edu/abs/2011PASP..123..555A">ADS</a>
</p>
</div>
<div class='paper'>
<p class='title'> Independent Discovery of the Transiting Exoplanet HAT-P-14b </p>
<p class='authors'> Simpson, E. K.; Barros, S. C. C.; Brown, D. J. A.; Collier Cameron, A.; Pollacco, D.; Skillen, I.; Stempels, H. C.; Boisse, I.; Faedi, F.; Hébrard, G.; <strong>McCormac, J.</strong>; Sorensen, P.; Street, R. A.;
Anderson, D.; Bento, J.; Bouchy, F.; Butters, O. W.; Enoch, B.; Haswell, C. A.; Hebb, L.; Hellier, C.; Holmes, S.; Horne, K.; Keenan, F. P.; Lister, T. A.; Maxted, P. F. L.; Miller, G. R. M.; Moulds, V.;
Moutou, C.; Norton, A. J.; Parley, N.; Santerne, A.; Smalley, B.; Smith, A. M. S.; Todd, I.; Watson, C. A.; West, R. G.; Wheatley, P. J.</p>
<p class='date'> May 2011 </p>
<p class='journal'>
<a href="https://adsabs.harvard.edu/abs/2011AJ....141..161S">ADS</a>
</p>
</div>