ADVERTISEMENT

Expert airs concern over gov't's implementation of environmental laws

Published May 21, 2021 01:27 pm

While the Philippines has passed several laws seeking to protect the environment, an expert raised concern over the government’s supposed inability to implement measures that could protect the community and improve the lives of the people.

Dr. Carlos Primero Gundran

Dr. Carlos Primero Gundran, an assistant professor from the College of Public Health of the University of the Philippines-Manila, acknowledged that the country has many laws pertaining to the protection of the environment.

But he believes that the people are not informed enough of the existence of such laws, and that the government is not putting enough efforts in implementing the legislations.

“I know na isa tayo sa mga bansa na marami talaga tayong batas (that we are one of the countries that really have a lot of laws). Unfortunately, magaling tayong gumawa ng batas pero mukhang hindi naman alam ng community lahat ng batas na ito (we are good at making laws but the community doesn't seem to know all these laws),” Gundran said.

“I don’t think na implement natin (we have implemented these laws), which is sad. Nangunguna tayo sa mga batas pero hindi natin siya na implement (We are leading in making laws but we do not implement them),” he added.

Gundran was one of the panel of experts in a webinar series on climate change organized by the National Academy of Science and Technology, Philippines (NAST PHL), in partnership with The Outstanding Women in Nation’s Service Inc. (TOWNS) on Friday, May 21.

In his presentation, he reported that the Philippines consistently ranked among the top five countries worldwide most affected by natural disasters and reported victims.

“Climate change exacerbates the impacts of disasters,” Gundran said, adding that the changing global climate have contributed to the effects of disasters making them more severe and affecting more people.

According to him, among the effects of climate change that could affect the health of the people are extreme temperatures, extreme events, air quality, vector- and water-borne diseases, and mental health.

Effects of climate change on mental health

Gundran explained that the effects of climate change such as extreme weather events like severe typhoons and intense heat could affect the mental wellbeing of an individual.

“Climate change causes extreme weather events. If you are exposed to extreme events, that has an effect to your mental health,” he explained.

“The effects of the climate change to our environment, and that change in the environment affects you, cause you suffering, cause you grief, that affects your mental health,” he added.

The expert recommended that the government should be more active in implementing environmental legislations that would improve the community and its constituents.

“I think what we should do, gawin natin, implement natin (we should implement these laws). Yung mga leaders natin, i-promote talaga natin yung mga batas (Our leaders should really promote the laws) which are actually there to serve the community, to improve the community hindi lang yung self interest,” Gundran said.

“I think we should be public service oriented and we should apply the laws that would improve everyone in the community,” he added.

Related Tags

National Academy of Science and Technology The Outstanding Women in Nation’s Service Climate change
ADVERTISEMENT
.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; } .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; } .hidden { display: none; }
function initializeAllSwipers() { // Get all hidden inputs with cms_article_id document.querySelectorAll('[id^="cms_article_id_"]').forEach(function (input) { const cmsArticleId = input.value; const articleSelector = '#article-' + cmsArticleId + ' .body_images'; const swiperElement = document.querySelector(articleSelector); if (swiperElement && !swiperElement.classList.contains('swiper-initialized')) { new Swiper(articleSelector, { loop: true, pagination: false, navigation: { nextEl: '#article-' + cmsArticleId + ' .swiper-button-next', prevEl: '#article-' + cmsArticleId + ' .swiper-button-prev', }, }); } }); } setTimeout(initializeAllSwipers, 3000); 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); let article = entry.target; // Extract metadata const author = article.querySelector('.author-section').textContent.replace('By', '').trim(); const section = article.querySelector('.section-info ').textContent.replace(' ', ' '); const title = article.querySelector('.article-title h1').textContent; // Parse URL for Chartbeat path format const parsedUrl = new URL(newUrl, window.location.origin); const cleanUrl = parsedUrl.host + parsedUrl.pathname; // Update Chartbeat configuration if (typeof window._sf_async_config !== 'undefined') { window._sf_async_config.path = cleanUrl; window._sf_async_config.sections = section; window._sf_async_config.authors = author; } // Track virtual page view with Chartbeat if (typeof pSUPERFLY !== 'undefined' && typeof pSUPERFLY.virtualPage === 'function') { try { pSUPERFLY.virtualPage({ path: cleanUrl, title: title, sections: section, authors: author }); } catch (error) { console.error('ping error', error); } } // Optional: Update document title if (title && title !== document.title) { document.title = title; } } } }); }, { threshold: 0.1 } ); 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]; // Offset values const currentUrl = window.location.pathname.substring(1); let isLoading = false; // Prevent multiple calls if (!currentUrl) { console.log("Current URL is invalid."); return; } const sentinel = document.getElementById("load-more-sentinel"); if (!sentinel) { console.log("Sentinel element not found."); return; } function isSentinelVisible() { const rect = sentinel.getBoundingClientRect(); return ( rect.top < window.innerHeight && rect.bottom >= 0 ); } function onScroll() { if (isLoading) return; if (isSentinelVisible()) { if (loadCount >= offset.length) { console.log("Maximum load attempts reached."); window.removeEventListener("scroll", onScroll); return; } isLoading = true; const currentOffset = offset[loadCount]; window.loadMoreItems().then(() => { let article = document.querySelector('#widget_1690 > div:nth-last-of-type(2) article'); intersectionObserver.observe(article) loadCount++; }).catch(error => { console.error("Error loading more items:", error); }).finally(() => { isLoading = false; }); } } window.addEventListener("scroll", onScroll); });

Sign up by email to receive news.