Weather forecast tags

Hi all.
Now trying to make forecast temperature with + sign. But as I understand tags TEM, COND_DAY, COND_NIGHT, TEM_LOW and TEM_HIGH are in string format, not numbers.
Am I right about the format of these tags and is it possible to make it look in the way I want?
By the way in WFS all tags are shown ok, but on watch it shows total crap
Watch:
31406363

WFS:
31405454

Hello,
Could you please share a sample project with the tags you used.

1 Like

if i had to guess, it looks to me like a ttf issue. here’s what i would check
is the text box big enough, or the font size too big?
try another font, perhaps a default system font or a wfs font and see if it works better on the watch

(((forecastHours(2,“TEM”))>0) ? “+” : “”)(forecastHours(2,“TEM”))°(([WTHR_TEM_UNIT] == 1)? “C”: “F”)

Here is the code for 2 hours forecast, you can check it

Fonts do not matter at all

Please create a support ticket with a sample wfs file where the issue occurs and a description.

matheus have you solved it?

This may be a dumb question but: what watch model you are using?
As far as I know new weather tags at the moment work only on Samsung 7 / Ultra.

1 Like

Add Google Pixel watch 3 to the list . :grinning:

1 Like

I tested it on Watch 7 and on Ultra.

1 Like

I’ve done basically the same thing you did, works on my watch (ultra).

1

I’ve used:

(forecastHours(1,“TEM”))°

1b

1 Like

2

For the next day:

(forecastDays(1,“TEM_LOW”))° / (forecastDays(1,“TEM_HIGH”))°

(forecastDays(1,“CHANCE_PPTN”))%

2b

2c

Compare it with what you did. If it works on my watch it has to work on yours as well.

1 Like

Please read carefully, what I wrote. Try to make + sign with this tag.

1 Like

Hi @masterboyhr i am unable to use degree after temp. Also i am unable to use weather icon. Can you please teach me with pic what to do to use degree and weather pic. Thanks.

Degree is super easy. Just add whatever you want after the tag in the text field.

[WTHR_TEM]°C

This is formula/tag
[WTHR_TEM]

and add
° or °C or °F or whatever you want
after the tag.

1

3 Likes

I’ve just made a guide for changing weather images:

3 Likes

Many thanks @masterboyhr

2 Likes

Good morning, I have learned a lot here, but I am still a beginner, can you provide the formula how to get the future days so that I can understand I tried in several ways but I still haven’t succeeded. Thanks

1 Like

Excuse me jumping in . I am not sure of @masterboyhr s Time zone .
This gives the forecast for Day 6 you have Condition Forecast for 1 to 6

(forecastDays(6,"COND_DAY"))

You will see the list down at the bottom of the Tags List .

1 Like

As Russell says.

For future weather images use
forecastDays(1,"COND_DAY")

with bitmap fonts


*
*

or if you want text weather condition “SUNNY”…
use (with Truetype font)
(forecastDays(1, "COND_DAY_NAME"))


*
*

2 Likes