Increase/decrease in length of the day

92 views
Skip to first unread message

Dan Hinckley

unread,
Jan 17, 2025, 1:24:16 PMJan 17
to weewx...@googlegroups.com
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?

michael.k...@gmx.at

unread,
Jan 17, 2025, 2:09:32 PMJan 17
to weewx-user
I don't know if you can obtain the value directly, but you should be able to do it based on almanac
https://weewx.com/docs/5.1/custom/cheetah-generator/?h=almanac#almanac
when you subtract today's value from yesterday's, you have the delta.

Tom Keffer

unread,
Jan 17, 2025, 2:19:44 PMJan 17
to weewx...@googlegroups.com
The standard "Seasons" skin already includes that. It's implemented using the following, which you can put in your skin. You need pyephem for it to work.

  ## 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>


On Fri, Jan 17, 2025 at 5:24 AM Dan Hinckley <d...@suiattle.org> wrote:
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.

weather list

unread,
Jan 17, 2025, 2:45:43 PMJan 17
to weewx...@googlegroups.com

weather list

unread,
Jan 17, 2025, 6:53:12 PMJan 17
to weewx...@googlegroups.com
Actually, I'd like to say "Today is xx minutes longer/shorter than yesterday."

Is $sun_visible_change.raw expressed in minutes or seconds?

On 17 Jan, 2025, at 09:19, Tom Keffer <tke...@gmail.com> wrote:

Tom Keffer

unread,
Jan 17, 2025, 7:21:05 PMJan 17
to weewx...@googlegroups.com
Almost everything in WeeWX is in seconds. The only exception that I can think of right now is the archive interval stored in the database, which is in minutes.

-tk


weather list

unread,
Jan 17, 2025, 8:14:24 PMJan 17
to weewx...@googlegroups.com
Your example did what I need, I just hadn't put it in properly; now working. Thank you.

Reply all
Reply to author
Forward
0 new messages