windSpeedProbabilities = {
const data = await kmzToGeoJSON(windSpeedProbabilitiesArchive);
const keys = Object.keys(data);
const knots34 = data[keys.find(key => key.endsWith('wsp34knt120hr_5km'))];
knots34.features = knots34.features.filter(({ properties }) => probabilities.includes(properties.name));
return knots34;
}