-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (44 loc) · 2.68 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Metropolitan Atlas</title>
<link rel="stylesheet" type="text/css" href="style.css">
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
</head>
<body>
<div id = "title" class ="center">
<h1>Metropolitan Atlas</h1>
<p>
<span id="menuabout" class="menuitem">About</span>
<span>-</span>
<a id="menulocalgovs" class="menuitem" href="http://metroatlas.github.io/localgovs/">Local Governments</a>
<span>-</span>
<span id="menudata" class="menuitem" >Data</span>
</p>
</div>
<div id = "content" class ="center">
<div id = "about" class = "content">
<p>The Metropolitan Atlas is part of the research project <em>Democracy in the Metropolis</em>, conducted as part of his doctoral project by Thomas Favre-Bulle at the Swiss Federal Institute of Technology in Lausanne and the University of Stanford, the Bill Lane Center for the American West, and supported by the Swiss National Science Foundation.</p>
<p>For more information on the project, contact <a href="mailto:[email protected]">Thomas Favre-Bulle</a>.</p>
</div>
<div id = "data" class = "content">
<p>The Metropolitan Atlas is a project to assemble, compute and visualize data related to American metropolitan areas coming from various sources. All sources are publicly available in digital formats. The 1950 Census of total population by places has been digitalized at EPFL.</p>
<p>All data processing R files, original data files, as well as the comprehensive assembled database in open SQLite format is available on the GitHub repository <a href="https://github.com/metroatlas/dbpublic">metroatlas/dbpublic</a>.</p>
</div>
<div id = "localgovs" class = "content show">
<p>Explore America's local governments in their metropolitan environment from 1950 to 2010.</p>
<img id="localgovsscreen" src="images/localgovsscreen.png" width="100%" alt="some_text">
</div>
</div>
<script src="js/adapt.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-51162032-1', 'metroatlas.github.io');
ga('send', 'pageview');
</script>
</body>
</html>