Elevation service for Furkot
$ npm install --save @furkot/elevation
const furkotElevation = require('@furkot/elevation');
const elevation = furkotElevation(options);
const points = [
[ lon, lat ] ,
// ...
];
const result = await elevation(points);
// result is an Array of elevations in meters
// elevation Array items corresponds to the items in points array
assert.equal(result.length, points.length);
MIT © Damian Krzeminski