Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
268 changes: 268 additions & 0 deletions lib/abaculus.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,268 @@
/*
Copyright (c) 2016, Mapbox

Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.

THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/


var SphericalMercator = require('@mapbox/sphericalmercator');
var queue = require('d3-queue').queue;
var blend = require('mapnik').blend;
var crypto = require('crypto');

module.exports = abaculus;

function abaculus(arg, callback) {
var z = arg.zoom || 0,
s = arg.scale || 1,
center = arg.center || null,
bbox = arg.bbox || null,
getTile = arg.getTile || null,
format = arg.format || 'png',
quality = arg.quality || null,
limit = arg.limit || 19008,
tileSize = arg.tileSize || 256;

if (!getTile) return callback(new Error('Invalid function for getting tiles'));

if (center) {
// get center coordinates in px from lng,lat
center = abaculus.coordsFromCenter(z, s, center, limit, tileSize);
} else if (bbox) {
// get center coordinates in px from [w,s,e,n] bbox
center = abaculus.coordsFromBbox(z, s, bbox, limit, tileSize);
} else {
return callback(new Error('No coordinates provided.'));
}
// generate list of tile coordinates center
var coords = abaculus.tileList(z, s, center, tileSize);

// get tiles based on coordinate list and stitch them together
abaculus.stitchTiles(coords, format, quality, getTile, callback);
}

abaculus.coordsFromBbox = function(z, s, bbox, limit, tileSize) {
var sm = new SphericalMercator({ size: tileSize * s });
var topRight = sm.px([bbox[2], bbox[3]], z),
bottomLeft = sm.px([bbox[0], bbox[1]], z);
var center = {};
center.w = topRight[0] - bottomLeft[0];
center.h = bottomLeft[1] - topRight[1];

if (center.w <= 0 || center.h <= 0) throw new Error('Incorrect coordinates');

var origin = [topRight[0] - center.w / 2, topRight[1] + center.h / 2];
center.x = origin[0];
center.y = origin[1];
center.w = Math.round(center.w * s);
center.h = Math.round(center.h * s);

if (center.w >= limit || center.h >= limit) throw new Error('Desired image is too large.');
return center;
};

abaculus.coordsFromCenter = function(z, s, center, limit, tileSize) {
var sm = new SphericalMercator({ size: tileSize * s });
var origin = sm.px([center.x, center.y], z);
center.x = origin[0];
center.y = origin[1];
center.w = Math.round(center.w * s);
center.h = Math.round(center.h * s);

if (center.w >= limit || center.h >= limit) throw new Error('Desired image is too large.');
return center;
};

// Generate the zxy and px/py offsets needed for each tile in a static image.
// x, y are center coordinates in pixels
abaculus.tileList = function(z, s, center, tileSize) {
var x = center.x,
y = center.y,
w = center.w,
h = center.h;
var dimensions = {x: w - 1, y: h - 1};
var size = tileSize || 256;
var ts = Math.floor(size * s);

var centerCoordinate = {
column: x / size,
row: y / size,
zoom: z
};

function pointCoordinate(point) {
var coord = {
column: centerCoordinate.column,
row: centerCoordinate.row,
zoom: centerCoordinate.zoom,
};
coord.column += (point.x - w / 2) / ts;
coord.row += (point.y - h / 2) / ts;
return coord;
}

function coordinatePoint(coord) {
// Return an x, y point on the map image for a given coordinate.
if (coord.zoom != z) coord = coord.zoomTo(z);
return {
x: w / 2 + ts * (coord.column - centerCoordinate.column),
y: h / 2 + ts * (coord.row - centerCoordinate.row)
};
}

function floorObj(obj) {
return {
row: Math.floor(obj.row),
column: Math.floor(obj.column),
zoom: obj.zoom
};
}

var maxTilesInRow = Math.pow(2, z);
var tl = floorObj(pointCoordinate({x: 0, y:0}));
var br = floorObj(pointCoordinate(dimensions));
var coords = {};
coords.tiles = [];

for (var column = tl.column; column <= br.column; column++) {
for (var row = tl.row; row <= br.row; row++) {
var c = {
column: column,
row: row,
zoom: z,
};
var p = coordinatePoint(c);

// Wrap tiles with negative coordinates.
c.column = c.column % maxTilesInRow;
if (c.column < 0) c.column = maxTilesInRow + c.column;

if (c.row < 0 || c.row >= maxTilesInRow) continue;
coords.tiles.push({
z: c.zoom,
x: c.column,
y: c.row,
px: Math.round(p.x),
py: Math.round(p.y)
});
}
}
coords.dimensions = { x: w, y: h };
coords.center = floorObj(centerCoordinate);
coords.scale = s;

return coords;
};

abaculus.stitchTiles = function(coords, format, quality, getTile, callback) {
if (!coords) return callback(new Error('No coords object.'));
var tileQueue = queue(32);
var w = coords.dimensions.x,
h = coords.dimensions.y,
s = coords.scale,
tiles = coords.tiles;

tiles.forEach(function(t) {
tileQueue.defer(function(z, x, y, px, py, done) {
var cb = function(err, buffer, headers) {
if (err) return done(err);
done(err, {
buffer: buffer,
headers: headers,
x: px,
y: py,
reencode: true
})
};
cb.scale = s;
cb.format = format;
// getTile is a function that returns
// a tile given z, x, y, & callback
getTile(z, x, y, cb);
}, t.z, t.x, t.y, t.px, t.py);
});

function tileQueueFinish(err, data) {
if (err) return callback(err);
if (!data) return callback(new Error('No tiles to stitch.'));
var headers = [];
data.forEach(function(d) {
headers.push(d.headers);
});

blend(data, {
format: format,
quality: quality,
width: w,
height: h,
reencode: true
}, function(err, buffer) {
if (err) return callback(err);
callback(null, buffer, headerReduce(headers, format));
});
}

tileQueue.awaitAll(tileQueueFinish);
};

// Calculate TTL from newest (max mtime) layer.
function headerReduce(headers, format) {
var minmtime = new Date('Sun, 23 Feb 2014 18:00:00 UTC');
var composed = {};

composed['Cache-Control'] = 'max-age=3600';

switch (format) {
case 'vector.pbf':
composed['Content-Type'] = 'application/x-protobuf';
composed['Content-Encoding'] = 'deflate';
break;
case 'jpeg':
composed['Content-Type'] = 'image/jpeg';
break;
case 'png':
composed['Content-Type'] = 'image/png';
break;
}

var times = headers.reduce(function(memo, h) {
if (!h) return memo;
for (var k in h) if (k.toLowerCase() === 'last-modified') {
memo.push(new Date(h[k]));
return memo;
}
return memo;
}, []);
if (!times.length) {
times.push(new Date());
} else {
times.push(minmtime);
}
composed['Last-Modified'] = (new Date(Math.max.apply(Math, times))).toUTCString();

var etag = headers.reduce(function(memo, h) {
if (!h) return memo;
for (var k in h) if (k.toLowerCase() === 'etag') {
memo.push(h[k]);
return memo;
}
return memo;
}, []);
if (!etag.length) {
composed['ETag'] = '"' + crypto.createHash('md5').update(composed['Last-Modified']).digest('hex') + '"';
} else {
composed['ETag'] = etag.length === 1 ? etag[0] : '"' + crypto.createHash('md5').update(etag.join(',')).digest('hex') + '"';
}

return composed;
}
12 changes: 8 additions & 4 deletions lib/map.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ var defaultCache = require('./memCache');
var EE = require('events').EventEmitter;
var util = require('util')
var makeUnknownError = require('./makeUnknownError');
var _abaculus = require('@mapbox/abaculus');
var _abaculus = require('./abaculus');
var abaculus = util.promisify(_abaculus);
var getEtag = require('./getEtag');
var find = require('./find');
Expand Down Expand Up @@ -72,8 +72,11 @@ function maybePremultiply(img) {
});
}

async function resize(image, format, width, height) {
async function resize(image, format, width, height, oWidth, oHeight) {
image = Array.isArray(image) ? image[0] : image;
if (width === oWidth && height === oHeight) {
return image;
}
let mapnikImage = await fromBytes(image, {max_size: MAX_SIZE});
let maybePremultiplied = await maybePremultiply(mapnikImage);
let resized = await mapnikResize(maybePremultiplied, width, height);
Expand Down Expand Up @@ -168,8 +171,9 @@ async function getMap(layer, rawParams) {
getTile: makeGetTile(layer, bgcolor, format),
format: format
};
let dimensions;
try {
let dimensions = _abaculus.coordsFromBbox(opts.zoom, opts.scale, opts.bbox, MAX_SIZE4)
dimensions = _abaculus.coordsFromBbox(opts.zoom, opts.scale, opts.bbox, MAX_SIZE4)
while (dimensions.w > MAX_SIZE || dimensions.h > MAX_SIZE) {
opts.zoom--;
dimensions = _abaculus.coordsFromBbox(opts.zoom, opts.scale, opts.bbox, MAX_SIZE4);
Expand All @@ -188,7 +192,7 @@ async function getMap(layer, rawParams) {
return makeUnknownError(new Error('aborted'));
}
try {
resizedImage = await resize(image, format, width, height);
resizedImage = await resize(image, format, width, height, dimensions.w, dimensions.h);
} catch (e) {
return makeError(e && e.message || 'error resizing image, please check dimensions');
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
"test": "tape test/*.js"
},
"dependencies": {
"@mapbox/abaculus": "^2.0.3",
"@mapbox/sphericalmercator": "^1.0.5",
"babel-eslint": "^7.2.3",
"bluebird": "^2.9.34",
"d3-queue": "^3.0.7",
"eslint": "^4.1.1",
"handlebars": "^3.0.3",
"lru-cache": "^2.6.5",
Expand Down