ADVERTISEMENT
970x220

DSWD: 4,000 individuals still in evacuation centers after Kanlaon eruption

Published Jun 10, 2024 02:38 am
IMG_3875.jpeg
DSWD-DROMIC (Facebook)

Some 4,000 people are still staying in eight evacuation centers in Negros Occidental and Negros Oriental after Kanlaon Volcano erupted on June 3, based on a report from the Department of Social Welfare and Development (DSWD) on Monday, June 10.

Immediately following the eruption, 21 evacuation centers were opened, but the DSWD-Disaster Response Management’s report showed that the number has since decreased to eight, with six remaining in La Castellana, Negros Occidental, and two in Canlaon City, Negros Oriental.

The evacuation centers currently serve 1,260 families or 4,391 people.

Meanwhile, 79 families, or 361 people are seeking temporary shelter with relatives or friends.

DSWD said Kanlaon Volcano’s eruption displaced 1,339 families or 4,752 individuals.

It added that the affected families received about P8.5 million in assistance, which included P4.77 million from DSWD, P1.25 million from local government units, P2.49 million from non-government organizations, and P47,000 from other partners.

Currently, the DSWD Central Office (P1.25 billion), DSWD field offices in Regions VI and VII (P10 million), and other DSWD field offices (P55.29 million) have standby funds worth over P1.3 billion.

There are also about 120,000 food packs available at DSWD field offices in Regions VI and VII for those affected by the eruption.

The National Resource Operations Center in Pasay City also has about 177,000 family food packs on hand, as does the Visayas Disaster Response Resource Center in Mandaue City, which has 86,000.

Kanlaon update

In the past 24 hours, the Philippine Institute of Volcanology and Seismology (Phivolcs) said in its volcano bulletin on Monday that six volcanic earthquakes were recorded at Kanlaon Volcano, a decrease from the 19 tremors observed the previous day.

The sulfur dioxide emissions were also down, dropping from 4,397 tons on June 8 to 3,304 tons on June 9.

However, this level is still considered high, given that Kanlaon has been emitting higher concentrations of volcanic SO2 this year, with an average of 1,458 tons per day.

Since the eruption on June 3, Phivolcs said the emissions have significantly increased, reaching an average of 3,347 tons per day. 

Phivolcs said Alert Level 2 is maintained as Kanlaon Volcano is still experiencing “increased” volcanic unrest.

It reiterated the strict prohibition of entry into the four-kilometer radius permanent danger zone (PDZ).

Certain areas within barangays (villages), including Ara-al and Yubo in La Carlota City; Sag-ang, Mansalanao, Cabagnaan, and Biaknabato in La Castellana; Minoyan, Murcia; Masolog, Pula, and Lumapao in Canlaon City; and Codcod in San Carlos City, are located within the PDZ.

Phivolcs urged local government units, disaster officials, and the public to refrain from entering the PDZ due to the heightened likelihood of similar explosive eruptions occurring, as well as the associated threat of volcanic hazards such as pyroclastic density currents and ballistic projectiles within the PDZ.

Related Tags

evacuation centers Kanlaon Volcano Eruption DSWD
ADVERTISEMENT
300x250
.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1561_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1562_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1563_widget.title }}

{{ articles_filter_1564_widget.title }}

.mb-article-details { position: relative; } .mb-article-details .article-body-preview, .mb-article-details .article-body-summary{ font-size: 17px; line-height: 30px; font-family: "Libre Caslon Text", serif; color: #000; } .mb-article-details .article-body-preview iframe , .mb-article-details .article-body-summary iframe{ width: 100%; margin: auto; } .read-more-background { background: linear-gradient(180deg, color(display-p3 1.000 1.000 1.000 / 0) 13.75%, color(display-p3 1.000 1.000 1.000 / 0.8) 30.79%, color(display-p3 1.000 1.000 1.000) 72.5%); position: absolute; height: 200px; width: 100%; bottom: 0; display: flex; justify-content: center; align-items: center; padding: 0 72px 0 12px; } .read-more-background a{ color: #000; } .read-more-btn { padding: 17px 45px; font-family: Inter; font-weight: 700; font-size: 18px; line-height: 16px; text-align: center; vertical-align: middle; border: 1px solid black; background-color: white; } li:empty { display: none; } .hidden { display: none; }
function showArticleBody(button) { const article = button.closest("article"); const summary = article.querySelector(".article-body-summary"); const body = article.querySelector(".article-body-preview"); const readMoreSection = article.querySelector(".read-more-background"); // Hide summary and read-more section summary.style.display = "none"; readMoreSection.style.display = "none"; // Show the full article body body.classList.remove("hidden"); } document.addEventListener("DOMContentLoaded", () => { let loadCount = 0; // Track how many times articles are loaded const offset = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; // The two offset values // changed to 10 from 1 , 2 const currentUrl = window.location.pathname.substring(1); let isLoading = false; // Prevent multiple calls if (!currentUrl) { console.log("Current URL is invalid."); return; } function isNearBottom() { return window.innerHeight + window.scrollY >= document.documentElement.scrollHeight - 100; } function onScroll() { if (isLoading) return; // Skip if already loading if (isNearBottom()) { if (loadCount >= offset.length) { console.log("Maximum load attempts reached."); window.removeEventListener("scroll", onScroll); return; } isLoading = true; // Set flag to prevent multiple calls const currentOffset = offset[loadCount]; window.loadMoreItems().then(() => { loadCount++; // Increment only after successful execution }).catch(error => { console.error("Error loading more items:", error); }).finally(() => { isLoading = false; // Reset flag after execution }); } } window.addEventListener("scroll", onScroll); }); // Mutation Observer for Newly Loaded Articles const observer = new MutationObserver(() => { const articles = document.querySelectorAll(".articles-observe"); if (articles.length > 0) { observeArticles(articles); } }); observer.observe(document.body, { childList: true, subtree: true }); // Intersection Observer for Updating URL function observeArticles(articles) { const intersectionObserver = new IntersectionObserver( (entries) => { entries.forEach((entry) => { if (entry.isIntersecting) { const newUrl = entry.target.getAttribute("data-url"); if (newUrl) { history.pushState(null, null, newUrl); } } }); }, { threshold: 0.1 } ); articles.forEach(article => intersectionObserver.observe(article)); }

Sign up by email to receive news.