-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
392 lines (366 loc) · 12.9 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
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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
<!doctype html>
<meta charset="UTF8">
<html>
<head>
<title>Madison Tree Types</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/nvd3/1.1.15-beta/nv.d3.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.2/d3.js" charset="utf-8"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/nvd3/1.1.15-beta/nv.d3.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.4/jquery.js"></script>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css" rel="stylesheet">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
<!-- CSS -->
<link rel="stylesheet" type="text/css" href="//cdnjs.cloudflare.com/ajax/libs/chosen/1.1.0/chosen.min.css">
<!-- JS -->
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/chosen/1.1.0/chosen.jquery.min.js"></script>
<link rel="stylesheet" href="/madison-trees/assets/cartodb.css" />
<script src="/madison-trees/assets/cartodb.js"></script>
<style>
#chart {
height: 200px;
width: 100%;
}
svg {
clear: both;
}
body {
padding: 0 10px;
}
.tab-content {
width: 100%;
}
.pagination {
margin: 5px 0 0 0;
}
.pagination>li>a, .pagination>li>span {
position: relative;
float: left;
padding: 4px 9px;
margin-left: -1px;
line-height: 1.42857143;
color: #337ab7;
text-decoration: none;
background-color: #fff;
border: 1px solid #ddd;
}
.pagination {
margin: 5px 0 0 0;
font-size: 12px;
padding: 0;
float: left;
}
#map { width: 100%; height:500px;}
</style>
<script>
var map;
function init() {
var hash = window.location.hash.substr(1);
hash = hash.split(";");
var initialTree = getWindow("tree", hash);
var northEastLat = getWindow("northEastLat", hash) || '';
var northEastLon = getWindow("northEastLon", hash);
var southWestLat = getWindow("southWestLat", hash);
var southWestLon = getWindow("southWestLon", hash);
// initiate leaflet map
map = new L.Map('map', {
center: [43.0667,-89.4000],
zoom: 12
});
map.on('moveend', function(e) {
setWindowBounds(map.getBounds());
setWindowZoom(map.getZoom());
});
if (northEastLon && northEastLat && southWestLon && southWestLat) {
map.fitBounds([
[southWestLat,southWestLon],
[northEastLat,northEastLon]
]);
}
L.tileLayer('http://{s}.basemaps.cartocdn.com/light_all/{z}/{x}/{y}.png', {
attribution: 'MapBox'
}).addTo(map);
var layerUrl = 'https://dkan.cartodb.com/u/dkan-admin/api/v2/viz/6f588616-d19d-11e4-a931-7054d21a95e5/viz.json';
var sublayers = [];
cartodb.createLayer(map, layerUrl)
.addTo(map)
.on('done', function(layer) {
// change the query for the first layer
if (initialTree) {
$("h2.tree-type").text(initialTree);
stats(initialTree);
var subLayerOptions = {
sql: "SELECT * FROM madison_trees WHERE species = '" + safeTree(initialTree) + "'",
}
}
else {
var subLayerOptions = {
sql: "SELECT * FROM madison_trees ",
}
}
var sublayer = layer.getSubLayer(0);
sublayer.set(subLayerOptions);
sublayers.push(sublayer);
}).on('error', function() {
//log the error
});
function updateQuery(tree) {
sublayers[0].set({
sql: "SELECT * FROM madison_trees WHERE species = '" + safeTree(tree) + "'",
});
$("h2.tree-type").text(tree);
}
var page = 0;
function search() {
var sql = cartodb.SQL({ user: 'dkan-admin' });
sql.execute("SELECT DISTINCT species FROM madison_trees ORDER BY species ASC").done(function(data) {
items = [];
$.each(data.rows, function(key, value) {
items.push(value.species);
$('#search-select')
.append($("<option></option>")
.attr("value",key)
.text(value.species));
});
$("#search-select").trigger("chosen:updated");
});
}
function safeTree(tree) {
var split = tree.split("'");
var treeQuery = tree;
if (split[1]) {
treeQuery = split[0] + "''" + split[1] + "''";
}
return treeQuery;
}
function stats(tree) {
var sql = cartodb.SQL({ user: 'dkan-admin' });
sql.execute("SELECT count(species) as count FROM madison_trees WHERE species = '" + safeTree(tree) + "'").done(function(data) {
treeCount = data.rows[0].count;
$("#tree-count").text(treeCount);
$(".tree-name").text(tree);
sql.execute("SELECT diameter_at_4_5_ft_in as diameter FROM madison_trees WHERE species = '" + safeTree(tree) + "'").done(function(data) {
var total = 0;
var largest = 0;
var smallest = 100;
$.each(data.rows, function(key, value) {
total = total + value.diameter;
if (value.diameter > largest) {
largest = value.diameter;
}
if (value.diameter < smallest) {
smallest = value.diameter;
}
});
var avg = total / treeCount;
$("#avg-diameter").text(avg);
$("#large-diameter").text(largest);
$("#small-diameter").text(smallest);
});
});
}
function graph(page) {
var sql = cartodb.SQL({ user: 'dkan-admin' });
sql.execute("SELECT species, count(species) as count FROM madison_trees group by (species) order by count desc LIMIT 10 OFFSET " + page + "").done(function(data) {
var count = [];
var species = [];
var treeData = [{
key: "Number of Trees",
values: []
}];
var values = []
for (i in data.rows) {
values.push({label: data.rows[i].species, value: data.rows[i].count})
}
var treeData = [{
key: "Number of Trees",
values: values
}];
nv.addGraph(function() {
var chart = nv.models.discreteBarChart()
.x(function(d) { return d.label }) //Specify the data accessors.
.y(function(d) { return d.value })
.staggerLabels(true)
.tooltips(false)
.showValues(true)
.transitionDuration(350)
;
if (page > 1) {
chart.color(['#8ca38b'])
}
chart.yAxis
.tickFormat(d3.format(',.0f'));
chart
.valueFormat(d3.format(',.0f'));
d3.select('#chart svg')
.datum(treeData)
.call(chart);
nv.utils.windowResize(chart.update);
d3.selectAll("g rect")
.on("mouseover", function(d){
updateQuery(d.label);
stats(d.label);
setWindowTree(d.label);
})
.on("click", function(d){
//alert(d.label);
});
return chart;
});
})
}
function setWindow(str, windowItem) {
var hash = window.location.hash.substr(1);
hash = hash.split(";");
var alreadySet = false;
// Replace an existing value of the same kind.
$.each(hash, function(i, item) {
item = item.split(":");
if (item[0] == str) {
hash[i] = str + ":" + windowItem;
alreadySet = true;
}
});
// Rejoin hash if overridden.
if (hash instanceof Array && hash[0] && alreadySet) {
hash = hash.join(";");
}
// Add to existing if hash has items but value doesn't already exist.
else if (!alreadySet && hash[0]) {
hash = hash.join(";") + ";" + str + ":" + windowItem;
}
else {
hash = str + ":" + windowItem;
}
window.location.hash = hash;
}
function setWindowTree(tree) {
setWindow("tree", tree);
}
function setWindowZoom(zoom) {
setWindow("zoom", zoom);
}
function setWindowBounds(bounds) {
setWindow("northEastLat", bounds._northEast.lat);
setWindow("northEastLon", bounds._northEast.lng);
setWindow("southWestLat", bounds._southWest.lat);
setWindow("southWestLon", bounds._southWest.lng);
}
function getWindowBounds(hash) {
hash = hash.split(";");
}
function getWindow(str, windowItem) {
var item = "";
$.each(hash, function(index, value) {
value = value.split(":");
if (value[0] == str) {
item = value[1];
return false;
}
});
return item;
}
function getWindowTree(hash) {
getWindow("tree", hash);
}
graph(page);
search();
$('#tabs').on('shown.bs.tab', function () {
$(".chosen-select").chosen();
$(".chosen-select").chosen().change(function() {
var num = +$(this).val();
setWindowTree(items[num]);
updateQuery(items[num]);
stats(items[num]);
});
});
$("a.next").click(function() {
page = page + 10;
graph(page);
});
$("a.prev").click(function() {
page = page - 10;
graph(page);
});
}
$('#tabs2').tab();
</script>
</head>
<body onload="init()">
<div class="container"><div class="row">
<h1>Trees of Madison</h1>
<div class="well well-sm">
Hover over a tree species or use the search to see those trees on the map below.
</div>
<ul id="tabs" class="nav nav-tabs" data-tabs="tabs">
<li class="active"><a href="#population" data-toggle="tab">Graph</a></li>
<li><a href="#search" data-toggle="tab">Search</a></li>
</ul>
<div id="my-tab-content" class="tab-content">
<div class="tab-pane" id="search">
<div class="container">
<div class="row">
<br>
<p class="lead">
Select a tree species:
</p>
<select class="chosen-select" id="search-select">
<option value=""></option>
<option value="United States">United States</option>
</select>
</div>
</div>
</div>
<div class="tab-pane active" id="population">
<div id="chart-container">
<br>
<p class="lead">Hover a tree species:</p>
<nav>
<ul class="pagination">
<li>
<a class="prev" href="#" aria-label="Previous">
<span aria-hidden="true">«</span>
</a>
</li>
<li>
<a class="next" href="#" aria-label="Next">
<span aria-hidden="true">»</span>
</a>
</li>
</ul>
</nav>
<div id="chart"><svg></svg></div>
<br>
Number of trees by species in Madison.
</div>
</div>
<br>
<h2 class="tree-type">All Trees</h2>
<ul id="tabs" class="nav nav-tabs" data-tabs="tabs">
<li class="active"><a href="#map-tab" data-toggle="tab">Map</a></li>
<li><a href="#stats" data-toggle="tab">Stats</a></li>
</ul>
<div class="tab-content">
<div class="tab-pane active" id="map-tab">
<div id="map"></div>
</div>
<div class="tab-pane" id="stats">
<p>
<h4>Total number of <span class="tree-name">tree<span>s</h4>
<div id="tree-count">Select a tree.</div>
<h4>Average Diameter</h4>
<div id="avg-diameter">Select a tree.</div>
<h4>Largest Diameter</h4>
<div id="large-diameter">Select a tree.</div>
<h4>Smallest Diameter</h4>
<div id="small-diameter">Select a tree.</div>
</div>
</div>
<h2>About</h2>
<div class="well well-sm">
The following visualization is built with data provided by the City of Madison. See <a href="https://dkan.cartodb.com/u/dkan-admin/viz/6f588616-d19d-11e4-a931-7054d21a95e5/map">original data</a>. These tree counts are only on public property and do not include some parks or trees on private land.
</div>
</div></div>
<script>
</script>
</body>
</html>