Das kleine und preiswerte Skigebiet wird von Familien sehr geschätzt. Der Skilift Netschbühl liegt am westlichen Talhang zwischen Eggiwil und Aeschau und erstreckt sich von Zimmerzei (720 m.ü.M) bis Netschbühl (1020 m.ü.M.). Im Skigebiet finden Sie herrliche Landschaft mit Aussicht in die Berner Alpen sowie prächtige Pisten vor. Die Talstation ist auch mit dem öffentlichen Verkehr gut erreichbar.
Wetterprognose
Keine aktuellen Daten! Saisonstart: 20.12.2025
Wintersportbericht
Schneebericht
k.A.
Schneehöhe
k.A.
Schneezustand
keine Meldung
Letzter Schneefall
03.01.2025
Detaillierte Prognose
`;
}
function buildSnowChart(forecasts) {
let locale = "de";
let snowList = document.createElement('ul');
snowList.classList.add('SnowChart');
for (let i = 0; i < forecasts.length; i++) {
let item = document.createElement('li');
item.setAttribute('data-js-tooltip', 'top');
const tooltipValue = getDayName(forecasts[i].date) + ': ' + forecasts[i].snow_sum_day + ' ' + forecasts[i].unit;
item.setAttribute('data-title', tooltipValue);
item.innerHTML = `
${getDayName(forecasts[i].date, locale)}${forecasts[i].snow_sum_day} ${forecasts[i].unit}
`
snowList.appendChild(item);
}
return snowList.outerHTML;
}
function getDayName(dateStr, locale) {
let date = new Date(dateStr);
return date.toLocaleDateString(locale, {weekday: "short"});
}
const hasMountainWeather = true;
const hasValleyWeather = true;
if (hasMountainWeather) {
loadWeatherData("https:\/\/cdn2.myswitzerland.com\/meteo\/transformed\/resort_5619.json", buildDomElement, document.getElementById('srfSnowChart'));
} else if (!hasMountainWeather && hasValleyWeather) {
loadWeatherData("https:\/\/cdn2.myswitzerland.com\/meteo\/transformed\/resort_1248.json", buildDomElement, document.getElementById('srfSnowChart'));
} else {
loadWeatherData("https:\/\/cdn2.myswitzerland.com\/meteo\/transformed\/resort_1248.json", buildDomElement, document.getElementById('srfSnowChart'));
}
const snowCheckboxes = document.getElementsByName('snowType');
snowCheckboxes.forEach(cb => {
cb.addEventListener('change', ev => {
if (ev.target.value === 'valley') {
loadWeatherData("https:\/\/cdn2.myswitzerland.com\/meteo\/transformed\/resort_1248.json", buildDomElement, document.getElementById('srfSnowChart'));
} else {
loadWeatherData("https:\/\/cdn2.myswitzerland.com\/meteo\/transformed\/resort_5619.json", buildDomElement, document.getElementById('srfSnowChart'));
}
});
});
//]]>