Skip to content

Commit e7e1f24

Browse files
authored
Merge pull request projecthorus#23 from darksidelemm/main
Update welcome area, make chase car uploads work
2 parents e398162 + a1d5217 commit e7e1f24

File tree

2 files changed

+22
-12
lines changed

2 files changed

+22
-12
lines changed

index.html

Lines changed: 20 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -61,22 +61,32 @@
6161
<h2><i class="icon-question rfloat"></i>Welcome</h2>
6262
<hr/>
6363
<div id="motda">
64-
65-
<h4>How do I receive?</h4>
66-
Set up a receiver station using
67-
<a href="https://github.com/projecthorus/horusdemodlib/wiki/1.1-Horus-GUI-Reception-Guide-(Windows-Linux-OSX)" target="_blank" rel="noopener">Horus-GUI</a> or <a href="https://github.com/projecthorus/horusdemodlib/wiki/1.2--Raspberry-Pi-'Headless'-RX-Guide" target="_blank" rel="noopener">horusdemodlib</a>.
64+
This site displays telemetry from Amateur Radio high-altitude balloon launches, using the
65+
<a href="https://github.com/projecthorus/sondehub-infra/wiki" target="_blank" rel="noopener">SondeHub-Amateur</a> database.
66+
The tracker and database are still under development, so some features may be non-functional.
67+
<br/>
68+
If you're looking for meteorological radiosondes, try the regular
69+
<a href="https://tracker.sondehub.org/" target="_blank" rel="noopener">SondeHub Tracker.</a>
70+
71+
<h4>How do I help receive?</h4>
72+
Information on receiving common telemetry formats is
73+
<a href="https://github.com/projecthorus/sondehub-amateur-tracker/wiki/Receiving-High-Altitude-Balloon-Telemetry" target="_blank" rel="noopener">available here.</a>
74+
<br/>
75+
76+
<h4>I'm launching a balloon!</h4>
77+
<a href="https://github.com/projecthorus/sondehub-amateur-tracker/wiki/Getting-your-Flight-on-the-Sondehub-Amateur-Tracker" target="_blank" rel="noopener">Click here</a>
78+
for information on how to get your balloon on the map!
6879
<br/>
6980

7081
<h4>Support Us!</h4>
7182
AWS hosting unfortunately does not come cheap.
7283
If you use SondeHub Amateur regularly, please consider <a href="https://www.patreon.com/sondehub" target="_blank" rel="noopener">supporting us on Patreon</a>, or with a <a href="https://sondehub.org/go/donate" target="_blank" rel="noopener">donation on Paypal</a>.
84+
<br />
85+
A huge thanks to
86+
<a href="https://www.ampr.org/" target="_blank" rel="noopener">Amateur Radio Digital Communications</a> for supporting us with a grant!
7387

74-
<h4>Info</h4>
75-
This site uses data from the <a href="https://github.com/projecthorus/sondehub-infra/wiki" target="_blank" rel="noopener">SondeHub Amateur</a> database, which will remove the
76-
load from the Habitat tracking database.
77-
7888
<h4>Predictions</h4>
79-
You can predict the flight paths of future sondes using the <a href="https://predict.sondehub.org/" target="_blank" rel="noopener">SondeHub Predictor</a>.
89+
You can predict the flight paths of future launches using the <a href="https://predict.sondehub.org/" target="_blank" rel="noopener">SondeHub Predictor</a>.
8090

8191
</div>
8292
<h2>Contribute</h2>
@@ -224,7 +234,7 @@ <h2><i class="icon-car rfloat"></i>Chase Mode</h2>
224234
<span class="r"><input type="text" id="cc_callsign" style="width: 140px;"/></span>
225235
</div>
226236
<div class="row">
227-
<span><b>Notice: If you enable this, your location will be uploaded to SondeHub; making it publicly visible on the map.</b></span>
237+
<span><b>Notice: If you enable this, your location will be uploaded to SondeHub-Amateur, making it publicly visible on the map.</b></span>
228238
</div>
229239
<hr>
230240
<div class="row">

js/chasecar.lib.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*/
99

1010
ChaseCar = {
11-
db_uri: "https://api.v2.sondehub.org/listeners", // Sondehub API
11+
db_uri: "https://api.v2.sondehub.org/amateur/listeners", // Sondehub API
1212
};
1313

1414
// Updated SondeHub position upload function.
@@ -22,7 +22,7 @@ ChaseCar.updatePosition = function(callsign, position) {
2222
_position_alt = ((!!position.coords.altitude) ? position.coords.altitude : 0);
2323

2424
var _doc = {
25-
"software_name": "SondeHub Amateur",
25+
"software_name": "SondeHub-Amateur",
2626
"software_version": "{VER}",
2727
"uploader_callsign": callsign,
2828
"uploader_position": [position.coords.latitude, position.coords.longitude, _position_alt],

0 commit comments

Comments
 (0)