-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
114 lines (88 loc) · 3.11 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
112
113
114
<!DOCTYPE html>
<!-- Windows: Use "py -3 -m http.server" to a simple Python3 webserver -->
<!-- Access Python 3 webserver using "http://localhost:8000/" -->
<!-- See https://developer.mozilla.org/en-US/docs/Learn/Common_questions/Tools_and_setup/set_up_a_local_testing_server for details -->
<!-- including Linux/Mac machine and Python 2 support -->
<html>
<head>
<title>scchan21.github.io</title>
<style>
.column {
flex: 30%;
padding: 5px;
}
img {
width: 100%;
}
.container {
display: flex;
}
</style>
</head>
<body style="background-color:powderblue;" onload="myFunction()">
<h1>Welcome to scchan21.github.io</h1>
<section>
<h2>Introduction</h2>
<div class="container">
<div class="column">
<img src="pics/home/minack_small.jpg" alt="Minack Theatre, Cornwall">
</div>
<div class="column">
<img src="pics/home/stourhead_small.jpg" alt="Stourhead, Wiltshire">
</div>
</div>
<div class="container">
<div class="column">
<img src="pics/home/kenrokuen_small.jpg" alt="Kenrokuen, Ishikawa">
</div>
<div class="column">
<img src="pics/home/tateyama_small.jpg" alt="Tateyama, Toyama">
</div>
</div>
<p> I am Steven Chan; I am a climate scientist working at UK National Oceanography Centre at Southampton.</p>
</section>
<hr class="solid">
<section>
<h1>Research</h1>
<p>My work covers a range of topics, including:</p>
<ul>
<li>Tropical meteorology
<li>Large-scale dynamics
<li>Global and regional/mesoscale climate models
<li>Climate change adapation
<li>Data science and statistical modelling of climate data
<li>Extreme events
<li>Land and sea surface observations
</ul>
<h3>A more complete description can be found <a href="cv.html">here</a>.</h3>
<section>
<h1>Research Downloads</h1>
<p><a href="./Files2Share/index.html">Downloadable Content</a></p>
</section>
<section>
<h1>My Code and Data Repos:</h1>
<p>Code repo: <a href="https://github.com/SCChan21/DYMECSTracking4CPMs_OCTAVE">Precipitation Object Tracking</a> for <a href="https://doi.org/10.1038/s43247-022-00669-2">2023 Communications Earth & Environment paper</a></p>
<p>Data access: <a href="https://catalogue.ceda.ac.uk/uuid/f39f0aa295304d55beeb0a850760b061">Kilometer-scale model precipitation object tracks</a> for <a href="https://doi.org/10.1038/s43247-022-00669-2">2023 Communications Earth & Environment paper</a></p>
<p>Data access: <a href="https://catalogue.ceda.ac.uk/uuid/18f83caf9bdf4cb4803484d8dce19eef">Future-Drainage -- Short duration rainfall changes projected by UKCP Local</a> for <a href="https://doi.org/10.1016/j.cliser.2023.100375">2023 Climate Services paper</a></p>
</section>
</section>
<hr class="solid">
<section>
<h1>Leisure and Hobbies</h1>
<p><a href="leisure.html">Activities and Memberships</a></p>
</section>
<hr class="solid">
<section>
<h1>Links</h1>
<p>Go to my <a href="https://github.com/SCChan21">GitHub profile</a></p>
</section>
<hr class="solid">
<p>This is last updated on <span id="LastUpdate"></span></p>
<script>
function myFunction() {
var x = document.lastModified;
document.getElementById("LastUpdate").innerHTML = x;
}
</script>
</body>
</html>