WGS84 is a horizontal component of 3D system and is used by the GPS satellite navigation system and for NATO military geodetic surveying of the World.
A method to project map coordinates between the world WGS84 system to Icelandic ISN93 system.
Parameter |
Value |
---|---|
x: number |
wgs84 x-coordinate. |
y: number |
wgs84 y-coordinate. |
Return |
Value |
---|---|
object (x, y): |
A point set object (not SWPoint) in ISN93 projection. |
Example:
var isn93 = SiteWatch_API.WGS84_To_ISN93(64.1000, 21.5700);
Or to go full circle:
var isn93 = SiteWatch_API.WGS84_To_ISN93(64.1000, 21.5700);
var wgs84 = SiteWatch_API.ISN93_To_WGS84(isn93.x, isn93.y);