hello,
ok, but why I have a difference between the files en version 4.9.1 and
4.10.2 ?
thanks
Patrick
Le 07/10/2023 à 23:05, Tom Keffer a écrit :
None of the changes between v4.9 and v4.10 affect anything to do with
altitudes or, for that matter, any of the "Current Conditions" values.
There is something wrong with your skin if it is displaying "1031.6
mbar" for altitude. Did you change the skin? Altitude is not normally
displayed under "Current Conditions."
I'm not sure what you mean by, "change the displayed values, for
example "soilTemp1". Did you really want to change the value? Not sure
why you would want to do that. Or the units?
On Sat, Oct 7, 2023 at 8:04 AM [email protected] <[email protected]>
wrote:
Hello, I am now on version 4.10.2,
How can I display the "altimeter" value in meters and change the
displayed values, for example "soilTemp1"?I knew how to do it in
version 4.9 but I can't find it here.thank youPatrick
--
You received this message because you are subscribed to the Google
Groups "weewx-user" group.
To unsubscribe from this group and stop receiving emails from it,
send an email to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/weewx-user/dbfe605f-e2d0-4b53-9ff1-9602c0a66fb5n%40googlegroups.com
<https://groups.google.com/d/msgid/weewx-user/dbfe605f-e2d0-4b53-9ff1-9602c0a66fb5n%40googlegroups.com?utm_medium=email&utm_source=footer>.
--
You received this message because you are subscribed to the Google
Groups "weewx-user" group.
To unsubscribe from this group and stop receiving emails from it, send
an email to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/weewx-user/CAPq0zEDAZunqV%2B_%2BZ6MGy6%3DCHcDQWHPSshh-ZuiogXDECwEUzg%40mail.gmail.com
<https://groups.google.com/d/msgid/weewx-user/CAPq0zEDAZunqV%2B_%2BZ6MGy6%3DCHcDQWHPSshh-ZuiogXDECwEUzg%40mail.gmail.com?utm_medium=email&utm_source=footer>.
--
You received this message because you are subscribed to the Google Groups
"weewx-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/weewx-user/90976536-96bf-4d3e-87c8-e5dfdd2016d3%40gmail.com.
## current module for weewx skins
## Copyright Tom Keffer, Matthew Wall
## See LICENSE.txt for your rights
#errorCatcher Echo
#encoding UTF-8
<div id='current_widget' class="widget">
<div class="widget_title">
$gettext("Current Conditions")
<a class="widget_control"
onclick="toggle_widget('current')">♦</a>
</div>
<div class="widget_contents">
<table>
<tbody>
#set $observations = $to_list($DisplayOptions.get('observations_current',
['outTemp', 'barometer']))
#for $x in $observations
#if $getVar('year.%s.has_data' % $x)
#if $x == 'barometer'
<tr>
<td class="label">$obs.label.pressure</td>
<td class="data">$current.pressure ($trend.pressure.formatted)</td>
</tr>
#elif $x == 'windSpeed'
<tr>
<td class="label">$obs.label.wind</td>
<td class="data">$current.windSpeed $current.windDir.ordinal_compass
($current.windDir)</td>
</tr>
#elif $x == 'rain'
<tr>
<td class="label">$gettext("Rain Today")</td>
<td class="data">$day.rain.sum</td>
</tr>
#else
<tr>
<td class="label">$obs.label[$x]</td>
<td class="data">$getVar('current.' + $x)</td>
</tr>
#end if
#end if
#end for
</tbody>
</table>
</div>
</div>
## current module for weewx skins
## Copyright Tom Keffer, Matthew Wall
## See LICENSE.txt for your rights
#errorCatcher Echo
#encoding UTF-8
<div id='current_widget' class="widget">
<div class="widget_title">
Current Conditions
<a class="widget_control"
onclick="toggle_widget('current')">♦</a>
</div>
<div class="widget_contents">
<table>
<tbody>
<tr>
<td class="label">$obs.label.outTemp</td>
<td class="data">$current.outTemp</td>
</tr>
<tr>
<td class="label">$obs.label.heatindex</td>
<td class="data">$current.heatindex</td>
</tr>
<tr>
<td class="label">$obs.label.windchill</td>
<td class="data">$current.windchill</td>
</tr>
<tr>
<td class="label">$obs.label.dewpoint</td>
<td class="data">$current.dewpoint</td>
</tr>
<tr>
<td class="label">$obs.label.outHumidity</td>
<td class="data">$current.outHumidity</td>
</tr>
<tr>
<td class="label">$obs.label.pressure</td>
<td class="data">$current.pressure ($trend.pressure.formatted)</td>
</tr>
<tr>
<td class="label">$obs.label.wind</td>
<td class="data">$current.windSpeed $current.windDir.ordinal_compass
($current.windDir)</td>
</tr>
<tr>
<td class="label">$obs.label.rainRate</td>
<td class="data">$current.rainRate</td>
</tr>
<tr>
<td class="label">$obs.label.rain_today</td>
<td class="data">$day.rain.sum</td>
</tr>
#if $day.UV.has_data
<tr>
<td class="label">$obs.label.UV</td>
<td class="data">$current.UV</td>
</tr>
#end if
#if $day.ET.has_data and $day.ET.sum.raw is not None and $day.ET.sum.raw > 0.0
<tr>
<td class="label">$obs.label.ET</td>
<td class="data">$current.ET</td>
</tr>
#end if
#if $day.radiation.has_data
<tr>
<td class="label">$obs.label.radiation</td>
<td class="data">$current.radiation</td>
</tr>
#end if
#if $day.inTemp.has_data
<tr>
<td class="label">$obs.label.inTemp</td>
<td class="data">$current.inTemp</td>
</tr>
#end if
#if $day.inHumidity.has_data
<tr>
<td class="label">$obs.label.inHumidity</td>
<td class="data">$current.inHumidity</td>
</tr>
#end if
#if $day.extraTemp1.has_data
<tr>
<td class="label">$obs.label.extraTemp1</td>
<td class="data">$current.extraTemp1</td>
</tr>
#end if
#if $day.extraTemp2.has_data
<tr>
<td class="label">$obs.label.extraTemp2</td>
<td class="data">$current.extraTemp2</td>
</tr>
#end if
#if $day.extraTemp3.has_data
<tr>
<td class="label">$obs.label.extraTemp3</td>
<td class="data">$current.extraTemp3</td>
</tr>
#end if
<tr>
<td class="label">$obs.label.soilTemp1</td>
<td class="data">$current.soilTemp1</td>
</tr>
</tbody>
</table>
</div>
</div>