forked from ACCarnall/old_accarnall.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
111 lines (92 loc) · 3.67 KB
/
index.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
---
layout: default
---
<div class="homepage">
<p>
<img width="450" align="right" src="images/vlt_milky_way.jpg">
My research brings together cutting-edge techniques from the fields of astronomy, statistics and data science in order to understand the evolution of galaxies across cosmic time.
</p>
<p>
I work with data from world-class telescopes across the globe and in space. I am a core member of <a href="http://vandels.inaf.it">VANDELS</a>, a large European Southern Observatory Public Survey on the Very Large Telescope at Paranal Observatory in Chile.
</p>
<p>
I also develop astronomical software, most notably <a href="https://bagpipes.readthedocs.io">BAGPIPES</a>, a Python tool for generating complex model galaxy spectra and fitting these to both spectroscopic and photometric observational data.
</p>
<p>
When I'm not at work I enjoy travelling and spending time outdoors. I'm currently working on <a href="https://www.walkhighlands.co.uk/Forum/memberlist.php?mode=viewmap&u=81733">climbing all 282 Scottish Munros</a> (mountains over 3000 feet). I also enjoy taking photos of the places I visit, some of which are shown below.
</p>
<div class="slideshow-container">
<div class="mySlides fade">
<div class="numbertext">1 / 7</div>
<img style="margin:0px" src="images/IMG_6048.jpg">
<div class="text">The Five Sisters of Kintail from Ciste Dhubh</div>
</div>
<div class="mySlides fade">
<div class="numbertext">2 / 7</div>
<img style="margin:0px" src="images/IMG_8302.jpg">
<div class="text">Monument Valley</div>
</div>
<div class="mySlides fade">
<div class="numbertext">3 / 7</div>
<img style="margin:0px" src="images/IMG_3086.jpg">
<div class="text">Glencoe from Cruach Ardrain</div>
</div>
<div class="mySlides fade">
<div class="numbertext">4 / 7</div>
<img style="margin:0px" src="images/IMG_5744.jpg">
<div class="text">Glacier Grey, Torres del Paine National Park, Chile</div>
</div>
<div class="mySlides fade">
<div class="numbertext">5 / 7</div>
<img style="margin:0px" src="images/IMG_8442.jpg">
<div style="color:black" class="text">Death Valley</div>
</div>
<div class="mySlides fade">
<div class="numbertext">6 / 7</div>
<img style="margin:0px" src="images/IMG_7115.jpg">
<div class="text">Isle of Mull from Easdale</div>
</div>
<div class="mySlides fade">
<div class="numbertext">7 / 7</div>
<img style="margin:0px" src="images/IMG_8564.jpg">
<div style="color:black" class="text">Half Dome, Yosemite Valley</div>
</div>
<a class="prev" onclick="plusSlides(-1)">❮</a>
<a class="next" onclick="plusSlides(1)">❯</a>
</div>
<br>
<div style="text-align:center">
<span class="dot" onclick="currentSlide(1)"></span>
<span class="dot" onclick="currentSlide(2)"></span>
<span class="dot" onclick="currentSlide(3)"></span>
<span class="dot" onclick="currentSlide(4)"></span>
<span class="dot" onclick="currentSlide(5)"></span>
<span class="dot" onclick="currentSlide(6)"></span>
<span class="dot" onclick="currentSlide(7)"></span>
</div>
</div>
<script>
var slideIndex = 1;
showSlides(slideIndex);
function plusSlides(n) {
showSlides(slideIndex += n);
}
function currentSlide(n) {
showSlides(slideIndex = n);
}
function showSlides(n) {
var i;
var slides = document.getElementsByClassName("mySlides");
var dots = document.getElementsByClassName("dot");
if (n > slides.length) {slideIndex = 1}
if (n < 1) {slideIndex = slides.length}
for (i = 0; i < slides.length; i++) {
slides[i].style.display = "none";
}
for (i = 0; i < dots.length; i++) {
dots[i].className = dots[i].className.replace(" active", "");
}
slides[slideIndex-1].style.display = "block";
dots[slideIndex-1].className += " active";
}
</script>