## For the change in daylight, pick a string to indicate whether it is more or
## less than yesterday:
#set $sun_visible_change = $almanac.sun.visible_change
#if $sun_visible_change.raw < 0
#set $change_str = $gettext("less than yesterday")
#else
#set $change_str = $gettext("more than yesterday")
#end if
#end if
This is then used in a table:
<tr>
<td class="label">$gettext("Total daylight")</td>
<td class="data">$almanac.sun.visible.long_form<br/>$sun_visible_change.long_form $change_str</td>
</tr>
Before I try to cook it up myself, has anyone developed a way to show how much longer/shorter today is than the previous day?
--
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 weewx-user+...@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/weewx-user/D3805510-28BD-4F30-8837-52699E65F64B%40suiattle.org.
To view this discussion visit https://groups.google.com/d/msgid/weewx-user/CAPq0zED0%2BY7cA3drzuP8U%2BpzVCfPuh7EGoqR-FGi1VF6AK9ycQ%40mail.gmail.com.
On 17 Jan, 2025, at 09:19, Tom Keffer <tke...@gmail.com> wrote:
To view this discussion visit https://groups.google.com/d/msgid/weewx-user/CAPq0zED0%2BY7cA3drzuP8U%2BpzVCfPuh7EGoqR-FGi1VF6AK9ycQ%40mail.gmail.com.
To view this discussion visit https://groups.google.com/d/msgid/weewx-user/C5465CEE-B94F-4848-ABD7-39E4A509CD03%40gmail.com.
To view this discussion visit https://groups.google.com/d/msgid/weewx-user/CAPq0zEDVW_gAK8XeHSdUp3u3bFwbjMiWiA%2B0V%3D280aBpuxbfbA%40mail.gmail.com.
Is there an ideal or best place to insert this code for generating the data?
The table display portion is obvious to me, but wonder where this is best inserted? Thanks. Dale
## If extended almanac information is available, calculate change in daylight.
#if $almanac.hasExtras
## For the change in daylight, pick a string to indicate whether it is more or
## less than yesterday:
#set $sun_visible_change = $almanac.sun.visible_change
#if $sun_visible_change.raw < 0
#set $change_str = $gettext("less than yesterday")
#else
#set $change_str = $gettext("more than yesterday")
#end if
#end if
--
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 weewx-user+...@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/weewx-user/5d75e5d9-5670-414e-b5dd-406f7048eeaf%40gmail.com.