-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (51 loc) · 1.23 KB
/
index.html
File metadata and controls
53 lines (51 loc) · 1.23 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Euclid Modules Developed by ENSCI</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 40px;
background-color: #f9fafc;
color: #333;
}
h1 {
text-align: center;
font-size: 2em;
margin-bottom: 30px;
color: #2c3e50;
}
ul {
list-style: none;
padding: 0;
max-width: 400px;
margin: 0 auto;
}
li {
margin: 10px 0;
}
a {
text-decoration: none;
color: #0066cc;
font-weight: bold;
transition: color 0.2s ease;
}
a:hover {
color: #004080;
}
</style>
</head>
<body>
<h1>Euclid Modules Developed by ENSCI</h1>
<ul>
<li><a href="decontamination">SIR_SpectraDecontamination</a></li>
<li><a href="detector_scaling_apply">SIR_ApplyDetectorScaling</a></li>
<li><a href="detector_scaling_calibration">SIR_DetectorScalingCalibration</a></li>
<li><a href="nonlinearity">NIR_NonLinearitySaturation</a></li>
<li><a href="SIR_RelFluxModel">SIR_RelativeFluxModel</a></li>
<li><a href="masterdark">NIR_DarkBiasSubtraction</a></li>
<li><a href="badpixel">NIR_BadPixelMasking</a></li>
</ul>
</body>
</html>