ADVERTISEMENT

National food hub bill to benefit agribusiness—CIAC

Published Aug 22, 2024 02:57 am

State-owned Clark International Airport Corp. (CIAC) said the planned national food hub in Pampanga would position the Philippines as a leading agribusiness and logistics center in the Asia Pacific.

In a statement, Arrey Perez, CIAC president and chief executive officer, said the proposed legislation establishing the food hub at the Clark civil aviation complex would greatly benefit the agricultural sector and support the country’s overall growth.

On Tuesday, Aug. 20, the House Committee on Trade and Industry unanimously approved House Bill 10678, also known as "An Act Establishing the Clark National Food Hub, Appropriating Funds Therefor and for Other Purposes." 

Cagayan de Oro Second District Representative Rufus Rodriguez, who is among the authors of the bill, said the measure would address the country's food security concerns by effectively streamlining the food distribution process.

“Establishing a national food hub in Clark will play a crucial role in shortening the supply chain from producer to consumer (and) will not only standardize logistics but also ensure the efficient movement of food products, thereby enhancing overall efficiency,” Rodriguez said. 

“The initiative is further reinforced by the Philippines’ development plan, which includes food security measures (and so) the Clark national food hub is designed to achieve these objectives for the Filipino people,” he added.

The bill mandates the CIAC to oversee the development, functioning, and supervision of the civil aviation complex encompassing the Clark International Airports and the location designated for the establishment of the 62-hectare national food hub.

“As soon as this proposal becomes a law, it will bolster agrologistics as support to our country’s robust agricultural production,” Perez said.

“It will also enhance freight transport services, mobility, and access to key economic zones, toward seamless logistics and efficient supply chains.  This means higher farm productivity and sustained agribusiness, and higher income for Filipino farmers,” he added.

President Marcos, alongside U.S. President Joe Biden and Japanese Prime Minister Fumio Kishida, initiated a steering committee earlier this year. 

The committee aims to facilitate infrastructure development along the Luzon Economic Corridor (LEC), with a focus on enhancing connectivity between Subic Bay, Clark, Manila, and Batangas.

Secretary Frederick Go, Special Assistant to the President for Investment and Economic Affairs who chairs the LEC committee, has identified food and agriculture as one of the priority industries for investments.

“We continue to pursue initiatives that contribute to increasing agriculture production, and improving the food logistical chain. The Clark National Food Hub is a step in this direction, and we look forward to its successful establishment as a sustainable food security solution,” Go said.

Perez said that the project aims to tackle concerns about food security and logistics costs by offering reliable, sustainable, and updated solutions for meeting the demand and distributing agricultural products from Luzon to both local and international markets.

The approved proposal will be directed to the Committee on Appropriations and the Committee on Ways and Means for the funding and tax incentives sections.

Key elements of the Clark National Food Hub comprise advanced food storage warehouses, cold storage facilities, processing plants, administrative headquarters, logistics infrastructure, and wholesale and retail market areas.

Related Tags

Clark International Airport Corp. National Food Hub Clark
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.