Problème de remontée des infos sur le Vent

Fonctionne aussi sans $cmdJSONID:

// Commande JSON où les données seront récupérées
$cmdJSON = '#[Météo][Meteo France Jpty][Moment de la journée - Json]#' ;

// Récupération des données
$windDirection = meteofrance::getJsonInfo($cmdJSON,'wind > direction');
$windSpeed = meteofrance::getJsonInfo($cmdJSON,'wind > speed');
$windGust = meteofrance::getJsonInfo($cmdJSON,'wind > gust');
$date = meteofrance::getJsonInfo($cmdJSON,'dt');

// Envoi donnée dans les commandes du virtuel
cmd::byString('#[Météo][Virtuel extraction data MF][Moment WindDirection]#')->event($windDirection);
cmd::byString('#[Météo][Virtuel extraction data MF][Moment WindSpeed]#')->event(round($windSpeed * 3.6));
cmd::byString('#[Météo][Virtuel extraction data MF][Moment WindGust]#')->event(round($windGust * 3.6));
cmd::byString('#[Météo][Virtuel extraction data MF][Moment Date]#')->event(date('d-m-Y H:i',$date));

// Inscription dans log scenario
$scenario->setLog('Date: ' .date('d-m-Y H:i',$date) .' Direction du vent: '.$windDirection .' Vitesse: ' .round($windSpeed *3.6) .'km/h Rafales: ' .round($windGust *3.6) .'km/h');

image