ISN93 is a medium and small scale topographic mapping for Iceland.
A method to project map coordinates between the Icelandic ISN93 system to the world WGS84 system.
Parameter |
Value |
---|---|
x: number |
isn93 x-coordinate. |
y: number |
isn93 y-coordinate. |
Return |
Value |
---|---|
object (lat, lon): |
A point set object (not SWPoint) in WGS84 projection. |
Example:
var wgs84 = SiteWatch_API.ISN93_To_WGS84(300000, 400000);
Or to go full circle:
var wgs84 = SiteWatch_API.ISN93_To_WGS84(300000, 400000);
var isn93 = SiteWatch_API.WGS84_To_ISN93(wgs84.lat, wgs84.lon);