-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
111 lines (105 loc) · 3.84 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="keywords" content="Aviation, Weather, Forecast, Service, AWC, CheckWX, API, VFR, MVFR, IFR, LIFR, Climate, Data, Rain, Raining, Snow">
<meta name="description" content="Get aviation weather data.">
<script src="https://kit.fontawesome.com/a26a0964b9.js" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<link rel="icon" href="./Images/icon1.png">
<link rel="stylesheet" href="style.css">
<!-- Driver.js cdn for website guide -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/driver.js.iife.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/driver.css"/>
<title>AviaWeather</title>
</head>
<body>
<div class='header'>
<p>AviaWeather</p>
<span class="fa-solid fa-info" onclick="info()"></span>
</div>
<div id='d1'>
<div class='tooltip'>
<input type='search' minlength='3' id='inp' placeholder='Enter Airport Id' autofocus>
<span class="tooltiptext" id="myTooltip">Enter ICAO followed by hours to get history '[query]2'</span>
</input>
</div>
<button onclick='get()'> Search </button>
</div>
<div id='d2'>
<label for='metar'>METAR
<input type='radio' id='metar' name='same' checked>
<label for='taf'>TAF
<input type='radio' id='taf' name='same'>
<label for='awc'>AWC
<input type='checkbox' id='awc'>
<label for='cwx'>CWX
<input type='checkbox' id='cwx' checked>
<label for='info'>INFO</label>
<input type='radio' id='info' name='same'>
<label for='avwx'>AVWX</label>
<input type='checkbox' id='avwx'>
</div>
<div class='d3'>
<p></p>
Type: <b></b> <br>
Airport: <b></b> <br>
ICAO Code: <b></b> <br>
Reported: <b></b> <br>
Temperature: <b></b> <br>
Dewpoint: <b></b> <br>
Wind: <b></b> <br>
Visibility: <b></b> <br>
Pressure: <b></b> <br>
Condition: <b></b> <br>
Clouds: <b></b> <br>
Raw: <b></b> <hr>
</div>
<div class='d4'>
<p></p>
Type: <b></b> <br>
Airport: <b></b> <br>
ICAO Code: <b></b> <br>
Reported: <b></b> <br>
Temperature: <b></b> <br>
Dewpoint: <b></b> <br>
Humidity: <b></b> <br>
Wind: <b></b> <br>
Visibility: <b></b> <br>
Pressure: <b></b> <br>
Condition: <b></b> <br>
Clouds: <b></b> <br>
Raw: <b></b> <br>
Flight Category: <b></b> <div id='fl'></div> <hr>
</div>
<div class='d5'>
<p></p>
Type: <b></b> <br>
Remark: <b></b> <br>
Airport: <b></b> <br>
ICAO Code: <b></b> <br>
Issued: <b></b> <br>
Span: <b></b> <br>
<b></b> <br>
Raw: <b></b> <hr>
</div>
<div class='d6'></div>
<div class='d7'></div>
<div class='d8'>
<label for='map'>Show Map
<input id='map' type='checkbox'>
</div>
<iframe width="400px" height='400px' frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="https://maps.google.com/maps?width=600&height=400&hl=en&q=Biju pattanaik international airport&t=&z=13&ie=UTF8&iwloc=B&output=embed"></iframe>
<footer>
Page designed by <a href='//sudipta1254.github.io/linkline'>Sudipto</a> <br>
Data provided by
<a href='//aviationweather.gov' target="_blank">AWC</a>,
<a href='//checkwxapi.com' target="_blank">CheckWX</a> &
<a href='//avwx.rest' target="_blank">AVWX</a>
</footer>
<script src="script.js"></script>
<script src="tour.js"></script>
<body>
</html>