-
Notifications
You must be signed in to change notification settings - Fork 0
/
Pennsylvania.html
63 lines (52 loc) · 2.68 KB
/
Pennsylvania.html
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Pennsylvania Languages</title>
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css" integrity="sha512-xodZBNTC5n17Xt2atTPuE1HxjVMSvLVW9ocqUKLsCC5CXdbqCmblAshOMAS6/keqq/sMZMZ19scR4PsZChSR7A==" crossorigin="" />
<link rel="stylesheet" href="css/styles.css">
<link rel="icon" href="favicon.ico">
<script src="https://unpkg.com/[email protected]/dist/leaflet.js" integrity="sha512-XQoYMqMTK8LvdxXYG3nZ448hOEQiglfqkJs1NOQV44cWnUrBc8PkAOcXy20w0vlaXaVUearIOBhiXZ5V3ynxwA==" crossorigin=""></script>
</head>
<body>
<div class="heading">
<h1>Most Common Languages in Pennsylvania</h1>
</div>
<div class="mapspace">
<div class="" id="mapid">
</div>
</div>
<div class="description">
<h2>Background</h2>
<p>Excluding English and Spanish, Chinese is the most common language spoken at home in Pennsylvania.
Unless Pennsylvania German is counted as German,
in which case those who speak German at home outnumber those who speak Chinese.
The language data used for this map track Pennsylvania German (also known as Pennsylvania Dutch) separately from
other dialects of German.</p>
<p>The regions on this map are from the U.S. Census Bureau's Public Use Microdata Areas.
Each region has about 100,000-200,000 residents.</p>
<p>The language data are from the Census Bureau's 2018 American Community Survey,
which collapses over 1300 languages and language groups into about 130 languages and language groups
for the Public Use Microdata Samples used for this map.</p>
<h2>Additional Sources</h2>
<p>Colors used for map and legend from <a href="https://carto.com/carto-colors/">CARTO</a>.<br />
Cartographic boundary files from the Census Bureau converted to geoJson format by
<a href="https://mygeodata.cloud/">MyGeodata Cloud</a>. <br />
The map is powered by <a href="https://leafletjs.com/">Leaflet</a>. <br>
Files for this page are on <a href="https://github.com/lauramoon/language_map">GitHub</a>.
</p>
</div>
<div class="footer">
<p>Copyright 2020 by Laura Moon</p>
</div>
<script type="text/javascript">
const state = "Pennsylvania";
</script>
<script type="text/javascript" src="scripts/variables.js"></script>
<script type="text/javascript" src="scripts/cb_2018_42_puma10_500k.js"></script>
<script type="text/javascript" src="scripts/LANP_PA.js"></script>
<script type="text/javascript" src="scripts/language_codes.js"></script>
<script type="text/javascript" src="scripts/colors.js"></script>
<script type="text/javascript" src="scripts/map.js" charset="utf-8"></script>
</body>
</html>