ADVERTISEMENT
970x220

Marcos mobilizes Nat'l Maritime Council; integrates response to WPS threats

Published Mar 30, 2024 10:32 pm

At A Glance

  • In the EO, the President emphasized the need to strengthen maritime security and raise awareness on the maritime domain amid "serious challenges" that threaten the country's territorial integrity and the "peaceful existence of Filipinos."

President Marcos has issued Executive Order (EO) No. 57, which aims to strengthen the country's maritime security amid China's recent aggressive tactics and threats in the West Philippine Sea (WPS).

EO57.jpg
File photos

Executive Secretary Lucas Bersamin signed the six-page EO on March 25, the same week President Marcos announced that the government would carry out a proportionate, deliberate, and reasonable response to what he called the "open, unabating, and illegal, coercive, aggressive, and dangerous attacks" by agents of the China Coast Guard and the Chinese Maritime Militia.

In the EO, the President emphasized the need to strengthen maritime security and raise awareness on the maritime domain amid "serious challenges" that threaten the country’s territorial integrity and the "peaceful existence of Filipinos."

"Despite efforts to promote stability and security in our maritime domain, the Philippines continues to confront a range of serious challenges that threaten not only the country's territorial integrity but also the peaceful existence of Filipinos, including their fundamental right to live in peace and freedom, free from fear of violence and threat," he said.

"Strengthening the country's maritime security and domain awareness is imperative to comprehensively tackle the crosscutting issues that impact the nation's national security, sovereignty, sovereign rights, and maritime jurisdiction over its extensive maritime zones," he added.

Under EO 57, Marcos renamed and reorganized the National Coast Watch Council (NCWC) to the National Maritime Council (NMC), tasked to formulate policies and strategies to ensure a unified, coordinated, and effective governance framework for the country’s maritime security and domain awareness, among other powers and functions.

The NMC, chaired by Bersamin, is tasked to formulate and issue guidelines for the effective implementation of EO 57 within 60 days from its publication in the Official Gazette or a newspaper of general circulation.

The members of the NMC are the secretaries of the following departments:

  • Department of National Defense (DND)
  • National Security Adviser (National Security Council)
  • Department of Agriculture (DA)
  • Department of Energy (DOE)
  • Department of Environment and Natural Resources (DENR)
  • Department of Foreign Affairs (DFA)
  • Department of Finance (DOF)
  • Department of the Interior and Local Government (DILG)
  • Department of Transportation (DOTr)


 

 

The Solicitor General and the Director General of the National Intelligence Coordinating Agency (NICA) are also members of the NMC.

The NCWC Secretariat, which was renamed as the Presidential Office for Maritime Concerns (POMC), is tasked to provide consultative, research, administrative, and technical services to the NMC and ensure the efficient and effective implementation of the policies of the council, among other functions.

The Presidential Assistant for Maritime Concerns (PAMC), on the other hand, may report directly to the President on critical and urgent matters and issues affecting the country’s maritime security and domain awareness, while the National Maritime Center (formerly the National Coast Watch Center) is tasked to implement and coordinate maritime security operations, among others.

The National Task Force for the West Philippine Sea (NTF-WPS), created in 2016 to orchestrate, synchronize, and operationalize the employment of the capabilities of different agencies for unified actions in the West Philippine Sea, will be attached to the NMC.

It will also receive policy guidance from the President through the NMC. 

Related Tags

Bongbong Marcos Executive Order PH-China South China Sea West Philippine Sea President Marcos
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.