mirror of https://github.com/pelias/api.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
774 B
39 lines
774 B
var geolib = require('geolib'); |
|
var check = require('check-types'); |
|
|
|
|
|
function setup() { |
|
|
|
return computeDistances; |
|
} |
|
|
|
function computeDistances(req, res, next) { |
|
|
|
// do nothing if no result data set |
|
if (!res || !res.data) { |
|
return next(); |
|
} |
|
|
|
if (!(check.number(req.clean['point.lat']) && |
|
check.number(req.clean['point.lon']))) { |
|
return next(); |
|
} |
|
|
|
var point = { |
|
latitude: req.clean['point.lat'], |
|
longitude: req.clean['point.lon'] |
|
}; |
|
|
|
res.data.forEach(function (place) { |
|
// the result of getDistance is in meters, so convert to kilometers |
|
place.distance = geolib.getDistance( |
|
point, |
|
{ latitude: place.center_point.lat, longitude: place.center_point.lon } |
|
) / 1000; |
|
}); |
|
|
|
next(); |
|
} |
|
|
|
|
|
module.exports = setup;
|
|
|