Merge branch 'more_aprs_info'

This commit is contained in:
Marat Fayzullin 2022-12-05 23:19:24 -05:00
commit c04e8584ef

View File

@ -453,7 +453,8 @@ $(function(){
weatherString += makeListItem('Pressure', marker.weather.barometricpressure.toFixed(1) + ' mbar');
}
if (marker.weather.wind && (marker.weather.wind.speed>0)) {
if (marker.weather.wind) {
if (marker.weather.wind.speed && (marker.weather.wind.speed>0)) {
weatherString += makeListItem('Wind',
degToCompass(marker.weather.wind.direction) + ' ' +
marker.weather.wind.speed.toFixed(1) + ' km/h '
@ -463,6 +464,7 @@ $(function(){
if (marker.weather.wind.gust && (marker.weather.wind.gust>0)) {
weatherString += makeListItem('Gusts', marker.weather.wind.gust.toFixed(1) + ' km/h');
}
}
if (marker.weather.rain && (marker.weather.rain.day>0)) {
weatherString += makeListItem('Rain',