Converts ISNET93 coordinates to WGS84, which everyone in the world uses, except for Iceland.
This code is adapted from this gist made by Ævar Arnfjörð and is published with his permission.
var isn2wgs = require('isn2wgs');
var wgs84 = isn2wgs(357548, 407626);
console.dir(wgs84);
{ latitude: 64.14180278865086, longitude: -21.92704599837957 }
var isn2wgs = require('isn2wgs')
Return an object with the converted latitude and longitude of the passed in x
and y
coordinates.
With npm do:
npm install isn2wgs
MIT