Trying to figure this out. Grrrrr!

Yeah For sure . Half Liter tastes Rubbish . They tried to prosecute a market trader for selling Bananas " A Pound a Pound " . ( some time ago ) :rofl:

1 Like

Wind - meters per second (mps) please :laughing:

2 Likes

Yeah I actually go along with that . Being the SI unit for wind speed . Samsung use Kmh .

1 Like

British units: :sunglasses:

wind speed always in mph:
$#UNITSYS#=IMPERIAL?(round(#WND#)):(round(#WND#*2.23694))$ mph

Temperature always in Celcius:
$#UNITSYS#=IMPERIAL?(toFixed((#WCT#-32)*5/9,1)):#WCT#$ C

Pressure in psi:
(round(#ATM#* 0.0145037738)) psi

Steps in miles:
((round((#ZSC#*2.65)/52.8))/100)

Watch face:

3 Likes

Nice Work Tom.

2 Likes

I always do this but leave temperature in user unit.
I do now generally tend to pad the temperature to 3 places positive and 2 negative though:
$#WCT#<0?-:$$#WCT#<0?(pad(abs(#WCT#),2)):$$#WCT#>-1?(pad(#WCT#,3)):$°

Also, nice face.

2 Likes

Ok, What one is the right one? I have this one that I’ve been using (since I started making faces) for steps to mile ((round((#ZSC#*0.0476)))/100) and the one you put here is reading different numbers. Which one is more accruate? Because they both display different numbers

2 Likes

As I see it the two formulas are not that different . It is all about the interpretation of step size . I am quite tall ( 6’1 1/2 ") so go for the Higher . Just different ways of doing the same maths . If you divide 2.65 by 52.8 you get 0.0501 . Not so far from 0.04756 . I would say that was a big step . But could cover running may be . I use ((round(#ZSC#*0.0476))/100) . Which is actually smaller than Toms .

1 Like

ok, so it just depends on how far apart your walking is then. Cause I’m at 5`7" so my steps would be smaller.

2 Likes

There are sites on line with calculators . You could walk a Mile / KM and calibrate your own . At the end of the day it is more about calculating if you did more or less than yesterday .
.

.
.
So for you I would go ((round(#ZSC#*0.044))/100) for miles ((round(#ZSC#*0.0717))/100) for KM .

2 Likes

This is why I never do distance on faces. Folks generally know roughly their ratio. For me it is 2080 steps per mile ± 70

2 Likes