* Replace Math.log2 with ol/math.log2 * TypedArray.from() browser compatibility fallback * listen for input and change events for range
180 lines
5.2 KiB
JavaScript
180 lines
5.2 KiB
JavaScript
import Map from '../src/ol/Map.js';
|
|
import View from '../src/ol/View.js';
|
|
import {Image as ImageLayer, Tile as TileLayer} from '../src/ol/layer.js';
|
|
import {OSM, Raster, XYZ} from '../src/ol/source.js';
|
|
|
|
/**
|
|
* Generates a shaded relief image given elevation data. Uses a 3x3
|
|
* neighborhood for determining slope and aspect.
|
|
* @param {Array<ImageData>} inputs Array of input images.
|
|
* @param {Object} data Data added in the "beforeoperations" event.
|
|
* @return {ImageData} Output image.
|
|
*/
|
|
function shade(inputs, data) {
|
|
const elevationImage = inputs[0];
|
|
const width = elevationImage.width;
|
|
const height = elevationImage.height;
|
|
const elevationData = elevationImage.data;
|
|
const shadeData = new Uint8ClampedArray(elevationData.length);
|
|
const dp = data.resolution * 2;
|
|
const maxX = width - 1;
|
|
const maxY = height - 1;
|
|
const pixel = [0, 0, 0, 0];
|
|
const twoPi = 2 * Math.PI;
|
|
const halfPi = Math.PI / 2;
|
|
const sunEl = (Math.PI * data.sunEl) / 180;
|
|
const sunAz = (Math.PI * data.sunAz) / 180;
|
|
const cosSunEl = Math.cos(sunEl);
|
|
const sinSunEl = Math.sin(sunEl);
|
|
let pixelX,
|
|
pixelY,
|
|
x0,
|
|
x1,
|
|
y0,
|
|
y1,
|
|
offset,
|
|
z0,
|
|
z1,
|
|
dzdx,
|
|
dzdy,
|
|
slope,
|
|
aspect,
|
|
cosIncidence,
|
|
scaled;
|
|
function calculateElevation(pixel) {
|
|
// The method used to extract elevations from the DEM.
|
|
// In this case the format used is
|
|
// red + green * 2 + blue * 3
|
|
//
|
|
// Other frequently used methods include the Mapbox format
|
|
// (red * 256 * 256 + green * 256 + blue) * 0.1 - 10000
|
|
// and the Terrarium format
|
|
// (red * 256 + green + blue / 256) - 32768
|
|
//
|
|
return pixel[0] + pixel[1] * 2 + pixel[2] * 3;
|
|
}
|
|
for (pixelY = 0; pixelY <= maxY; ++pixelY) {
|
|
y0 = pixelY === 0 ? 0 : pixelY - 1;
|
|
y1 = pixelY === maxY ? maxY : pixelY + 1;
|
|
for (pixelX = 0; pixelX <= maxX; ++pixelX) {
|
|
x0 = pixelX === 0 ? 0 : pixelX - 1;
|
|
x1 = pixelX === maxX ? maxX : pixelX + 1;
|
|
|
|
// determine elevation for (x0, pixelY)
|
|
offset = (pixelY * width + x0) * 4;
|
|
pixel[0] = elevationData[offset];
|
|
pixel[1] = elevationData[offset + 1];
|
|
pixel[2] = elevationData[offset + 2];
|
|
pixel[3] = elevationData[offset + 3];
|
|
z0 = data.vert * calculateElevation(pixel);
|
|
|
|
// determine elevation for (x1, pixelY)
|
|
offset = (pixelY * width + x1) * 4;
|
|
pixel[0] = elevationData[offset];
|
|
pixel[1] = elevationData[offset + 1];
|
|
pixel[2] = elevationData[offset + 2];
|
|
pixel[3] = elevationData[offset + 3];
|
|
z1 = data.vert * calculateElevation(pixel);
|
|
|
|
dzdx = (z1 - z0) / dp;
|
|
|
|
// determine elevation for (pixelX, y0)
|
|
offset = (y0 * width + pixelX) * 4;
|
|
pixel[0] = elevationData[offset];
|
|
pixel[1] = elevationData[offset + 1];
|
|
pixel[2] = elevationData[offset + 2];
|
|
pixel[3] = elevationData[offset + 3];
|
|
z0 = data.vert * calculateElevation(pixel);
|
|
|
|
// determine elevation for (pixelX, y1)
|
|
offset = (y1 * width + pixelX) * 4;
|
|
pixel[0] = elevationData[offset];
|
|
pixel[1] = elevationData[offset + 1];
|
|
pixel[2] = elevationData[offset + 2];
|
|
pixel[3] = elevationData[offset + 3];
|
|
z1 = data.vert * calculateElevation(pixel);
|
|
|
|
dzdy = (z1 - z0) / dp;
|
|
|
|
slope = Math.atan(Math.sqrt(dzdx * dzdx + dzdy * dzdy));
|
|
|
|
aspect = Math.atan2(dzdy, -dzdx);
|
|
if (aspect < 0) {
|
|
aspect = halfPi - aspect;
|
|
} else if (aspect > halfPi) {
|
|
aspect = twoPi - aspect + halfPi;
|
|
} else {
|
|
aspect = halfPi - aspect;
|
|
}
|
|
|
|
cosIncidence =
|
|
sinSunEl * Math.cos(slope) +
|
|
cosSunEl * Math.sin(slope) * Math.cos(sunAz - aspect);
|
|
|
|
offset = (pixelY * width + pixelX) * 4;
|
|
scaled = 255 * cosIncidence;
|
|
shadeData[offset] = scaled;
|
|
shadeData[offset + 1] = scaled;
|
|
shadeData[offset + 2] = scaled;
|
|
shadeData[offset + 3] = elevationData[offset + 3];
|
|
}
|
|
}
|
|
|
|
return {data: shadeData, width: width, height: height};
|
|
}
|
|
|
|
const elevation = new XYZ({
|
|
url: 'https://{a-d}.tiles.mapbox.com/v3/aj.sf-dem/{z}/{x}/{y}.png',
|
|
crossOrigin: 'anonymous',
|
|
});
|
|
|
|
const raster = new Raster({
|
|
sources: [elevation],
|
|
operationType: 'image',
|
|
operation: shade,
|
|
});
|
|
|
|
const map = new Map({
|
|
target: 'map',
|
|
layers: [
|
|
new TileLayer({
|
|
source: new OSM(),
|
|
}),
|
|
new ImageLayer({
|
|
opacity: 0.3,
|
|
source: raster,
|
|
}),
|
|
],
|
|
view: new View({
|
|
extent: [-13675026, 4439648, -13580856, 4580292],
|
|
center: [-13615645, 4497969],
|
|
minZoom: 10,
|
|
maxZoom: 16,
|
|
zoom: 13,
|
|
}),
|
|
});
|
|
|
|
const controlIds = ['vert', 'sunEl', 'sunAz'];
|
|
const controls = {};
|
|
controlIds.forEach(function (id) {
|
|
const control = document.getElementById(id);
|
|
const output = document.getElementById(id + 'Out');
|
|
const listener = function () {
|
|
output.innerText = control.value;
|
|
raster.changed();
|
|
};
|
|
control.addEventListener('input', listener);
|
|
control.addEventListener('change', listener);
|
|
output.innerText = control.value;
|
|
controls[id] = control;
|
|
});
|
|
|
|
raster.on('beforeoperations', function (event) {
|
|
// the event.data object will be passed to operations
|
|
const data = event.data;
|
|
data.resolution = event.resolution;
|
|
for (const id in controls) {
|
|
data[id] = Number(controls[id].value);
|
|
}
|
|
});
|