WXSIM 3in1 graph temperature symbol

In graph (tooltip and temp axis) instead of temperature symbol is ? mark.
In which file can fix it?
https://estmeteo.ee/wxsim_wxall/sivu2.php

1 Like

Welcome to the forum.

Invalid temperature symbols are often the result of an incompatible character set. Those scripts are old and are set to

http-equiv=“Content-Type” content=“text/html; charset=ISO-8859-1”

Most modern hosting servers prefer / default to utf-8

As far as I can see with a standard Chrome-browser there are no problems.

Regards,
Wim

@ALL

I checked the original and current downloads, there seems to be a mix of UTF-8 and “windows-.western-iso-latin” character-sets to be used.

Too many authors trying to salvage the old scripts.

Will check shortly and convert all scripts to UTF-8

Wim

fixed it in wxall.settings.php .
Changed °C to &degC.
$uoms = array(‘°C’,‘mm’,‘m/s’,‘hPa’,‘cm’,‘km’); / $uoms = array(‘&degC’,‘mm’,‘m/s’,‘hPa’,‘cm’,‘km’);