Technology Sharing

GEE Dataset - Global Ookla 5G Base Station Map Data (Ookla 5G Map Data)

2024-07-12

한어Русский языкEnglishFrançaisIndonesianSanskrit日本語DeutschPortuguêsΕλληνικάespañolItalianoSuomalainenLatina

Ookla 5G Map Data

Ookla 5G Map Data

The Ookla 5G Map™ was launched in May 2019 to provide a comprehensive overview of 5G technologyGlobal expansion. At launch, the map highlighted 300 deployments in 17 countries, illustrating the initial rollout of this transformative technology. Over time, the map has grown significantly and now includes data on more than 145,000 deployments from 233 vendors in 142 countries. This broad coverage highlights the rapid adoption and widespread implementation of 5G networks around the world.

As 5G technology becomes more common in many regions, the focus of the Ookla 5G Map™ is changing. As 5G becomes more widely available, the focus is shifting to analyzing the latest emerging technologies and identifying markets that are lagging behind in connectivity. This shift is intended to focus on new technological advancements, address the digital divide, and ensure connectivity continues to improve around the world. The Ookla 5G Map™ remains an important tool for understanding the current state of global connectivity and future trends.

Code

  1. var ookla_5g_map = ee.FeatureCollection("projects/sat-io/open-datasets/network/ookla_5g_map");
  2. var operatorCounts = ookla_5g_map.aggregate_histogram('operator');
  3. print('Operator Counts:', operatorCounts);
  4. var ookla_updated = ookla_5g_map.map(function(feature) {
  5. // 获取当前特征的操作符
  6. var operator = feature.getString('operator');
  7. // 从直方图中获取该算子的计数
  8. var count = operatorCounts.get(operator);
  9. // 将计数作为新属性添加到特征中