-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathindex.html
101 lines (85 loc) · 4.23 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
<!DOCTYPE html>
<html>
<style type="text/css" media="screen">
h2[id]::before {
display: block;
content: " ";
margin-top: -125px;
height: 125px;
}
</style>
<script src="scripts/matomo.js" defer></script>
<script src="scripts/myscripts.js" defer></script>
<script src="scripts/includeHTML.js" defer></script>
<div data-include="header.html"></div>
<body>
<div data-include="navbar.html"></div>
<main>
<div class="opener container" align="center">
<img src="img/gammapy_banner.png" alt="Gammapy banner" id="gp-banner" draggable="false"/>
<p class="lead mb-4">
Gammapy is an open-source Python package for gamma-ray astronomy built on
<a href="https://numpy.org">Numpy</a>, <a href="https://scipy.org">Scipy</a>
and <a href="https://www.astropy.org">Astropy</a>. <br>
It is used as core library for the Science Analysis tools of the <a href="https://www.ctao.org/">Cherenkov
Telescope Array Observatory (CTAO)</a>, recommended by the
<a href="https://www.mpi-hd.mpg.de/hfm/HESS/">H.E.S.S.</a> collaboration to be used for Science publications,
and is already widely used in the analysis of existing gamma-ray instruments,
such as <a href="https://magic.mpp.mpg.de/">MAGIC</a>,
<a href="https://veritas.sao.arizona.edu">VERITAS</a>
and <a href="https://www.hawc-observatory.org">HAWC</a>.
</p>
<br>
<br>
<p class="lead mb-4"><u>News:</u></p>
<div style="overflow-y:scroll; border:#000000 1px solid; width:70%;height:135px;">
<table class="lead mb-4" style="width:100%">
<tr style="vertical-align:top">
<td style="width:20%">Nov. 26th, 2024:</td>
<td>Minor version release v1.3</td>
</tr>
<tr style="vertical-align:top">
<td style="width:20%">Aug. 5th, 2024:</td>
<td>The <a href="https://oscars-project.eu/">OSCARS</a> consortium finances Gammapy</td>
</tr>
<tr style="vertical-align:top">
<td style="width:20%">Feb. 29th, 2024:</td>
<td>Minor version release v1.2</td>
</tr>
<tr style="vertical-align:top">
<td style="width:20%">Dec. 6th, 2023:</td>
<td>Bug fix release v1.0.2</td>
</tr>
<tr style="vertical-align:top">
<td style="width:20%">Oct. 23rd, 2023:</td>
<td>Publication of the first Gammapy paper in
<a href="https://www.aanda.org/articles/aa/abs/2023/10/aa46488-23/aa46488-23.html">A&A</a> (accepted: 7th July 2023)
as highlighted paper (<a href="https://www.aanda.org/2023-highlights/2907">link<a>)
</td>
</tr>
</table>
</div>
<br>
<br>
<p class="lead mb-4">
<span style="font-size: 110%;">Please remember to <a href="acknowledging.html">acknowledge and cite</a> the use of Gammapy!</span>
</p>
<br>
<div class="mb-4">
<a href="https://docs.gammapy.org/"
class="btn btn-lg btn-outline-primary mb-3 mb-md-0 mr-md-3">Documentation</a>
<a href="https://docs.gammapy.org/1.3/getting-started/index.html"
class="btn btn-lg btn-outline-primary mb-3 mb-md-0 mr-md-3">Install</a>
<p class="lead mb-2">Current version: 1.3 </p>
<p><a href="https://docs.gammapy.org/1.3/release-notes/v1.3.html">v1.3 changelog</a> and other <a href="news.html">releases</a></p>
</div>
</div>
</main>
<!-- Footer Section -->
<div data-include="footer.html"></div>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<script src="scripts/navbarCollapse.js" defer></script>
</body>
</html>