Hello
trying to design an an analog watch with 2 (or 3) hour hands
all hour hands in 24hour format #DWFHS# but with different time zone reference
ideally one with local time, a 2nd one with GMT time, and a third one with hone time (CET)
any ideas on how to do that ?
thks
Rotations:
GMT:
((#DUH#/24)*360)
CET:
((((#DUH#+2)/24)-(floor((#DUH#+2)/24)))*360)
many thanks
any idea on how to make the same with smooth hours
i tried by adding #DM#x3 to ((((#DUH#+2)/24)-(floor((#DUH#+2)/24)))*360)
but could not make it work
many thank s for the help here
Change each #DUH# into
(#DUH#+(#DUm#/60))
or for more smooth movement:
(#DUH#+((#DUm#+(#DUs#/60))/60))
works like a charm
a million Thks Mellin
still some work to do on design, but got somewhere
Thks again Mellin
just thought about a slight complication here,
trying to get home time zone set. but i cant compute if from the #DUH# tag
there is one hour difference in winter and two hours during Daylight saving time,
any idea on how to show a fixed time zone; cet; or any other, but accurate with or without DST
I don’t know of any way to do it with just tags.
You could bypass it by using a condition:
$#DD#>X&&#DD#<Y?"time with DST":"time without DST"$
where X would be a day in a year when you start using DST.
Y - day in a year, when you stop using DST.