ADVERTISEMENT

PH internet service improving due to collaborative efforts --- ARTA

Published Jan 23, 2022 10:00 am

Anti-Red Tape Authority (ARTA) Director-General Jeremiah Belgica lauded the collaborative efforts of the government and the telecommunications companies in providing streamlined guidelines for the processing of documents that led to the improvement of the country's internet services.

Anti-Red Tape Authority (ARTA) Director-General Jeremiah Belgica (Photo from ARTA)

Belgica made the statement after the recent data from worldwide speed monitoring firm Speedtest by Ookla showed that the Philippines' internet speed global rankings for both mobile and fixed broadband improved substantially in December 2021.

The country's median mobile internet download speed increased to 19.20 megabits per second (Mbps) from 18.68 Mbps in November, moving it up one spot to 89th place out of 138 countries.

The Philippines climbed nine places to 63rd place in terms of fixed broadband median download speed from 72nd place in November, as speed increased to 50.26 Mbps from 46.44 Mbps the previous month.

In a statement, Belgica recognized how government agencies stepped up to help ease the process for telecommunications companies to build the necessary infrastructure to improve internet services in the country.

"It is with great pride that we recognize the collaborative efforts of the telecommunication sector and our government agencies in continuously providing streamlined guidelines for the issuance of permits, licenses, and certificates for the construction of Shared Passive Telecommunications Tower Infrastructure (PTTIs)," he said.

But mostly, Belgica credited President Duterte for this breakthrough.

"All of these breakthroughs can be mainly attributed to President Duterte's determination to improve services and provide a more comfortable and convenient way of life for Filipinos," he said.

"Rest assured that in the coming months, we will continue to step up our efforts and keep coming up with innovations to improve the services in the country," he added.

According to Belgica, the upward trend of connectivity coincides with the growing demand for faster internet activity among the Filipinos in the new normal as most transactions are now being done online.

"Apart from the improved ranking, our true aspiration is for Filipinos to fully appreciate the seamless connection as they go about their daily lives, whether at work, in business, or in school," he said.

"It is also very timely, as we are pushing for ease of doing business, as this will allow for the effective implementation of our programs and initiatives to further advance our government services," he added.

In December, ARTA launched the Joint Memorandum Circular on pole, fiber ducts, and cable laying which aims to further bolster the country's internet connectivity through the widespread access of telecommunications infrastructure. This was in collaboration with the departments of Information and Communications Technology (DICT), the Interior and Local Government (DILG), Human Settlements and Urban Development (DHSUD), Public Works and Highways (DPWH), and other key agencies.

Meanwhile, Belgica said the steady increase in internet speed continues to boost the competitiveness of the Philippines not just in Southeast Asia, but also worldwide.

"I believe that by the end of the term of this Administration, the President would have fulfilled his promise to the people of a better and faster internet connection and services," he said.

"This is a primary example of the tremendous impact on a sector when all agencies and stakeholders, both from the government and private institutions, come together to battle and cut red tape in their industry," he added.

Related Tags

internet in the Philippines Anti-Red Tape Authority ARTA Jeremiah Belgica Internet speed
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.