KSH: in June, the number of guests increased by 4.4 percent and guest nights by 5.1 percent compared to a year earlier

By: Trademagazin Date: 2025. 07. 29. 11:30
🎧 Hallgasd a cikket:
In June 2025, nearly 1.9 million guests spent 4.4 million guest nights at tourist accommodations (commercial, private, and other) in Hungary. The number of guests increased by 4.4%, and the number of guest nights by 5.1% compared to the same period last year, partly due to the extended Pentecost weekend falling in June this year – reported the Hungarian Central Statistical Office (HCSO) on Tuesday.

Gross revenue of tourist accommodations, million HUF

Seasonally adjusted data show that the number of guests increased by 5.2% and guest nights by 6.1% compared to June 2024.

69% of the guests stayed at commercial accommodations, where their number rose by 2.9% compared to the previous year. Private and other accommodations saw a 7.8% increase in guest numbers year-on-year.

The number of domestic guests increased by 2.3%, and the number of guest nights they spent rose by 4.1% compared to the same month of the previous year. According to seasonally adjusted data, domestic guests increased by 2.7% and their guest nights by 4.5% compared to June 2024.

A total of 1.0 million domestic guests spent 2.2 million guest nights at tourist accommodations, including 692,000 guests and 1.5 million guest nights at commercial accommodations.

65% of these guests stayed in hotels, with their number increasing by 2.7% year-on-year. The number of domestic guests at private and other accommodations rose by 3.8% compared to June last year.

According to the HCSO, the number of domestic guests grew the most in Szeged and its region (by 18%) and decreased the most in the Mátra-Bükk tourist region (by 1.5%).

At Lake Balaton, domestic guest numbers were up 1.7%, while in Budapest they declined by 1.2% compared to last June.

The number of foreign guests increased by 6.8%, and the number of guest nights they spent grew by 6.1% compared to the same month of the previous year. Seasonally adjusted data show that the number of foreign guests rose by 10% and guest nights by 8.2% compared to June 2024.

A total of 889,000 foreign guests spent nearly 2.2 million guest nights at tourist accommodations, including 609,000 guests and about 1.5 million guest nights at commercial accommodations. 79% of these guests stayed in hotels, where their number was up 1.4% year-on-year. The number of foreign guests at private and other accommodations was 13% higher than in June 2024.

rateVal.textContent = (Number(rateInp.value)).toFixed(2) + "×"); // Nyelvdetektálás (egyszerű heurisztika HU/EN között) function detectLang(text){ const t = (text || "").toLowerCase(); const huAccents = (t.match(/[áéíóöőúüű]/g) || []).length; const huHits = ((t.match(/\b(és|hogy|nem|egy|van|volt|közleménye| szerint)\b/g)) || []).length; const enHits = ((t.match(/\b(the|and|of|to|in|for|with|on|as|is|are|this|that)\b/g)) || []).length; if (huAccents >= 4 || huHits >= 3) return "hu-HU"; if (enHits >= 4) return "en-US"; // fallback: vagy böngésző nyelve const htmlLang = (document.documentElement.lang || "").substr(0,2); if (/hu/i.test(htmlLang)) return "hu-HU"; if (/en/i.test(htmlLang)) return "en-US"; const nav = (navigator.language || "").substr(0,2); if (/hu/i.test(nav)) return "hu-HU"; return "en-US"; } function getTargetLang(){ const sel = langSel ? langSel.value : "auto"; if (sel && sel !== "auto") return sel; return detectLang(fullText); } function findBestVoice(langTag){ const vs = speechSynthesis.getVoices(); if (!vs || !vs.length) return null; // pontos nyelvkód let v = vs.find(x => x.lang === langTag); if (v) return v; // nyelv szerinti prefix const prefix = langTag.split("-")[0]; v = vs.find(x => x.lang && x.lang.toLowerCase().startsWith(prefix)); if (v) return v; // név alapján (magyar/english a névben) if (prefix === "hu") v = vs.find(x => /hungarian|magyar/i.test(x.name)); if (prefix === "en") v = vs.find(x => /english|us|uk|gb/i.test(x.name)); return v || vs[0] || null; } function splitIntoChunks(text, maxLen=1800) { const out = []; let buf = ""; const parts = text.split(/([.!?]+)\s+/); for (let i=0; i maxLen && buf) { out.push(buf.trim()); buf = sentence; } else { buf += " " + sentence; } } if (buf.trim()) out.push(buf.trim()); return out; } let chunks = splitIntoChunks(fullText); let idx = 0; let current = null; let selectedVoice = null; let targetLang = getTargetLang(); function buildUtterance(txt){ const u = new SpeechSynthesisUtterance(txt); u.lang = targetLang; if (!selectedVoice) selectedVoice = findBestVoice(targetLang); if (selectedVoice) u.voice = selectedVoice; u.rate = Math.max(0.7, Math.min(1.5, Number(rateInp ? rateInp.value : 1.05))); u.pitch = 1.0; u.onstart = () => { statusEl.textContent = "Felolvasás… ("+(idx+1)+"/"+chunks.length+") ["+targetLang+"]"; }; u.onend = () => { idx++; if (idx < chunks.length) { current = buildUtterance(chunks[idx]); speechSynthesis.speak(current); } else { statusEl.textContent = "Kész."; } }; u.onerror = () => { statusEl.textContent = "Hiba a felolvasás közben."; }; return u; } // A voice lista sokszor később érkezik meg speechSynthesis.onvoiceschanged = () => { targetLang = getTargetLang(); selectedVoice = findBestVoice(targetLang); }; btnPlay && btnPlay.addEventListener("click", () => { if (!fullText) { statusEl.textContent = "Nincs felolvasható szöveg."; return; } speechSynthesis.cancel(); idx = 0; targetLang = getTargetLang(); selectedVoice = findBestVoice(targetLang); chunks = splitIntoChunks(fullText); current = buildUtterance(chunks[idx]); speechSynthesis.speak(current); }); btnPause && btnPause.addEventListener("click", () => { if (speechSynthesis.speaking && !speechSynthesis.paused) { speechSynthesis.pause(); statusEl.textContent = "Szünet."; } }); btnResume && btnResume.addEventListener("click", () => { if (speechSynthesis.paused) { speechSynthesis.resume(); statusEl.textContent = "Folytatás…"; } }); btnStop && btnStop.addEventListener("click", () => { speechSynthesis.cancel(); statusEl.textContent = "Leállítva."; }); // Ha a felhasználó menet közben nyelvet vált langSel && langSel.addEventListener("change", () => { if (speechSynthesis.speaking) { speechSynthesis.cancel(); statusEl.textContent = "Nyelv váltva. Készen áll az új lejátszásra."; } }); })();

Related news