- 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) ); var imageId = this.day.icon.substring(this.day.icon.lastIndexOf("/icon_")+6, this.day.icon.lastIndexOf(".png")); $($item).find('.widgetWrapper').addClass("topWeatherImg").addClass("img"+imageId); 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'); 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); }});
Neubau Vorschau
Heute 48 Stunden 9 Tage
Morgens
26°
sonnig
Bewölkung
21%
Niederschlag
0 mm
Wind
44 km/h
NW
Mittags
26°
sonnig
Bewölkung
29%
Niederschlag
0 mm
Wind
30 km/h
O
Abends
26°
wolkig
Niederschlag
0.38 mm
Wind
4 km/h
SW
Nachts
24°
wolkig
Bewölkung
41%
Niederschlag
0 mm
Wind
17 km/h
WNW
Jetzt
26°
wolkig
Bewölkung
38%
Niederschlag
0 mm
Wind
2 km/h
SO
19:00
26°
Regen
Bewölkung
98%
Niederschlag
100 mm
Wind
2 km/h
OSO
20:00
26°
Sprühregen
Bewölkung
42%
Niederschlag
8 mm
Wind
3 km/h
ONO
21:00
25°
wolkig
Bewölkung
39%
Niederschlag
0 mm
Wind
2 km/h
SW
Heute
26°
Regenschauer
Bewölkung
36%
Niederschlag
0.11 mm
Wind
44 km/h
SSO
Morgen
29°
heiter
Bewölkung
22%
Niederschlag
0 mm
Wind
12 km/h
NW
Montag
32°
heiter
Bewölkung
36%
Niederschlag
0 mm
Wind
8 km/h
O
Dienstag
32°
wolkig
Bewölkung
41%
Niederschlag
0.02 mm
Wind
19 km/h
NW
Regen-Warnung
Niederschlag ab 19:00
1.84mm
0.05mm
0.01mm
0.07mm
0.01mm
- Jetzt
- 19:00
- 20:00
- 21:00
- 22:00
- 23:00
- 00:00
- 01:00
- 02:00
- 03:00
- 04:00
- 05:00
- 06:00
- 07:00
- 08:00
- 09:00
- 10:00
- 11:00
- 12:00
- 13:00
- 14:00
- Niederschlag
- Bewölkung
mm/ m²/ 15min
0.02
0.04
0.16
0.4
0.7
2
4
>5
Österreich Wetter
- Heute
- Morgen
- 9 Tage
- Jetzt
- 19
- 20
- 21
- 22
- 23
- 0
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
Landeshauptstädte
Region | Grad | Wetter | Bewölkung |
---|---|---|---|
Bregenz | 19° | wolkig | 69% |
Innsbruck | 20° | sonnig | 1% |
Salzburg | 20° | wolkig | 69% |
Linz | 24° | wolkig | 67% |
Sankt Pölten | 24° | stark bewölkt | 89% |
Wien | 25° | wolkig | 40% |
Eisenstadt | 27° | stark bewölkt | 91% |
Graz | 28° | heiter | 20% |
Klagenfurt | 31° | stark bewölkt | 77% |
Live Cam
Neubau
Kaiser-Rast Stockerau
InterContinental® Wien
Unsere Wettercam Partner
Alle Wettercams
Wetterdiagramm für 9 Tage
wetter.at Highlights
- Open-air Konzerte im Familypark - sei dabei!
- DEIN PERFEKTER URLAUB IN WIEN
unsere Tipps für Wien
DEIN PERFEKTER URLAUB IN WIEN
Sonnen- und Mondlauf
Neubau
11% 0mm
26°
05:07
20:52
12:58
00:00
zun. Halbmond Heute
zweites Viertel 17.07 05:57
Vollmond 20.07 22:34
- Temperatur Hoch/Tief 26°/19°
- Bewölkung 38%
- Wind SO 2 km/h
- Sonnenstunden 15:45 Stunden
- Regen-Schnee-Menge 0mm