-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
93 lines (82 loc) · 1.92 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
<html>
<head>
<title>LxArchive - by Earth Networks</title>
</head>
<body>
<div>
<a href="http://lts.ensb.us/lxarchive/">Lx Archive</a>
<a href="http://lts.ensb.us/lxarchive/radius.html">Radius Search</a>
</div>
<hr>
<h1>Lx Historical Report Request</h1>
<p>
Data is currently available from 2014/07/01 - 2017/06/20. Data
from 2017 is still being converted and will be available soon.
</p>
<form method="post" action="report">
<div><b>Prefix</b> to be prepended to the filenames (optional)<BR>
<input id="prefix" name="prefix" type="text">
<BR>
</div>
<div>
<b>Type of Data:</b> pick one<br>
<input type="radio" name="ltType" value="pulse" checked> Pulse<br>
<input type="radio" name="ltType" value="flash"> Flash - (Limited Data) <br>
</div>
<div>
<b>Detection Type: </b>pick all that apply<br>
<input type="checkbox" name="cg" value="true" checked> CG<br>
<input type="checkbox" name="ic" value="true" checked> IC<br>
<input type="checkbox" name="wwlln" value="true" checked> WWLLN<br>
</div>
<b>Time Range: (i.e. 2017-01-31T15:00:00)</b><br>
<table>
<tbody>
<tr>
<td>
<input id="timeMin" name="timeMin" type="text">
</td>
<td>to</td>
<td>
<input id="timeMax" name="timeMax" type="text">
</td>
</tr>
</tbody>
</table>
</div>
<div>
<b>Latitude Range:</b><br>
<table>
<tbody>
<tr>
<td>
<input id="latMin" name="latMin" type="text">
</td>
<td>to</td>
<td>
<input id="latMax" name="latMax" type="text">
</td>
</tr>
</tbody>
</table>
</div>
<div>
<b>Longitude Range:</b><br>
<table>
<tbody>
<tr>
<td>
<input id="lonMin" name="lonMin" type="text">
</td>
<td>to</td>
<td>
<input id="lonMax" name="lonMax" type="text">
</td>
</tr>
</tbody>
</table>
</div>
<p><input type="submit" value="Submit"></p>
</form>
</body>
</html>