mirror of
https://github.com/brianshea2/meshmap.net.git
synced 2025-03-05 21:00:01 -08:00
display additional EnvironmentMetrics (#34)
This commit is contained in:
parent
547e76a6e2
commit
b9cdcc3abc
|
@ -216,7 +216,7 @@
|
||||||
fwVersion, region, modemPreset, hasDefaultCh, onlineLocalNodes,
|
fwVersion, region, modemPreset, hasDefaultCh, onlineLocalNodes,
|
||||||
latitude, longitude, altitude, precision,
|
latitude, longitude, altitude, precision,
|
||||||
batteryLevel, voltage, chUtil, airUtilTx, uptime,
|
batteryLevel, voltage, chUtil, airUtilTx, uptime,
|
||||||
temperature, relativeHumidity, barometricPressure,
|
temperature, relativeHumidity, barometricPressure, lux, windDirection, windSpeed, windGust, radiation, rainfall,
|
||||||
neighbors, seenBy
|
neighbors, seenBy
|
||||||
} = node
|
} = node
|
||||||
const id = `!${Number(nodeNum).toString(16)}`
|
const id = `!${Number(nodeNum).toString(16)}`
|
||||||
|
@ -250,9 +250,19 @@
|
||||||
`${(temperature * 1.8 + 32).toFixed(1)}℉</td></tr>` : ''}
|
`${(temperature * 1.8 + 32).toFixed(1)}℉</td></tr>` : ''}
|
||||||
${relativeHumidity ? `<tr><th>Relative Humidity</th><td>${Math.round(relativeHumidity)}%</td></tr>` : ''}
|
${relativeHumidity ? `<tr><th>Relative Humidity</th><td>${Math.round(relativeHumidity)}%</td></tr>` : ''}
|
||||||
${barometricPressure ? `<tr><th>Barometric Pressure</th><td>${Math.round(barometricPressure)} hPa</td></tr>` : ''}
|
${barometricPressure ? `<tr><th>Barometric Pressure</th><td>${Math.round(barometricPressure)} hPa</td></tr>` : ''}
|
||||||
|
${lux ? `<tr><th>Lux</th><td>${Math.round(lux)} lx</td></tr>` : ''}
|
||||||
|
${windDirection || windSpeed ? `<tr><th>Wind</th><td>` +
|
||||||
|
(windDirection ? `${windDirection}°` : '') +
|
||||||
|
(windDirection && windSpeed ? ' @ ' : '') +
|
||||||
|
(windSpeed ? `${(windSpeed * 3.6).toFixed(1)}` : '') +
|
||||||
|
(windSpeed && windGust ? ` G ${(windGust * 3.6).toFixed(1)}` : '') +
|
||||||
|
(windSpeed ? ' km/h' : '') +
|
||||||
|
`</td></tr>` : ''}
|
||||||
|
${radiation ? `<tr><th>Radiation</th><td>${radiation.toFixed(2)} µR/h</td></tr>` : ''}
|
||||||
|
${rainfall ? `<tr><th>Rainfall</th><td>${rainfall.toFixed(1)} mm/24h</td></tr>` : ''}
|
||||||
${altitude ? `<tr><th>Altitude</th><td>${altitude.toLocaleString()} m above MSL</td></tr>` : ''}
|
${altitude ? `<tr><th>Altitude</th><td>${altitude.toLocaleString()} m above MSL</td></tr>` : ''}
|
||||||
${precision && precisionMargins[precision-1] ? "<tr><th>Location precision</th><td>±" +
|
${precision && precisionMargins[precision-1] ? `<tr><th>Location precision</th><td>` +
|
||||||
`${precisionMargins[precision-1].toLocaleString()} m (orange circle)</td></tr>` : ''}
|
`±${precisionMargins[precision-1].toLocaleString()} m (orange circle)</td></tr>` : ''}
|
||||||
</tbody></table>
|
</tbody></table>
|
||||||
<table><thead>
|
<table><thead>
|
||||||
<tr><th>Last seen</th><th>via</th><th>root topic</th><th>channel</th></tr>
|
<tr><th>Last seen</th><th>via</th><th>root topic</th><th>channel</th></tr>
|
||||||
|
|
Loading…
Reference in a new issue