2 or 3 Hour Hands with different time zones

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)
1 Like

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))
1 Like

works like a charm
a million Thks Mellin

1 Like

still some work to do on design, but got somewhere

Thks again Mellin

2 Likes

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.