You can find the status of the SondeHub Database on the SondeHub Dashboard.
You can view outages of the SondeHub Database at SondeHub Status.
+
Info
+ This site uses data from the SondeHub database.
+
Chase Cars
Chase Cars can show up on the map using this tracker's chase-car features (look for the car icon at top-right)
or upload their position from Chasemapper or rdzTTGOsonde.
@@ -221,29 +224,28 @@
Overlays
-
+
SkewT Plot
-
+
- Select a Radiosonde from the list and click 'SkewT' to plot. Note that not all radiosonde types are supported.
+ Select a Radiosonde from the list and click 'SkewT' to plot. Note that not all radiosonde types are supported.
-
-
-
+
+
-
+
- For assistance interpreting SkewT plots, try this guide.
+ For assistance interpreting SkewT plots, try this guide.
diff --git a/js/tracker.js b/js/tracker.js
index cc6d763..fc9662c 100644
--- a/js/tracker.js
+++ b/js/tracker.js
@@ -2449,6 +2449,7 @@ function skewTdraw (callsign) {
$('#deleteSkewt').hide();
$("#skewt-plot").empty();
$("#skewtErrors").text("");
+ $("#skewtErrors").hide();
// Loading gif
$("#skewtLoading").show();
@@ -2479,18 +2480,21 @@ function skewTdraw (callsign) {
}
if(data.length < 50){
$("#skewtErrors").text("Insufficient data for Skew-T plot (<50 points).");
+ $("#skewtErrors").show();
return;
}
// Check that we have ascent data
if (burst_idx <= 0){
$("#skewtErrors").text("Insufficient data for Skew-T plot (Only descent data available).");
+ $("#skewtErrors").show();
return;
}
// Check that the first datapoint is at a reasonable altitude.
if (data[0].alt > 15000){
$("#skewtErrors").text("Insufficient data for Skew-T plot (Only data > 15km available)");
+ $("#skewtErrors").show();
return;
}
@@ -2599,7 +2603,7 @@ function skewTdraw (callsign) {
catch(err) {}
} else {
- //alert("Insufficient Data available, or no Temperature/Humidity data available to generate Skew-T plot.");
+ $("#skewtErrors").show();
$("#skewtErrors").text("Insufficient Data available, or no Temperature/Humidity data available to generate Skew-T plot.");
};
}