Files
openlayers/vectortile/examples/raster.html
Andreas Hocevar 1c53a46d7d Update vectortiles
2015-09-13 15:36:23 +09:00

568 lines
17 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<meta name="viewport" content="initial-scale=1.0, user-scalable=no, width=device-width">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css" type="text/css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" type="text/css">
<link rel="stylesheet" href="./resources/prism/prism.css" type="text/css">
<link rel="stylesheet" href="../css/ol.css" type="text/css">
<link rel="stylesheet" href="./resources/layout.css" type="text/css">
<script src="http://d3js.org/d3.v3.min.js"></script>
<link rel="stylesheet" href="raster.css">
<link rel="stylesheet" href="raster.css">
<script src="./resources/zeroclipboard/ZeroClipboard.min.js"></script>
<title>Raster Source</title>
</head>
<body>
<header class="navbar" role="navigation">
<div class="container" id="navbar-inner-container">
<a class="navbar-brand" href="./"><img src="./resources/logo-70x70.png">&nbsp;OpenLayers 3 Examples</a>
</div>
</header>
<div class="container-fluid">
<div class="row-fluid">
<div class="span12 rel">
<div id="map" class="map"></div>
<div id="plot"></div>
</div>
</div>
<div class="row-fluid">
<div class="span12">
<h4 id="title">Raster Source</h4>
<p id="shortdesc">Demonstrates pixelwise operations with a raster source.</p>
<div id="docs"><p>
This example uses a <code>ol.source.Raster</code> to generate data
based on another source. The raster source accepts any number of
input sources (tile or image based) and runs a pipeline of
operations on the input pixels. The return from the final
operation is used as the data for the output source.
</p> <p>
In this case, a single tiled source of imagery is used as input.
For each pixel, the Vegetation Greenness Index
(<a href="http://www.tandfonline.com/doi/abs/10.1080/10106040108542184#.Vb90ITBViko">VGI</a>)
is calculated from the input pixels. A second operation colors
those pixels based on a threshold value (values above the
threshold are green and those below are transparent).
</p>
</div>
<div id="tags">raster, pixel</div>
<div id="api-links">Related API documentation: <ul class="inline"><li><a href="../apidoc/ol.Map.html" title="API documentation for ol.Map">ol.Map</a></li>,<li><a href="../apidoc/ol.View.html" title="API documentation for ol.View">ol.View</a></li>,<li><a href="../apidoc/ol.layer.Image.html" title="API documentation for ol.layer.Image">ol.layer.Image</a></li>,<li><a href="../apidoc/ol.layer.Tile.html" title="API documentation for ol.layer.Tile">ol.layer.Tile</a></li>,<li><a href="../apidoc/ol.source.BingMaps.html" title="API documentation for ol.source.BingMaps">ol.source.BingMaps</a></li>,<li><a href="../apidoc/ol.source.Raster.html" title="API documentation for ol.source.Raster">ol.source.Raster</a></li></ul></div>
</div>
</div>
<div class="row-fluid">
<div id="source-controls">
<a id="copy-button"><i class="fa fa-clipboard"></i> Copy</a>
<a id="jsfiddle-button"><i class="fa fa-jsfiddle"></i> Edit</a>
</div>
<form method="POST" id="jsfiddle-form" target="_blank" action="http://jsfiddle.net/api/post/jquery/1.11.0/">
<textarea class="hidden" name="js">// NOCOMPILE
// this example uses d3 for which we don&#x27;t have an externs file.
var minVgi = 0;
var maxVgi = 0.25;
var bins = 10;
/**
* Calculate the Vegetation Greenness Index (VGI) from an input pixel. This
* is a rough estimate assuming that pixel values correspond to reflectance.
* @param {ol.raster.Pixel} pixel An array of [R, G, B, A] values.
* @return {number} The VGI value for the given pixel.
*/
function vgi(pixel) {
var r = pixel[0] / 255;
var g = pixel[1] / 255;
var b = pixel[2] / 255;
return (2 * g - r - b) / (2 * g + r + b);
}
/**
* Summarize values for a histogram.
* @param {numver} value A VGI value.
* @param {Object} counts An object for keeping track of VGI counts.
*/
function summarize(value, counts) {
var min = counts.min;
var max = counts.max;
var num = counts.values.length;
if (value &lt; min) {
// do nothing
} else if (value &gt;= max) {
counts.values[num - 1] += 1;
} else {
var index = Math.floor((value - min) / counts.delta);
counts.values[index] += 1;
}
}
/**
* Use aerial imagery as the input data for the raster source.
*/
var bing = new ol.source.BingMaps({
key: &#x27;Ak-dzM4wZjSqTlzveKz5u0d4IQ4bRzVI309GxmkgSVr1ewS6iPSrOvOKhA-CJlm3&#x27;,
imagerySet: &#x27;Aerial&#x27;
});
/**
* Create a raster source where pixels with VGI values above a threshold will
* be colored green.
*/
var raster = new ol.source.Raster({
sources: [bing],
operation: function(pixels, data) {
var pixel = pixels[0];
var value = vgi(pixel);
summarize(value, data.counts);
if (value &gt;= data.threshold) {
pixel[0] = 0;
pixel[1] = 255;
pixel[2] = 0;
pixel[3] = 128;
} else {
pixel[3] = 0;
}
return pixel;
},
lib: {
vgi: vgi,
summarize: summarize
}
});
raster.set(&#x27;threshold&#x27;, 0.1);
function createCounts(min, max, num) {
var values = new Array(num);
for (var i = 0; i &lt; num; ++i) {
values[i] = 0;
}
return {
min: min,
max: max,
values: values,
delta: (max - min) / num
};
}
raster.on(&#x27;beforeoperations&#x27;, function(event) {
event.data.counts = createCounts(minVgi, maxVgi, bins);
event.data.threshold = raster.get(&#x27;threshold&#x27;);
});
raster.on(&#x27;afteroperations&#x27;, function(event) {
schedulePlot(event.resolution, event.data.counts, event.data.threshold);
});
var map = new ol.Map({
layers: [
new ol.layer.Tile({
source: bing
}),
new ol.layer.Image({
source: raster
})
],
target: &#x27;map&#x27;,
view: new ol.View({
center: [-9651695, 4937351],
zoom: 13,
minZoom: 12,
maxZoom: 19
})
});
var timer = null;
function schedulePlot(resolution, counts, threshold) {
if (timer) {
clearTimeout(timer);
timer = null;
}
timer = setTimeout(plot.bind(null, resolution, counts, threshold), 1000 / 60);
}
var barWidth = 15;
var plotHeight = 150;
var chart = d3.select(&#x27;#plot&#x27;).append(&#x27;svg&#x27;)
.attr(&#x27;width&#x27;, barWidth * bins)
.attr(&#x27;height&#x27;, plotHeight);
var chartRect = chart[0][0].getBoundingClientRect();
var tip = d3.select(document.body).append(&#x27;div&#x27;)
.attr(&#x27;class&#x27;, &#x27;tip&#x27;);
function plot(resolution, counts, threshold) {
var yScale = d3.scale.linear()
.domain([0, d3.max(counts.values)])
.range([0, plotHeight]);
var bar = chart.selectAll(&#x27;rect&#x27;).data(counts.values);
bar.enter().append(&#x27;rect&#x27;);
bar.attr(&#x27;class&#x27;, function(count, index) {
var value = counts.min + (index * counts.delta);
return &#x27;bar&#x27; + (value &gt;= threshold ? &#x27; selected&#x27; : &#x27;&#x27;);
})
.attr(&#x27;width&#x27;, barWidth - 2);
bar.transition().attr(&#x27;transform&#x27;, function(value, index) {
return &#x27;translate(&#x27; + (index * barWidth) + &#x27;, &#x27; +
(plotHeight - yScale(value)) + &#x27;)&#x27;;
})
.attr(&#x27;height&#x27;, yScale);
bar.on(&#x27;mousemove&#x27;, function(count, index) {
var threshold = counts.min + (index * counts.delta);
if (raster.get(&#x27;threshold&#x27;) !== threshold) {
raster.set(&#x27;threshold&#x27;, threshold);
raster.changed();
}
});
bar.on(&#x27;mouseover&#x27;, function(count, index) {
var area = 0;
for (var i = counts.values.length - 1; i &gt;= index; --i) {
area += resolution * resolution * counts.values[i];
}
tip.html(message(counts.min + (index * counts.delta), area));
tip.style(&#x27;display&#x27;, &#x27;block&#x27;);
tip.transition().style({
left: (chartRect.left + (index * barWidth) + (barWidth / 2)) + &#x27;px&#x27;,
top: (d3.event.y - 60) + &#x27;px&#x27;,
opacity: 1
});
});
bar.on(&#x27;mouseout&#x27;, function() {
tip.transition().style(&#x27;opacity&#x27;, 0).each(&#x27;end&#x27;, function() {
tip.style(&#x27;display&#x27;, &#x27;none&#x27;);
});
});
}
function message(value, area) {
var acres = (area / 4046.86).toFixed(0).replace(/\B(?=(\d{3})+(?!\d))/g, &#x27;,&#x27;);
return acres + &#x27; acres at&lt;br&gt;&#x27; + value.toFixed(2) + &#x27; VGI or above&#x27;;
}
</textarea>
<textarea class="hidden" name="css">.rel {
position: relative
}
#plot {
pointer-events: none;
position: absolute;
bottom: 10px;
left: 10px;
}
.bar {
pointer-events: auto;
fill: #AFAFB9;
}
.bar.selected {
fill: green;
}
.tip {
position: absolute;
background: black;
color: white;
padding: 6px;
font-size: 12px;
border-radius: 4px;
margin-bottom: 10px;
display: none;
opacity: 0;
}
</textarea>
<textarea class="hidden" name="html">&lt;div class=&quot;row-fluid&quot;&gt;
&lt;div class=&quot;span12 rel&quot;&gt;
&lt;div id=&quot;map&quot; class=&quot;map&quot;&gt;&lt;/div&gt;
&lt;div id=&quot;plot&quot;&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
</textarea>
<input type="hidden" name="wrap" value="l">
<input type="hidden" name="resources" value="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css,https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js,http://openlayers.org/en/v3.9.0/css/ol.css,http://openlayers.org/en/v3.9.0/build/ol.js">
</form>
<pre><code id="example-source" class="language-markup">&lt;!DOCTYPE html&gt;
&lt;html&gt;
&lt;head&gt;
&lt;title&gt;Raster Source&lt;/title&gt;
&lt;script src="https://code.jquery.com/jquery-1.11.2.min.js"&gt;&lt;/script&gt;
&lt;link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css"&gt;
&lt;script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"&gt;&lt;/script&gt;
&lt;link rel="stylesheet" href="http://openlayers.org/en/v3.9.0/css/ol.css" type="text/css"&gt;
&lt;script src="http://openlayers.org/en/v3.9.0/build/ol.js"&gt;&lt;/script&gt;
&lt;script src=&quot;http://d3js.org/d3.v3.min.js&quot;&gt;&lt;/script&gt;
&lt;link rel=&quot;stylesheet&quot; href=&quot;raster.css&quot;&gt;
&lt;style&gt;
.rel {
position: relative
}
#plot {
pointer-events: none;
position: absolute;
bottom: 10px;
left: 10px;
}
.bar {
pointer-events: auto;
fill: #AFAFB9;
}
.bar.selected {
fill: green;
}
.tip {
position: absolute;
background: black;
color: white;
padding: 6px;
font-size: 12px;
border-radius: 4px;
margin-bottom: 10px;
display: none;
opacity: 0;
}
&lt;/style&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;div class="container-fluid"&gt;
&lt;div class=&quot;row-fluid&quot;&gt;
&lt;div class=&quot;span12 rel&quot;&gt;
&lt;div id=&quot;map&quot; class=&quot;map&quot;&gt;&lt;/div&gt;
&lt;div id=&quot;plot&quot;&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;script&gt;
// NOCOMPILE
// this example uses d3 for which we don&#x27;t have an externs file.
var minVgi = 0;
var maxVgi = 0.25;
var bins = 10;
/**
* Calculate the Vegetation Greenness Index (VGI) from an input pixel. This
* is a rough estimate assuming that pixel values correspond to reflectance.
* @param {ol.raster.Pixel} pixel An array of [R, G, B, A] values.
* @return {number} The VGI value for the given pixel.
*/
function vgi(pixel) {
var r = pixel[0] / 255;
var g = pixel[1] / 255;
var b = pixel[2] / 255;
return (2 * g - r - b) / (2 * g + r + b);
}
/**
* Summarize values for a histogram.
* @param {numver} value A VGI value.
* @param {Object} counts An object for keeping track of VGI counts.
*/
function summarize(value, counts) {
var min = counts.min;
var max = counts.max;
var num = counts.values.length;
if (value &lt; min) {
// do nothing
} else if (value &gt;= max) {
counts.values[num - 1] += 1;
} else {
var index = Math.floor((value - min) / counts.delta);
counts.values[index] += 1;
}
}
/**
* Use aerial imagery as the input data for the raster source.
*/
var bing = new ol.source.BingMaps({
key: &#x27;Ak-dzM4wZjSqTlzveKz5u0d4IQ4bRzVI309GxmkgSVr1ewS6iPSrOvOKhA-CJlm3&#x27;,
imagerySet: &#x27;Aerial&#x27;
});
/**
* Create a raster source where pixels with VGI values above a threshold will
* be colored green.
*/
var raster = new ol.source.Raster({
sources: [bing],
operation: function(pixels, data) {
var pixel = pixels[0];
var value = vgi(pixel);
summarize(value, data.counts);
if (value &gt;= data.threshold) {
pixel[0] = 0;
pixel[1] = 255;
pixel[2] = 0;
pixel[3] = 128;
} else {
pixel[3] = 0;
}
return pixel;
},
lib: {
vgi: vgi,
summarize: summarize
}
});
raster.set(&#x27;threshold&#x27;, 0.1);
function createCounts(min, max, num) {
var values = new Array(num);
for (var i = 0; i &lt; num; ++i) {
values[i] = 0;
}
return {
min: min,
max: max,
values: values,
delta: (max - min) / num
};
}
raster.on(&#x27;beforeoperations&#x27;, function(event) {
event.data.counts = createCounts(minVgi, maxVgi, bins);
event.data.threshold = raster.get(&#x27;threshold&#x27;);
});
raster.on(&#x27;afteroperations&#x27;, function(event) {
schedulePlot(event.resolution, event.data.counts, event.data.threshold);
});
var map = new ol.Map({
layers: [
new ol.layer.Tile({
source: bing
}),
new ol.layer.Image({
source: raster
})
],
target: &#x27;map&#x27;,
view: new ol.View({
center: [-9651695, 4937351],
zoom: 13,
minZoom: 12,
maxZoom: 19
})
});
var timer = null;
function schedulePlot(resolution, counts, threshold) {
if (timer) {
clearTimeout(timer);
timer = null;
}
timer = setTimeout(plot.bind(null, resolution, counts, threshold), 1000 / 60);
}
var barWidth = 15;
var plotHeight = 150;
var chart = d3.select(&#x27;#plot&#x27;).append(&#x27;svg&#x27;)
.attr(&#x27;width&#x27;, barWidth * bins)
.attr(&#x27;height&#x27;, plotHeight);
var chartRect = chart[0][0].getBoundingClientRect();
var tip = d3.select(document.body).append(&#x27;div&#x27;)
.attr(&#x27;class&#x27;, &#x27;tip&#x27;);
function plot(resolution, counts, threshold) {
var yScale = d3.scale.linear()
.domain([0, d3.max(counts.values)])
.range([0, plotHeight]);
var bar = chart.selectAll(&#x27;rect&#x27;).data(counts.values);
bar.enter().append(&#x27;rect&#x27;);
bar.attr(&#x27;class&#x27;, function(count, index) {
var value = counts.min + (index * counts.delta);
return &#x27;bar&#x27; + (value &gt;= threshold ? &#x27; selected&#x27; : &#x27;&#x27;);
})
.attr(&#x27;width&#x27;, barWidth - 2);
bar.transition().attr(&#x27;transform&#x27;, function(value, index) {
return &#x27;translate(&#x27; + (index * barWidth) + &#x27;, &#x27; +
(plotHeight - yScale(value)) + &#x27;)&#x27;;
})
.attr(&#x27;height&#x27;, yScale);
bar.on(&#x27;mousemove&#x27;, function(count, index) {
var threshold = counts.min + (index * counts.delta);
if (raster.get(&#x27;threshold&#x27;) !== threshold) {
raster.set(&#x27;threshold&#x27;, threshold);
raster.changed();
}
});
bar.on(&#x27;mouseover&#x27;, function(count, index) {
var area = 0;
for (var i = counts.values.length - 1; i &gt;= index; --i) {
area += resolution * resolution * counts.values[i];
}
tip.html(message(counts.min + (index * counts.delta), area));
tip.style(&#x27;display&#x27;, &#x27;block&#x27;);
tip.transition().style({
left: (chartRect.left + (index * barWidth) + (barWidth / 2)) + &#x27;px&#x27;,
top: (d3.event.y - 60) + &#x27;px&#x27;,
opacity: 1
});
});
bar.on(&#x27;mouseout&#x27;, function() {
tip.transition().style(&#x27;opacity&#x27;, 0).each(&#x27;end&#x27;, function() {
tip.style(&#x27;display&#x27;, &#x27;none&#x27;);
});
});
}
function message(value, area) {
var acres = (area / 4046.86).toFixed(0).replace(/\B(?=(\d{3})+(?!\d))/g, &#x27;,&#x27;);
return acres + &#x27; acres at&lt;br&gt;&#x27; + value.toFixed(2) + &#x27; VGI or above&#x27;;
}
&lt;/script&gt;
&lt;/body&gt;
&lt;/html&gt;</code></pre>
</div>
</div>
<script src="https://code.jquery.com/jquery-1.11.2.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<script src="./resources/common.js"></script>
<script src="./resources/prism/prism.min.js"></script>
<script src="loader.js?id=raster"></script>
</body>
</html>