1.8.0
New table column order Table groups and colouring Chance of rain column
This commit is contained in:
@@ -50,8 +50,9 @@ export function buildHourlyRows({ forecast, airQuality, location, vehicleType, v
|
||||
const ccMid = h.cloud_cover_mid ? h.cloud_cover_mid[i] : null;
|
||||
const ccHigh = h.cloud_cover_high ? h.cloud_cover_high[i] : null;
|
||||
const uv = h.uv_index ? (h.uv_index[i] || 0) : 0;
|
||||
const precip = h.precipitation[i] || 0;
|
||||
const snow = h.snowfall[i] || 0;
|
||||
const precip = h.precipitation[i] || 0;
|
||||
const precipProb = h.precipitation_probability ? (h.precipitation_probability[i] ?? 0) : 0;
|
||||
const snow = h.snowfall[i] || 0;
|
||||
const soilT0 = h.soil_temperature_0cm ? h.soil_temperature_0cm[i] : null;
|
||||
const soilT6 = h.soil_temperature_6cm ? h.soil_temperature_6cm[i] : null;
|
||||
const soilM = h.soil_moisture_0_to_1cm ? h.soil_moisture_0_to_1cm[i] : null;
|
||||
@@ -134,7 +135,7 @@ export function buildHourlyRows({ forecast, airQuality, location, vehicleType, v
|
||||
iso, dt, Ta, RH, dew, va, wd, gust, dir, dif, glob,
|
||||
cc, ccLow, ccMid, ccHigh, cloudCat,
|
||||
uv, uvA, uvB,
|
||||
precip, snow,
|
||||
precip, precipProb, snow,
|
||||
soilT0, soilT6, soilM, vehicleT,
|
||||
effectiveRad,
|
||||
elev, Tmrt, utci, utciAdj, eh, compass,
|
||||
|
||||
Reference in New Issue
Block a user