From 0a0d7d4f881e6c65d0f9ec3a84cb64154d6c49bf Mon Sep 17 00:00:00 2001 From: John Bowdre Date: Sat, 10 Feb 2024 09:08:13 -0600 Subject: [PATCH] make rain display more concise --- tempest.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tempest.html b/tempest.html index dd0543e..7647a2b 100644 --- a/tempest.html +++ b/tempest.html @@ -38,7 +38,7 @@ // weather code inspired by https://kris.omg.lol // fetch from API proxy - fetch('https://paste.jbowdre.lol/tempest.json/raw') + fetch('https://paste.jbowdre.lol/testest.json/raw') .then(res => res.json()) .then(function(res){ @@ -60,7 +60,7 @@ humidity = `${res.relative_humidity}% humidity`; wind = `${res.wind_gust}mph (${(res.wind_gust*1.609344).toFixed(1)}kph) from ${(res.wind_direction_cardinal).toLowerCase()}`; precipLabel = (rainRanges.find(range => res.precip_accum_local_day < range.upper)).label; - precipToday = `${res.precip_accum_local_day}" of rain today`; + precipToday = `${res.precip_accum_local_day}" rain today`; pressureTrend = res.pressure_trend; pressure = `${res.station_pressure}inhg and ${pressureTrend}`; icon = res.icon;