- Heute
- 48 Stunden
- 9 Tage
- Radar
Prognose für {time} Uhr
Zu Favoriten
hinzufügen +
Entfernen −
{temp}° {info}
Lade Ortscam..
Stündliche Prognose
Tägliche Prognose
{periodText}
{temp}°
{rain}%
'); $('.weather-widget .lightsliderContainer').remove(); $.each(locations, function() { var itemHtml = $itemTpl[0].outerHTML; var $item = $(itemHtml .replace(/{id}/g, this.location.id) .replace(/{name}/g, this.location.name) .replace(/{province}/g, this.location.province) .replace(/{provinceUrl}/g, this.location.provinceUrl) .replace(/{locationUrl}/g, this.location.url) .replace(/{time}/g, this.day.time) .replace(/{minTemp}/g, this.day.minTemp) .replace(/{maxTemp}/g, this.day.maxTemp) .replace(/{temp}/g, this.day.temp) .replace(/{wind}/g, this.day.wind) .replace(/{wdir}/g, this.day.wdir) .replace(/{cloud}/g, this.day.cloud) .replace(/{rain}/g, this.day.rain) .replace(/{icon}/g, ('src="' + this.day.iconBig + '"') .replace('/clouds/', '/clouds-v2/')) .replace(/{info}/g, this.day.info) .replace(/{additionalClasses}/g, this.day.additionalClasses) ); let indexElement; const $hourlyContainer = $item.find('.weather-info-hourly'); if (this.hourly.length > 0) { $hourlyContainer.addClass('loaded'); } $(this.hourly).each(function(index) { var hourData = this; var hourHtml = $itemDataTpl[0].outerHTML; Object.keys(hourData).forEach(function(field) { hourHtml = hourHtml.replace( new RegExp('{' + field + '}', 'g'), field === 'icon' ? 'src="' + hourData[field].replace('/clouds/', '/clouds-v2/') + '"' : field === 'periodText' ? hourData[field] === 'Jetzt' ? 'Jetzt' : hourData[field].substring(0,2) + ' h' : hourData[field] ); }); if (this.periodText == '00:00') { const textWrap = document.createElement("div"); textWrap.classList.add("daySeparator"); const text = document.createElement("span"); if(indexElement == undefined) { text.innerHTML = "Morgen"; } else if(indexElement !== index){ text.innerHTML = "Übermorgen"; } textWrap.appendChild(text); let el = $(hourHtml).appendTo($hourlyContainer); el.before(textWrap); indexElement = index; } else { $(hourHtml).appendTo($hourlyContainer); } }); const $dailyContainer = $item.find('.weather-info-daily'); if (this.daily.length > 0) { $dailyContainer.addClass('loaded'); } $(this.daily).each(function(index) { var dayData = this; var dayHtml = $itemDataTpl[0].outerHTML; Object.keys(dayData).forEach(function(field) { dayHtml = dayHtml.replace( new RegExp('{' + field + '}', 'g'), field === 'icon' ? 'src="' + dayData[field].replace('/clouds/', '/clouds-v2/') + '"' : field === 'periodText' ? dayData[field] === 'Heute' ? 'Heute' : dayData['periodDayText'] + ', ' + dayData[field].substring(0, 2) + '.' : dayData[field] ); }); $(dayHtml).appendTo($dailyContainer); }); $item .data('location-info', this) .appendTo($items); if (this.location.hasCam) { attachCamLoader($item, this.location); } else { attachMapLocation($item, this.location); } }); let locationSelectEvent = null; $items.prependTo('.weather-widget') .find('.scrolling-wrapper') .on('touchmove', function(e) { e.stopImmediatePropagation(); this.piTracks = this.piTracks ?? []; const cPi = Math.floor($(this)[0].scrollLeft / 50); if (this.piTracks.indexOf(cPi) < 0) { if(typeof iom === "object" && typeof oewa_data === "object"){ iom.c(oewa_data, 1); } if (typeof oewaCall2023 === "function") { oewaCall2023(); } this.piTracks.push(cPi); } }) .end() .lightSlider({ item: 1, slideMove: 1, loop: false, auto: false, gallery: false, onBeforeSlide: function(el, i) { if(typeof iom === "object" && typeof oewa_data === "object"){ iom.c(oewa_data, 1); } if (typeof oewaCall2023 === "function") { oewaCall2023(); } }, onAfterSlide: function(el, i) { if (locationSelectEvent) { clearTimeout(locationSelectEvent); locationSelectEvent = null; } locationSelectEvent = setTimeout(function() { OE24.events.raise('locationSelected', $(el).find('.lslide.active').data('location-info')); locationSelectEvent = null; }, 300); } }); $('.weather-widget .weather-widget-wrapper .location-add-button').click(function(e) { e.preventDefault(); $currentID = e.currentTarget.getAttribute('data-id'); const $add = $('.weather-widget .weather-widget-wrapper[data-id="'+ $currentID +'"] .location-add-button'); const $del = $('.weather-widget .weather-widget-wrapper[data-id="'+ $currentID +'"] .location-remove-button'); if ($add.hasClass('progress')) return; $add.addClass('progress'); $.put('/xapi/user/addLocation/'+ $currentID, function() { $add.addClass('d-none'); $del.removeClass('d-none'); OE24.events.raise('userLocationsUpdated', $currentID); }).always(function() { $add.removeClass('progress'); }); }); $('.weather-widget .weather-widget-wrapper .location-remove-button').click(function(e) { e.preventDefault(); $currentID = e.currentTarget.getAttribute('data-id'); const $add = $('.weather-widget .weather-widget-wrapper[data-id="'+ $currentID +'"] .location-add-button'); const $del = $('.weather-widget .weather-widget-wrapper[data-id="'+ $currentID +'"] .location-remove-button'); if ($del.hasClass('progress')) return; $del.addClass('progress'); $.delete('/xapi/user/removeLocation/'+$currentID, function() { $add.removeClass('d-none'); $del.addClass('d-none'); OE24.events.raise('userLocationsUpdated', $currentID); }).always(function() { $del.removeClass('progress'); }); }); } function attachCamLoader($item, location) { $item.addClass('hasCam'); return; const $camBox = $item.find('.col3'); setTimeout(function() { $item.inViewport(function() { $.get('//appcdn.wetter.at/xapi/location/' + location.id + '/renderBox/camPreview?fallbackWithinRadius=10', function(loadedBox) { $camBox.html(loadedBox); OE24.events.raise('lazyLoadedImagesUpdate'); const $camBoxElements = $camBox.find('> *'); $camBox.find('.playCam').on('click', function(e) { if ($item.hasClass('camPlaying')) { return; } $item.addClass('camPlaying'); $camBoxElements .detach() .appendTo($item.find('.playerWrapper')); }); $item.find('.playerWrapper .control').on('click', function() { $camBoxElements .detach() .appendTo($camBox); $camBox.find('.playCam').click(); $item.removeClass('camPlaying'); }); OE24.events.on('locationSelected', function(info) { if ($item.hasClass('camPlaying')) { $item.find('.playerWrapper .control').click(); } }); }); }, false); }, 300); } function attachMapLocation($item, location) { return; const $mapBox = $item.find('.col3'); setTimeout(function() { $item.inViewport(function() { $.get('//appcdn.wetter.at/xapi/location/' + location.id + '/renderBox/geoLocationMap', function(loadedBox) { $mapBox.html(loadedBox); }); }, false); }, 300); }});
Heute, 12. Oktober
13° max 6° min
Niederschlag 0%
Bewölkung 26%
Sonne 11:04 Stunden
Wind SO 35 km/h
Morgens
12°
sonnig
Bewölkung
9%
Niederschlag
0 mm
Wind
35 km/h
ONO
Mittags
13°
sonnig
Bewölkung
22%
Niederschlag
0 mm
Wind
35 km/h
SO
Abends
13°
leicht bewölkt
Bewölkung
53%
Niederschlag
0 mm
Wind
13 km/h
SSO
Nachts
11°
wolkig
Bewölkung
60%
Niederschlag
0 mm
Wind
12 km/h
SSO
Sonntag, 13. Oktober
19° max 9° min
Niederschlag 0%
Bewölkung 82%
Sonne 11:00 Stunden
Wind W 21 km/h
Morgens
9°
Sprühregen
Bewölkung
61%
Niederschlag
0.02 mm
Wind
3 km/h
SSO
Mittags
14°
bedeckt
Bewölkung
99%
Niederschlag
0 mm
Wind
5 km/h
SSW
Abends
14°
wolkig
Bewölkung
64%
Niederschlag
0 mm
Wind
18 km/h
W
Nachts
11°
leicht bewölkt
Bewölkung
33%
Niederschlag
0 mm
Wind
13 km/h
WNW
Montag, 14. Oktober
14° max 8° min
Niederschlag 4%
Bewölkung 53%
Sonne 10:57 Stunden
Wind SO 14 km/h
Morgens
8°
leicht bewölkt
Bewölkung
23%
Niederschlag
0 mm
Wind
6 km/h
WNW
Mittags
13°
heiter
Bewölkung
24%
Niederschlag
0 mm
Wind
6 km/h
SO
Abends
12°
Sprühregen
Bewölkung
100%
Niederschlag
0.05 mm
Wind
6 km/h
SO
Nachts
10°
Sprühregen
Bewölkung
28%
Niederschlag
0.06 mm
Wind
11 km/h
SW
Dienstag, 15. Oktober
16° max 12° min
Niederschlag 3%
Bewölkung 73%
Sonne 10:53 Stunden
Wind O 14 km/h
Morgens
13°
wolkig
Bewölkung
61%
Niederschlag
0.01 mm
Wind
14 km/h
NW
Mittags
16°
Sprühregen
Bewölkung
98%
Niederschlag
0.03 mm
Wind
14 km/h
NNW
Abends
12°
wolkig
Bewölkung
55%
Niederschlag
0 mm
Wind
6 km/h
O
Nachts
9°
stark bewölkt
Bewölkung
94%
Niederschlag
0 mm
Wind
9 km/h
O
Mittwoch, 16. Oktober
15° max 9° min
Niederschlag 0%
Bewölkung 80%
Sonne 10:50 Stunden
Wind SO 29 km/h
Morgens
9°
bedeckt
Bewölkung
100%
Niederschlag
0 mm
Wind
13 km/h
OSO
Mittags
15°
wolkig
Bewölkung
62%
Niederschlag
0 mm
Wind
29 km/h
SO
Abends
12°
stark bewölkt
Bewölkung
76%
Niederschlag
0 mm
Wind
26 km/h
SO
Nachts
11°
stark bewölkt
Bewölkung
84%
Niederschlag
0 mm
Wind
27 km/h
SO
Donnerstag, 17. Oktober
16° max 9° min
Niederschlag 0%
Bewölkung 33%
Sonne 10:46 Stunden
Wind SO 27 km/h
Morgens
9°
leicht bewölkt
Bewölkung
24%
Niederschlag
0 mm
Wind
25 km/h
SO
Mittags
16°
wolkig
Bewölkung
60%
Niederschlag
0 mm
Wind
27 km/h
SO
Abends
14°
sonnig
Bewölkung
6%
Niederschlag
0 mm
Wind
22 km/h
SO
Nachts
12°
wolkig
Bewölkung
42%
Niederschlag
0 mm
Wind
21 km/h
SO
Freitag, 18. Oktober
19° max 12° min
Niederschlag 0%
Bewölkung 58%
Sonne 10:43 Stunden
Wind SO 17 km/h
Morgens
12°
bedeckt
Bewölkung
97%
Niederschlag
0 mm
Wind
16 km/h
SO
Mittags
19°
wolkig
Bewölkung
55%
Niederschlag
0 mm
Wind
16 km/h
SO
Abends
15°
sonnig
Bewölkung
3%
Niederschlag
0 mm
Wind
17 km/h
SO
Nachts
13°
leicht bewölkt
Bewölkung
24%
Niederschlag
0 mm
Wind
15 km/h
SO
Samstag, 19. Oktober
17° max 12° min
Niederschlag 0%
Bewölkung 98%
Sonne 10:40 Stunden
Wind SO 10 km/h
Morgens
12°
bedeckt
Bewölkung
100%
Niederschlag
0 mm
Wind
9 km/h
SSO
Mittags
17°
bedeckt
Bewölkung
99%
Niederschlag
0 mm
Wind
9 km/h
SO
Abends
15°
bedeckt
Bewölkung
95%
Niederschlag
0 mm
Wind
10 km/h
SO
Nachts
12°
bedeckt
Bewölkung
97%
Niederschlag
0 mm
Wind
6 km/h
O
Sonntag, 20. Oktober
19° max 12° min
Niederschlag 5%
Bewölkung 68%
Sonne 10:37 Stunden
Wind S 9 km/h
Morgens
12°
bedeckt
Bewölkung
99%
Niederschlag
0 mm
Wind
9 km/h
S
Mittags
19°
Regenschauer
Bewölkung
79%
Niederschlag
0.13 mm
Wind
8 km/h
SSO
Abends
15°
Sprühregen
Bewölkung
6%
Niederschlag
0.01 mm
Wind
8 km/h
S
Nachts
14°
bedeckt
Bewölkung
97%
Niederschlag
0 mm
Wind
9 km/h
SSW
- Niederschlag
- Bewölkung
mm/ m²/ 15min
0.02
0.04
0.16
0.4
0.7
2
4
>5