Skip to content

Commit 8c7c008

Browse files
committed
Update titles, remove RS filter, change default timeframe
1 parent d7de0e0 commit 8c7c008

File tree

3 files changed

+28
-21
lines changed

3 files changed

+28
-21
lines changed

index.html

Lines changed: 17 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
<html lang="en" manifest="cache.manifest">
33
<head>
44
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
5-
<title>habhub tracker (high altitude balloons)</title>
6-
<meta name="description" content="Live tracking of high altitude balloon. Data via habhub and APRS. Includes weather overlay, predictions, and access to historic hab fligts on habhub." />
7-
<meta name="author" content="Rossen Georgiev" />
8-
<link rel="search" type="application/opensearchdescription+xml" href="opensearchspec.xml" title="Search on Habhub Tracker">
5+
<title>SondeHub Tracker</title>
6+
<meta name="description" content="Live tracking of radiosonde flights. Data via SondeHub v2. Includes weather overlay, predictions, and access to historic radiosonde flights on sondehub." />
7+
<meta name="author" content="Rossen Georgiev / Mark Jessop / Michaela Wheeler" />
8+
<link rel="search" type="application/opensearchdescription+xml" href="opensearchspec.xml" title="Search on Sondebhub Tracker">
99
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1, maximum-scale=1"/>
1010
<meta name="apple-mobile-web-app-title" content="Habhub Tracker">
1111
<meta name="apple-mobile-web-app-capable" content="yes" />
@@ -87,17 +87,24 @@ <h2>Embed tracker
8787
<div class="slimContainer">
8888
<h2><i class="icon-question rfloat"></i>Welcome</h2>
8989
<hr/>
90-
<div id='motd'><img style='display:block;margin:0 auto;width:90px;height:30px' src="img/hab-spinner.gif" /></div>
90+
<div id="motda">
91+
<h3>Radiosondes?</h3>
92+
93+
To learn more check out our
94+
<a href="https://www.youtube.com/watch?v=YBy-bXEWZeM">Linux.conf.au video</a>
95+
.
96+
97+
<h3>Want to setup a receive station?</h3>
98+
99+
The receiving software can be found at
100+
<a href="https://github.com/projecthorus/radiosonde_auto_rx">https://github.com/projecthorus/radiosonde_auto_rx</a>
101+
</div>
91102
<br/>
92-
<iframe data-src="https://www.google.com/calendar/embed?title=Habhub%20Calendar&amp;showTitle=0&amp;showNav=0&amp;showPrint=0&amp;showTabs=0&amp;showCalendars=0&amp;mode=AGENDA&amp;height=450&amp;wkst=2&amp;bgcolor=%23ffffff&amp;src=5m4629p2h0esfojq1elep31einvu2q0v%40import.calendar.google.com&amp;color=%2300a3d3&amp;hl=en_GB" style=" border-width:0 " width="290" height="450" frameborder="0" scrolling="no"></iframe>
93-
<p>
94-
Want to track with <b>Google Earth</b> instead?<br/> <a href="track.kml">Just click here</a>
95-
</p>
96103
<h2>Contribute</h2>
97104
<hr/>
98105
<p>
99106
Did you know the tracker is open-source? Check it out on
100-
<a href="https://github.com/rossengeorgiev/habitat-mobile-tracker">github/habitat-mobile-tracker</a>.
107+
<a href="https://github.com/projechorus/sondehub-tracker">github/sondehub-tracker</a>.
101108
Bug reports, suggestions and pull requests are welcome. You can also
102109
find us on IRC in <a href="http://webchat.freenode.net/?channels=highaltitude">#highaltitude</a> at <b>irc.freenode.org</b>.
103110
</p>

js/app.js

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ var wvar = {
6262
focus: "",
6363
mode: (is_mobile) ? modeDefaultMobile : modeDefault,
6464
zoom: true,
65-
query: "!RS_*;",
65+
query: "",
6666
nyan: false,
6767
};
6868

@@ -688,17 +688,17 @@ $(window).ready(function() {
688688
$('.flatpage, #homebox').hide();
689689
box.show().scrollTop(0);
690690

691-
if(name == 'about' && !$('#motd').hasClass('inited')) {
692-
$('#motd').addClass('inited');
691+
// if(name == 'about' && !$('#motd').hasClass('inited')) {
692+
// $('#motd').addClass('inited');
693693

694-
$.getJSON("//spacenear.us/tracker/datanew.php?type=info", function(data) {
695-
if('html' in data) $('#motd').html(data.html.replace(/\\/g,''));
696-
});
694+
// $.getJSON("//spacenear.us/tracker/datanew.php?type=info", function(data) {
695+
// if('html' in data) $('#motd').html(data.html.replace(/\\/g,''));
696+
// });
697697

698-
var iframe = box.find('iframe');
699-
var src = iframe.attr('data-src');
700-
iframe.attr('src', src);
701-
}
698+
// var iframe = box.find('iframe');
699+
// var src = iframe.attr('data-src');
700+
// iframe.attr('src', src);
701+
// }
702702

703703
// analytics
704704
var pretty_name;

js/tracker.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ var modeList = [
4949
"3 days",
5050
"All",
5151
];
52-
var modeDefault = "1 day";
52+
var modeDefault = "6 hours";
5353
var modeDefaultMobile = "1 hour";
5454

5555
// order of map elements

0 commit comments

Comments
 (0)