-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfinal.html
More file actions
143 lines (129 loc) · 7.22 KB
/
final.html
File metadata and controls
143 lines (129 loc) · 7.22 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Earthquakes</title>
<script src="//d3js.org/d3.v3.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.10.3/moment.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.8.3/underscore-min.js"></script>
<script src="//d3js.org/queue.v1.min.js"></script>
<script src="//d3js.org/topojson.v0.min.js"></script>
<script src="//d3js.org/d3.geo.projection.v0.min.js"></script>
<link rel="stylesheet" href="final.css"/>
<!-- Got this idea from source: -->
<!-- Source link:http://bl.ocks.org/cmdoptesc/fc0e318ce7992bed7ca8 -->
<script src="d3.slider.js"></script>
<link rel="stylesheet" href="d3.slider.css"/>
<!---->
</head>
<body>
<a href="index.html" onclick="return popitup('index.html')" class="button">
return to home
</a>
<h1>Earthquake Since <span id="slider3textmin">1900</span> - <span id="slider3textmax">2016</span> Above 7 Magnitude</h1>
<div id="cool">
<p>
According to data, majority of earthquake occurs at tectonic fault lines. Since 1900, there has been 1347 earthquakes of magnitude 7 or greater and 5 earthquakes of magnitude 9 or greater.
</p>
<div id="slider3"></div>
<div id="map"></div>
<div><script type="text/javascript" src="final.js"></script></div>
<div>
<p>
Here is the link to learn what actions you can take to help yourself and your family to remain safe and healthy in the event of an earthquake: <a href="https://www.cdc.gov/disasters/earthquakes/index.html" class="button1" target="_blank">www.cdc.gov/disasters/earthquakes</a>
</p>
</div>
</div>
<div>
<div id="footer">
<div id="coll1">
<h3> Created by: </h3><p2> Sharad Shrestha in collaboration with Suresh K Lodha, Shobhit Maheshwari, and Ryan Brounley</p2>
<h3>Created for: </h3><p2>CMPS165, Data Programming for Visualization, Fall 2016</p2>
<div id="coll">
<table>
<tbody>
<tr>
<td><h4>Files:</h4></td>
<td> </td>
<td><h4>Data Sources:</h4></td>
<td> </td>
<td><h4> Code Sources:</h4></td>
</tr>
<tr>
<td><li>d3.slider.js</li></td>
<td> </td>
<td><li>Earthquake Data Catalog</li></td>
<td> </td>
<td><li><a href="http://bl.ocks.org/KoGor/5994804" target="_blank"class="button1" >bl.ocks.org/KoGor</a></li></td>
</tr>
<tr>
<td><li>d3.slider.css</li></td>
<td> </td>
<td><a href="https://earthquake.usgs.gov/earthquakes/search/" target="_blank" class="button1">earthquake.usgs.gov</a></td>
<td> </td>
<td><li><a href="http://benheb.github.io/d3.slider/" target="_blank" class="button1">benheb.github.io/d3.slider</a></li></td>
</tr>
<tr>
<td><li>final.css</li></td>
<td> </td>
<td><li>Disaster Casualties Data</li></td>
<td> </td>
<td><li><a href="http://bl.ocks.org/cmdoptesc/fc0e318ce7992bed7ca8" target="_blank" class="button1" >bl.ocks.org/cmdoptesc</a></li></td>
</tr>
<tr>
<td><li>final.html</li></td>
<td> </td>
<td><a href="https://ourworldindata.org/natural-catastrophes/" target="_blank" class="button1">ourworldindata.org</a></td>
<td> </td>
<td><li><a href="http://nvd3.org/" target="_blank" class="button1" >nvd3.org</a></li></td>
</tr>
<tr>
<td><li>final.js</li></td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><g><li>rest_7771.txt</li></g></td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><g><li>tectonics.json</li></g></td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><g><li>world_110m.json</li></g></td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><g><li>country.tsv</li></g></td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><g><li>ReadMe</li></g></td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</body>
</html>