Page 1 of 1
worldextremes php script
Posted: Sat Nov 11, 2023 6:07 pm
by alexvanuxem
Hi all,
this is a php script about worldextremes.
it collects data all over the world from metar data, and shows 24 hour max, min values.
I found it on the CumulusMX forum.
Check it out, and enjoy the weather...
in the php set your country,
maybe a new plugin?
grtz
alex
Re: worldextremes php script
Posted: Sun Nov 12, 2023 11:10 am
by Jolumarali
Bonjour Alex
J'ai créé [/url]une page plugin , merci pour le partage
https://meteo-lignerolles.fr/custom/cus ... %20Weather
Aurais-tu une idée pour passer les vitesses des rafales en km/h.
Bon dimanche
et encore merci
José Luis
Re: worldextremes php script
Posted: Sun Nov 12, 2023 5:55 pm
by alexvanuxem
in line 305 change mph to km/h
thx
Alex
Re: worldextremes php script
Posted: Sun Nov 12, 2023 6:22 pm
by alexvanuxem
Re: worldextremes php script
Posted: Sun Nov 12, 2023 6:25 pm
by Jolumarali
Bonsoir Alex
Ça change bien en km/h, mais pas la conversion de mph en km/h
il me semble que la conversion et là, mais aucune idée
Bonne soirée et merci
326 :function KMHtoMPH($fixgust) {
global $useunits, $uomGustE, $uomGustM;
if ($useunits == 'I') { // convert km/h to mph
return number_format(($fixgust / 1.60934), 1, '.', '') . $uomGustE;
} else { // leave in mph
return number_format(($fixgust / 1.60934), 1, '.', '') . $uomGustM;
}
}
Re: worldextremes php script
Posted: Sun Nov 12, 2023 7:18 pm
by alexvanuxem
I got the same readings as you but in km/h.
highest gust 87 km/h
i will forward this issue on the cumulusmx forum page ....
ps: it's highly experimental....
if you click on the station you can see the raw data, for example:
https://www.ogimet.com/cgi-bin/gsynres? ... 0&ndays=30
maybe try this....
i changed it to france and km/h.
let me know.
Re: worldextremes php script
Posted: Mon Nov 13, 2023 8:01 am
by Jolumarali
Bonjour Alex
Merci pour le temps passé.
En faisant quelques essais.
modification ligne 305 = $uomGustM = ' km/h'; // kilometres per hour
Ligne 331 = return $fixgust * 1.0 . $uomGustM;
Résultat OK
Merci et bonne journée
José Luis
Re: worldextremes php script
Posted: Mon Nov 13, 2023 4:43 pm
by alexvanuxem
thx!