Weather icons at different times of the day

Hi everyone,
please tell me if it is possible to make different weather icons at different times of the day. For example, for “sunny” there are 3 icons - morning, afternoon, evening

It is also interesting to know if it is possible to make the desired icon display depending on the current temperature.

First, you’ll have to make 3 sets of bitmap fonts (if you want 3 different sets of icons).
You can see how in the guide I made:

In the text field use tag:

[WTHR_COND]

After that use formula (in the opacity field):

([HOUR_0_23]>=2) * ([HOUR_0_23]<=5)?100:0

This is just an example, in this case it will be shown between 2 and 5 o’clock.
Change as you need for every set of icons.


*

4 Likes

Thanks for the help, it worked.

2 Likes

1

2 Likes

In addition:

You can also use (in the opacity field):

to be shown after the noon (12h to 24h):

[IS_AFTNOON]?100:0

to be shown before noon (0h-12h):

[IS_AFTNOON]?0:100

3 Likes

sunrise to sunset:

[WTHR_IS_DAY]==1?100:0

sunset to sunrise:

[WTHR_IS_DAY]==1?0:100

2 Likes