-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtile.html
More file actions
85 lines (51 loc) · 5.82 KB
/
Copy pathtile.html
File metadata and controls
85 lines (51 loc) · 5.82 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Bokeh Plot</title>
<link rel="stylesheet" href="https://cdn.pydata.org/bokeh/release/bokeh-1.0.1.min.css" type="text/css" />
<script type="text/javascript" src="https://cdn.pydata.org/bokeh/release/bokeh-1.0.1.min.js"></script>
<script type="text/javascript">
Bokeh.set_log_level("info");
</script>
</head>
<body>
<div class="bk-root" id="2e1f0b40-10b5-4581-b1e1-1bb9d7e32251"></div>
<script type="application/json" id="1398">
{"c706f9d2-6091-4377-bd4a-6e3c1d77d108":{"roots":{"references":[{"attributes":{"formatter":{"id":"1277","type":"MercatorTickFormatter"},"plot":{"id":"1256","subtype":"Figure","type":"Plot"},"ticker":{"id":"1275","type":"MercatorTicker"}},"id":"1274","type":"MercatorAxis"},{"attributes":{"dimension":"lon"},"id":"1266","type":"MercatorTicker"},{"attributes":{"dimension":1,"plot":{"id":"1256","subtype":"Figure","type":"Plot"},"ticker":{"id":"1275","type":"MercatorTicker"}},"id":"1282","type":"Grid"},{"attributes":{"plot":{"id":"1256","subtype":"Figure","type":"Plot"},"ticker":{"id":"1266","type":"MercatorTicker"}},"id":"1273","type":"Grid"},{"attributes":{},"id":"1261","type":"LinearScale"},{"attributes":{},"id":"1288","type":"HelpTool"},{"attributes":{"dimension":"lon"},"id":"1268","type":"MercatorTickFormatter"},{"attributes":{"attribution":"&copy; <a href=\"https://www.openstreetmap.org/copyright\">OpenStreetMap</a> contributors,&copy; <a href=\"https://cartodb.com/attributions\">CartoDB</a>","url":"https://tiles.basemaps.cartocdn.com/light_all/{z}/{x}/{y}.png"},"id":"1002","type":"WMTSTileSource"},{"attributes":{},"id":"1283","type":"PanTool"},{"attributes":{},"id":"1287","type":"ResetTool"},{"attributes":{},"id":"1284","type":"WheelZoomTool"},{"attributes":{"dimension":"lat"},"id":"1277","type":"MercatorTickFormatter"},{"attributes":{"callback":null,"end":7000000,"start":-1000000},"id":"1259","type":"Range1d"},{"attributes":{"overlay":{"id":"1291","type":"BoxAnnotation"}},"id":"1285","type":"BoxZoomTool"},{"attributes":{},"id":"1263","type":"LinearScale"},{"attributes":{"dimension":"lat"},"id":"1275","type":"MercatorTicker"},{"attributes":{"formatter":{"id":"1268","type":"MercatorTickFormatter"},"plot":{"id":"1256","subtype":"Figure","type":"Plot"},"ticker":{"id":"1266","type":"MercatorTicker"}},"id":"1265","type":"MercatorAxis"},{"attributes":{},"id":"1286","type":"SaveTool"},{"attributes":{"plot":null,"text":""},"id":"1301","type":"Title"},{"attributes":{"active_drag":"auto","active_inspect":"auto","active_multi":null,"active_scroll":"auto","active_tap":"auto","tools":[{"id":"1283","type":"PanTool"},{"id":"1284","type":"WheelZoomTool"},{"id":"1285","type":"BoxZoomTool"},{"id":"1286","type":"SaveTool"},{"id":"1287","type":"ResetTool"},{"id":"1288","type":"HelpTool"}]},"id":"1289","type":"Toolbar"},{"attributes":{"below":[{"id":"1265","type":"MercatorAxis"}],"left":[{"id":"1274","type":"MercatorAxis"}],"renderers":[{"id":"1265","type":"MercatorAxis"},{"id":"1273","type":"Grid"},{"id":"1274","type":"MercatorAxis"},{"id":"1282","type":"Grid"},{"id":"1291","type":"BoxAnnotation"},{"id":"1298","type":"TileRenderer"}],"title":{"id":"1301","type":"Title"},"toolbar":{"id":"1289","type":"Toolbar"},"x_range":{"id":"1257","type":"Range1d"},"x_scale":{"id":"1261","type":"LinearScale"},"y_range":{"id":"1259","type":"Range1d"},"y_scale":{"id":"1263","type":"LinearScale"}},"id":"1256","subtype":"Figure","type":"Plot"},{"attributes":{"callback":null,"end":6000000,"start":-2000000},"id":"1257","type":"Range1d"},{"attributes":{"tile_source":{"id":"1002","type":"WMTSTileSource"}},"id":"1298","type":"TileRenderer"},{"attributes":{"bottom_units":"screen","fill_alpha":{"value":0.5},"fill_color":{"value":"lightgrey"},"left_units":"screen","level":"overlay","line_alpha":{"value":1.0},"line_color":{"value":"black"},"line_dash":[4,4],"line_width":{"value":2},"plot":null,"render_mode":"css","right_units":"screen","top_units":"screen"},"id":"1291","type":"BoxAnnotation"}],"root_ids":["1256"]},"title":"Bokeh Application","version":"1.0.1"}}
</script>
<script type="text/javascript">
(function() {
var fn = function() {
Bokeh.safely(function() {
(function(root) {
function embed_document(root) {
var docs_json = document.getElementById('1398').textContent;
var render_items = [{"docid":"c706f9d2-6091-4377-bd4a-6e3c1d77d108","roots":{"1256":"2e1f0b40-10b5-4581-b1e1-1bb9d7e32251"}}];
root.Bokeh.embed.embed_items(docs_json, render_items);
}
if (root.Bokeh !== undefined) {
embed_document(root);
} else {
var attempts = 0;
var timer = setInterval(function(root) {
if (root.Bokeh !== undefined) {
embed_document(root);
clearInterval(timer);
}
attempts++;
if (attempts > 100) {
console.log("Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing");
clearInterval(timer);
}
}, 10, root)
}
})(window);
});
};
if (document.readyState != "loading") fn();
else document.addEventListener("DOMContentLoaded", fn);
})();
</script>
</body>
</html>