-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoutreach.html
More file actions
63 lines (63 loc) · 3.53 KB
/
outreach.html
File metadata and controls
63 lines (63 loc) · 3.53 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style.css">
<script src="https://kit.fontawesome.com/43575c3d5f.js" crossorigin="anonymous"></script>
<title>Toby Rodel</title>
<script>
function expandtopbar() {
var x = document.getElementById("pagetopnav");
if (x.className === "topnav") {
x.className += " responsive";
} else {
x.className = "topnav";
}
}
</script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div class="topnav" id="pagetopnav">
<a href="index.html">Home</a>
<a href="research.html">Research</a>
<a href="outreach.html">Outreach</a>
<a href="publications.html">Publications</a>
<a href="conferences.html">Conferences</a>
<a href="javascript:void(0);" class="icon" onclick="expandtopbar()">
<i class="fa fa-bars"></i>
</a>
</div>
<div class="mainbody" id="pagemaintext">
<h1>Outreach</h1>
<h2>Planetaria</h2>
<h3>Warwick Planetarium</h3>
<p>During my time at the University of Warwick, I was a member of the team that ran the university's planetarium. I helped set up and take down the dome and delivered custom shows using Stellarium at numerous school visits and festivals</p>
<h3>Belfast Planetarium</h3>
<p>I have recently also become involved in efforts to start a mobile planetarium program at Queen's University Belfast in collaboration with the Irish Astronimical Assosciation (IAA)</p>
<h2>Public Talks</h2>
<figure>
<img src="files/images/AoT.JPG" width="500">
<figcaption>Me giving a talk at Astronomy on Tap Belfast</figcaption>
</figure>
<p>I have given numerous public talks to amateur societies such as the Irish Astronimical Association (IAA) and at public events like Astronomy on Tap Belfast</p>
<h2>Events and festivals</h2>
<figure>
<img src="files/images/big_bang.png" alt="Three people stood in front of a table" width="500">
<figcaption>Mairi O'Brien (left), Myself (Centre) and Lauren Doyle (right) at the Warwick Astro stall at the big bang science festival in Birmigham.</figcaption>
</figure>
<p>I have been involved in the planning and delivery of public events and festivals. I have run a stall at Astronomy day during the Northern Ireland Science Festival and voluteered at the Big Bang Festival in Birmingham.</p>
</div>
</body>
<footer>
<div class="social-buttons">
<a href="https://github.com/TobyRodel"><i class="fa-brands fa-github fa-2x"></i></a>
<a href="https://www.linkedin.com/in/toby-rodel-516141216/"><i class="fa-brands fa-linkedin fa-2x"></i></a>
<a href="https://bsky.app/profile/astrotobe.bsky.social"><i class="fa-brands fa-bluesky fa-2x"></i></a>
</div>
<span class="footleft"><i class="fa-solid fa-envelope"></i><a href="mailto:trodel01@qub.ac.uk">trodel01@qub.ac.uk</a></span>
<span class="footright"><i class="fa-brands fa-orcid"></i><a href="https://orcid.org/0009-0009-2175-7284">0009-0009-2175-7284</a></span>
<small>
<br><i class="fa-regular fa-copyright"></i> 2026 Toby Rodel. All rights reserved.
</small>
</footer>
</html>