ADVERTISEMENT

'Hindi na nakuntento': Senators slam China's bullying on Philippine airspace

Published Feb 19, 2025 07:59 am

Senate deputy minority leader Senator Risa Hontiveros on Wednesday, February 19, slammed China’s Peoples Liberation Army Navy (PLAN) for applying its bullying tactics even on the country’s own airspace.

“Hindi na nakuntento ang Tsina sa pambubully sa karagatan, pati sa himpapawid nambabanta narin (China is no longer content with carrying out its bullying in the seas, it is taking the threats in the air as well)!” Hontiveros said in a statement.

The senator made the remark in light of the dangerous maneuver by a PLA Navy helicopter, a Chinese military chopper, near a Philippine aircraft over Bajo de Masinloc.

US Ambassador to the Philippines Mary Kay Carlson has also expressed indignation over the act, and called on China to “refrain from coercive actions and settle its disputes peacefully in accordance with international law.”

Hontiveros said she agrees with the US ambassador’s call saying Philippine patrol planes have the right of overflight especially within the country’s own exclusive economic zone (EEZ).

“This is in full accordance with the United Nations Convention on the Law of the Sea (UNCLOS). Tayo ang may karapatan, hindi ang Tsina (We are the ones who have the right, not China),” she stressed.

Moreover, Hontiveros stressed that even the International Civil Aviation Organization (ICAO) regulations also clearly stipulate that no state aircraft is allowed to fly over a territory of another state without prior authorization.

“Atin ang Scarborough Shoal, kaya tayo ang nasa tama (The Scarborough Shoal is ours, that’s why we are in the right),” she said.

“Just as China violates the International Regulations for Preventing Collisions at Sea in our waters, she also violated ICAO safety standards in our skies,” the senator stressed.

Hontiveros observed China is provoking trouble by routinely disrespecting international law, despite being a signatory to UNCLOS and a contracting member of the ICAO.

“And yet she shamelessly ignores these international norms. Tahasang nanggugulo talaga ang Tsina (China really wants to create chaos),” she said.

“I call on our partners in the international community, especially our neighbors in the Indo-Pacific, to join the Philippines in pushing back. Our region cannot achieve genuine peace if China continues her aggression,” she stressed.

Senate President Pro Tempore Jinggoy Ejercito Estrada also criticized the reckless maneuvers carried out by China’s PLA Navy.

“Our government should assert, in no uncertain terms, that this latest dangerous and reckless maneuvers carried out by China’s People’s Liberation Army (PLA) Navy helicopter against a light aircraft of the BFAR is a clear violation of international aviation safety protocols,” Estrada said in a separate statement.

The Marcos government, he said, should file a diplomatic protest over this recent action of China.

“It is, without a doubt, an affront to our nation’s sovereignty. We should waste no time in filing a diplomatic protest to assert out rights and demand accountability from China for this latest provocation,” the senator said.

According to Philippine Coast Guard (PCG) spokesperson for the West Philippine Sea Commodore Jay Tarriela, the aircraft of the Bureau of Fisheries and Aquatic Resources (BFAR) was holding a maritime domain awareness flight around 7 a.m. on Tuesday, when the incident happened.

PCG personnel and photojournalists were onboard when a PLAN helicopter with tail number 68 approached at 8:39 a.m., coming as close as three meters to the BFAR aircraft’s port side and above it.

Related Tags

philippine airspace China Coast Guard Peoples Liberation Army of China Philippine Coast Guard (PCG) West Philippine Sea BFAR Risa Hontiveros
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.