|
@@ -0,0 +1,39 @@
|
|
|
+<html>
|
|
|
+ <title>Compton pictures</title>
|
|
|
+ <meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
+ <link rel="stylesheet" href="main.css">
|
|
|
+
|
|
|
+ <body>
|
|
|
+ <div class="main_block">
|
|
|
+ <h1>Compton avg by seasons</h1>
|
|
|
+
|
|
|
+ <!--
|
|
|
+ <?php
|
|
|
+ $directory = '.';
|
|
|
+ $scanned_directory = array_diff(scandir($directory), array('..', '.'));
|
|
|
+ $indir = array_filter($scanned_directory, function($item) {
|
|
|
+ return is_dir('./' . $item);
|
|
|
+ });
|
|
|
+ foreach($indir as $v){ ?>
|
|
|
+ <a href="./plots.php?season=<?echo $v;?>"><?echo $v;?></a><br>
|
|
|
+ <?
|
|
|
+ }
|
|
|
+ ?>
|
|
|
+
|
|
|
+ <br> -->
|
|
|
+
|
|
|
+ <a href="./init.php?season=RHO2013">RHO2013<a><br>
|
|
|
+ <a href="./init.php?season=HIGH2017">HIGH2017<a><br>
|
|
|
+ <a href="./init.php?season=RHO2018">RHO2018<a><br>
|
|
|
+ <a href="./init.php?season=HIGH2019">HIGH2019<a><br>
|
|
|
+ <a href="./init.php?season=LOW2020">LOW2020<a><br>
|
|
|
+ <a href="./init.php?season=HIGH2020">HIGH2020<a><br>
|
|
|
+ <a href="./init.php?season=HIGH2021">HIGH2021<a><br>
|
|
|
+ <a href="./init.php?season=NNBAR2022">NNBAR2022</a><br>
|
|
|
+ <a href="./init.php?season=HIGH2023">HIGH2023</a><br>
|
|
|
+ <a href="./init.php?season=PHI2024">PHI2024</a><br>
|
|
|
+ <br>
|
|
|
+ <a href="./summary.php?csv_file=PHI2024.csv">Season summary</a>
|
|
|
+ </div>
|
|
|
+ </body>
|
|
|
+</html>
|