Raster Source

Demonstrates pixelwise operations with a raster source.

This example uses a ol.source.Raster 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.

In this case, a single tiled source of imagery is used as input. For each pixel, the Triangular Greenness Index (TGI) 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).

raster, pixel

<!DOCTYPE html>
<html>
<head>
<title>Raster Source</title>
<script src="https://code.jquery.com/jquery-1.11.2.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/ol3/3.7.0/ol.css" type="text/css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/ol3/3.7.0/ol.js"></script>
<script src="http://d3js.org/d3.v3.min.js"></script>
<link rel="stylesheet" href="raster.css">
<style>
.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;
}

</style>
</head>
<body>
<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>
<script>
// NOCOMPILE
// this example uses d3 for which we don't have an externs file.
var minTgi = 0;
var maxTgi = 25;

function tgi(pixels, data) {
  var pixel = pixels[0];
  var r = pixel[0] / 255;
  var g = pixel[1] / 255;
  var b = pixel[2] / 255;
  var value = (120 * (r - b) - (190 * (r - g))) / 2;
  pixel[0] = value;
  return pixels;
}

function summarize(pixels, data) {
  var value = Math.floor(pixels[0][0]);
  var counts = data.counts;
  if (value >= counts.min && value < counts.max) {
    counts.values[value - counts.min] += 1;
  }
  return pixels;
}

function color(pixels, data) {
  var pixel = pixels[0];
  var value = pixel[0];
  if (value > data.threshold) {
    pixel[0] = 0;
    pixel[1] = 255;
    pixel[2] = 0;
    pixel[3] = 128;
  } else {
    pixel[3] = 0;
  }
  return pixels;
}

var bing = new ol.source.BingMaps({
  key: 'Ak-dzM4wZjSqTlzveKz5u0d4IQ4bRzVI309GxmkgSVr1ewS6iPSrOvOKhA-CJlm3',
  imagerySet: 'Aerial'
});

var raster = new ol.source.Raster({
  sources: [bing],
  operations: [tgi, summarize, color]
});
raster.set('threshold', 10);

function createCounts(min, max) {
  var len = max - min;
  var values = new Array(len);
  for (var i = 0; i < len; ++i) {
    values[i] = 0;
  }
  return {
    min: min,
    max: max,
    values: values
  };
}

raster.on('beforeoperations', function(event) {
  event.data.counts = createCounts(minTgi, maxTgi);
  event.data.threshold = raster.get('threshold');
});

raster.on('afteroperations', 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: 'map',
  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('#plot').append('svg')
    .attr('width', barWidth * (maxTgi - minTgi))
    .attr('height', plotHeight);

var chartRect = chart[0][0].getBoundingClientRect();

var tip = d3.select(document.body).append('div')
    .attr('class', 'tip');

function plot(resolution, counts, threshold) {
  var yScale = d3.scale.linear()
      .domain([0, d3.max(counts.values)])
      .range([0, plotHeight]);

  var bar = chart.selectAll('rect').data(counts.values);

  bar.enter().append('rect');

  bar.attr('class', function(value, index) {
    return 'bar' + (index - counts.min >= threshold ? ' selected' : '');
  })
  .attr('width', barWidth - 2);

  bar.transition()
      .attr('transform', function(value, index) {
        return 'translate(' + (index * barWidth) + ', ' +
            (plotHeight - yScale(value)) + ')';
      })
      .attr('height', yScale);

  bar.on('mousemove', function() {
    var old = threshold;
    threshold = counts.min +
        Math.floor((d3.event.pageX - chartRect.left) / barWidth);
    if (old !== threshold) {
      raster.set('threshold', threshold);
      raster.changed();
    }
  });

  bar.on('mouseover', function() {
    var index = Math.floor((d3.event.pageX - chartRect.left) / barWidth);
    var area = 0;
    for (var i = counts.values.length - 1; i >= index; --i) {
      area += resolution * resolution * counts.values[i];
    }
    tip.html(message(index + counts.min, area));
    tip.style('display', 'block');
    tip.transition().style({
      left: (chartRect.left + (index * barWidth) + (barWidth / 2)) + 'px',
      top: (d3.event.y - 60) + 'px',
      opacity: 1
    });
  });

  bar.on('mouseout', function() {
    tip.transition().style('opacity', 0).each('end', function() {
      tip.style('display', 'none');
    });
  });

}

function message(value, area) {
  var acres = (area / 4046.86).toFixed(0).replace(/\B(?=(\d{3})+(?!\d))/g, ',');
  return acres + ' acres at<br>' + value + ' TGI or above';
}

</script>
</body>
</html>