This commit is contained in:
Tobias Dammers 2021-10-13 17:16:16 +02:00
parent c9b25e4b27
commit 63b83ab0bb

View File

@ -403,12 +403,12 @@ var setAloftWinds = func (aloftPoint) {
node.getChild('wind-speed-kt').setValue(aloftPoint.layers[i].spd); node.getChild('wind-speed-kt').setValue(aloftPoint.layers[i].spd);
# node.getChild('temperature-degc').setValue(aloftPoint.layers[i].temp); # node.getChild('temperature-degc').setValue(aloftPoint.layers[i].temp);
logprint( logprint(
1, 2,
sprintf("ALOFT #%i %5i': %03i/%i", sprintf("ALOFT AFTER %5i': %03i/%i (slp = %02.2f)",
i,
node.getChild('elevation-ft').getValue(), node.getChild('elevation-ft').getValue(),
node.getChild('wind-from-heading-deg').getValue(), node.getChild('wind-from-heading-deg').getValue(),
node.getChild('wind-speed-kt').getValue())); node.getChild('wind-speed-kt').getValue(),
node.getChild('pressure-sea-level-inhg').getValue()));
} }
}; };