-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathWorldwide_Access.html
More file actions
43 lines (36 loc) · 2.64 KB
/
Worldwide_Access.html
File metadata and controls
43 lines (36 loc) · 2.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html>
<head>
<title> Internet Access and Innovation </title>
<meta charset="utf-8">
<link href="styles/d3.geomap.css" rel="stylesheet">
<link href="styles/vis1_styles.css" rel="stylesheet" type="text/css">
<link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Lato" />
<link rel="shortcut icon" type="image/x-icon" href="globe.png">
</head>
<body>
<div class="scrollmenu">
<a href="index.html">Home</a>
<a href="Worldwide_Access.html">Worldwide Access</a>
<a href="Gender_Gap.html">Gender Gap in Access</a>
<a href="GDP_Access.html">GDP and Access</a>
<a href="https://github.com/adm448/econdev">Source Code</a>
</div>
<h1> Internet Access Worldwide </h1>
<h2> Adam Murray </h2>
<br>
<h3 class="chart-title">Getting Online: How the World is Starting to Connect</h3>
<h4> The two maps below show the spread of internet access (fixed broadband subscriptions per 100 habitants) from 2006 to 2016. While much of the world has come online, large gaps in fixed broadband subscriptions persist. </h4>
<p class="chart-instructions"><i>Note that the buckets in the legend scale are not equivalent, so the color intenstiy is not a direct match from 2006 to 2016.</i></p>
<h4>2016 </h4>
<div id="map"></div>
<h4>2006 </h4>
<div id="map2006"></div>
<p id="sources"> Data: <a href="https://www.itu.int/en/ITU-D/Statistics/Documents/statistics/2017/Fixed_broadband_2000-2016.xls">ITU Fixed Broadband Subscriptions</a> Visualization: <a href="https://d3-geomap.github.io/map/choropleth/world/">Choropleth Map World</a></p>
<p> OECD countries were clearly some of the earliest to widely install broadband in their countries. A decade later, large parts of South America, Asia, Eurasia, and the Middle East had connected. While countries like China and Russia had similar access levels in 2016 as the United States had in 2006, others still lag behind. Given the strength of the IT sector in India, it is surprising that broadband subscriptions per 100 habitants match levels found in Africa. On the continent, we see significant growth in access (though from a low base), especially in the south of Africa. There are large disparities in ASEAN countries as well. While rates in many developing countries are quite low, our analysis does not account for mobile broadband subscriptions, which have proven quite popular in many developing countries that lack fixed infrastructure. </p>
<script src="scripts/d3.geomap.dependencies.min.js"></script>
<script src="scripts/d3.geomap.min.js"></script>
<script src="scripts/vis1_global_internet_subscriptions.js"></script>
<script src="scripts/vis1_global_internet_subscriptions_2006.js"></script>
</body>
</html>