Or better still (and more accurate/complete), the kode for the text field:
$if(
gv(info)=wind, if(
(wi(wdir) >= 349 & wi(wdir) <= 10), N -wi(wdir),
(wi(wdir) >= 11 & wi(wdir) <= 32), NNE -wi(wdir),
(wi(wdir) >= 33 & wi(wdir) <= 55), NE -wi(wdir),
(wi(wdir) >= 56 & wi(wdir) <= 100), ENE -wi(wdir),
(wi(wdir) >= 101 & wi(wdir) <= 122), E -wi(wdir),
(wi(wdir) >= 123 & wi(wdir) <= 145), SE -wi(wdir),
(wi(wdir) >= 146 & wi(wdir) <= 168), SSE -wi(wdir),
(wi(wdir) >= 167 & wi(wdir) <= 191), S -wi(wdir),
(wi(wdir) >= 192 & wi(wdir) <= 213), SSW -wi(wdir),
(wi(wdir) >= 214 & wi(wdir) <= 236), SW -wi(wdir),
(wi(wdir) >= 237 & wi(wdir) <= 258), WSW -wi(wdir),
(wi(wdir) >= 259 & wi(wdir) <= 281), W -wi(wdir),
(wi(wdir) >= 282 & wi(wdir) <= 303), WNW -wi(wdir),
(wi(wdir) >= 304 & wi(wdir) <= 326), NW -wi(wdir),
(wi(wdir) >= 327 & wi(wdir) <= 348), NNW -wi(wdir),
Unknown -wi(wdir)),
gv(info)=pressure, Pressure,
gv(info)=humidity, Humidity,
gv(info)=rain, wf(rain, 0) + "mm",
gv(info)=sunrise,Sunrise,
gv(info)=sunset,Sunset,
gv(info)=feelslike,Feels Like,
gv(info)=now,wi(cond),
gv(info)=today,wf(cond, 0)
)$
And change the icon for wind from Arrow-long-up to Arrow-long-down and the the kode to determine rotation for the arrow:
$wi(wdir)$
Cheers