mirror of
https://github.com/jbowdre/lolz.git
synced 2024-11-09 16:12:19 +00:00
rename precipToday to rainToday to be less pretentious
This commit is contained in:
parent
295bf1ef89
commit
d907537839
1 changed files with 7 additions and 7 deletions
14
tempest.html
14
tempest.html
|
@ -99,12 +99,12 @@
|
||||||
let tempLabel = (tempRanges.find(range => res.feels_like < range.upper)).label;
|
let tempLabel = (tempRanges.find(range => res.feels_like < range.upper)).label;
|
||||||
let humidity = `${res.humidity}% humidity`;
|
let humidity = `${res.humidity}% humidity`;
|
||||||
let wind = `${res.wind_gust}mph (${(res.wind_gust*1.609344).toFixed(1)}kph) from ${(res.wind_direction).toLowerCase()}`;
|
let wind = `${res.wind_gust}mph (${(res.wind_gust*1.609344).toFixed(1)}kph) from ${(res.wind_direction).toLowerCase()}`;
|
||||||
let precipLabel = (rainRanges.find(range => res.rain_today < range.upper)).label;
|
let rainLabel = (rainRanges.find(range => res.rain_today < range.upper)).label;
|
||||||
let precipToday;
|
let rainToday;
|
||||||
if (res.rain_today === 0) {
|
if (res.rain_today === 0) {
|
||||||
precipToday = 'no rain today';
|
rainToday = 'no rain today';
|
||||||
} else {
|
} else {
|
||||||
precipToday = `${res.rain_today}" rain today`;
|
rainToday = `${res.rain_today}" rain today`;
|
||||||
}
|
}
|
||||||
let pressureTrend = res.pressure_trend;
|
let pressureTrend = res.pressure_trend;
|
||||||
let pressure = `${res.pressure}inhg and ${pressureTrend}`;
|
let pressure = `${res.pressure}inhg and ${pressureTrend}`;
|
||||||
|
@ -116,12 +116,12 @@
|
||||||
document.getElementById('temp').innerHTML = temp;
|
document.getElementById('temp').innerHTML = temp;
|
||||||
document.getElementById('humidity').innerHTML = humidity;
|
document.getElementById('humidity').innerHTML = humidity;
|
||||||
document.getElementById('wind').innerHTML = wind;
|
document.getElementById('wind').innerHTML = wind;
|
||||||
document.getElementById('precipToday').innerHTML = precipToday;
|
document.getElementById('rainToday').innerHTML = rainToday;
|
||||||
document.getElementById('pressure').innerHTML = pressure;
|
document.getElementById('pressure').innerHTML = pressure;
|
||||||
// update icons
|
// update icons
|
||||||
document.getElementsByClassName('fa-cloud-sun-rain')[0].classList = CLASS_MAP_WX[icon];
|
document.getElementsByClassName('fa-cloud-sun-rain')[0].classList = CLASS_MAP_WX[icon];
|
||||||
document.getElementsByClassName('fa-temperature-half')[0].classList = CLASS_MAP_TEMP[tempLabel];
|
document.getElementsByClassName('fa-temperature-half')[0].classList = CLASS_MAP_TEMP[tempLabel];
|
||||||
document.getElementsByClassName('fa-droplet-slash')[0].classList = CLASS_MAP_RAIN[precipLabel];
|
document.getElementsByClassName('fa-droplet-slash')[0].classList = CLASS_MAP_RAIN[rainLabel];
|
||||||
document.getElementsByClassName('fa-arrow-right-long')[0].classList = CLASS_MAP_PRESS[pressureTrend];
|
document.getElementsByClassName('fa-arrow-right-long')[0].classList = CLASS_MAP_PRESS[pressureTrend];
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
@ -133,7 +133,7 @@
|
||||||
<li>Temperature: <i class='fa-solid fa-temperature-half'></i> <span id="temp"></span></li>
|
<li>Temperature: <i class='fa-solid fa-temperature-half'></i> <span id="temp"></span></li>
|
||||||
<li>Humidity: <span id="humidity"></span></li>
|
<li>Humidity: <span id="humidity"></span></li>
|
||||||
<li>Wind: <span id="wind"></span></li>
|
<li>Wind: <span id="wind"></span></li>
|
||||||
<li>Precipitation: <i class='fa-solid fa-droplet-slash'></i><span id="precipToday"></span></li>
|
<li>Precipitation: <i class='fa-solid fa-droplet-slash'></i><span id="rainToday"></span></li>
|
||||||
<li>Pressure: <i class='fa-solid fa-arrow-right-long'></i><span id="pressure"></span></li>
|
<li>Pressure: <i class='fa-solid fa-arrow-right-long'></i><span id="pressure"></span></li>
|
||||||
<li><i>Last Update: <span id="time"></span></i></li>
|
<li><i>Last Update: <span id="time"></span></i></li>
|
||||||
</body>
|
</body>
|
||||||
|
|
Loading…
Reference in a new issue