kopia lustrzana https://github.com/glidernet/ogn-python
81 wiersze
3.1 KiB
HTML
81 wiersze
3.1 KiB
HTML
<!DOCTYPE html>
|
|
<!--
|
|
|
|
ogn-live - Display glider traffic from OpenGliderNetwork
|
|
Copyright (C) 2015 Sebastien Chaumontet and others
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU Affero General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU Affero General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
____ _____ _ _ _ _ _ _ _
|
|
/ __ \ / ____| (_) | | | \ | | | | | |
|
|
| | | |_ __ ___ _ __ | | __| |_ __| | ___ _ __ | \| | ___| |___ _____ _ __| | __
|
|
| | | | '_ \ / _ \ '_ \ | | |_ | | |/ _` |/ _ \ '__| | . ` |/ _ \ __\ \ /\ / / _ \| '__| |/ /
|
|
| |__| | |_) | __/ | | | | |__| | | | (_| | __/ | | |\ | __/ |_ \ V V / (_) | | | <
|
|
\____/| .__/ \___|_| |_| \_____|_|_|\__,_|\___|_| |_| \_|\___|\__| \_/\_/ \___/|_| |_|\_\
|
|
| |
|
|
|_|
|
|
-->
|
|
<html>
|
|
<head>
|
|
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
|
|
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
|
|
<title>Spot the gliders!</title>
|
|
<link href="cunimb.css" rel="stylesheet" type="text/css" />
|
|
|
|
|
|
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?v=3&libraries=geometry&sensor=false"></script>
|
|
<script type="text/javascript" src="util.js"></script>
|
|
<script type="text/javascript">
|
|
var cxml = "lxml.php";
|
|
var cxml1 = "livexml1.php";
|
|
var dxml = "dataxml.php";
|
|
var rxml = "rec.php";
|
|
var tld = "http://{{ ip_address }}:{{ port }}";
|
|
var vlon = 11.0;
|
|
var vlat = 48.0;
|
|
var vlatmin = 40.0;
|
|
var vlonmin = 10.0;
|
|
var vlatmax = 60.0;
|
|
var vlonmax = 20.0;
|
|
var bound = false;
|
|
var boundc = '';
|
|
var amax = 85;
|
|
var amin = -85;
|
|
var omax = 180;
|
|
var omin = -180;
|
|
var recc = "";
|
|
var parc = "";
|
|
var tz;
|
|
try {
|
|
tz = new Date().getTimezoneOffset();
|
|
} catch (e) {
|
|
tz = 0;
|
|
}
|
|
</script>
|
|
<script type="text/javascript" src="cunimb.js"></script>
|
|
|
|
</head>
|
|
|
|
<body onload="initialize()">
|
|
<div id="popup" onclick="cp('popup');"></div>
|
|
<div id="map_canvas"></div>
|
|
<div id="ac" class="acright" onclick="this.style.display='none';"></div>
|
|
<div id="dlist" class="lright">
|
|
<DIV id="ett1"></DIV>
|
|
<DIV id="ett2"></DIV>
|
|
<DIV id="dtable"></DIV>
|
|
</div>
|
|
</body>
|
|
|
|
</html> |