Hi
I am try to convert from WGS1984 to ISN1993
it don't work I get no ISN1993 to XY_to
I am try to convert from WGS1984 to ISN1993
it don't work I get no ISN1993 to XY_to
Dim XY(1) As Double
Dim z(0) As Double
z(0) = 0
XY(0) = 64.147612642
XY(1) = -21.9376785421
Label1.Text = XY(1)
Label2.Text = XY(0)
Dim XY_from As ProjectionInfo = KnownCoordinateSystems.Geographic.World.WGS1984
Dim XY_to As ProjectionInfo = KnownCoordinateSystems.Geographic.Europe.ISN1993
Reproject.ReprojectPoints(XY, z, XY_from, XY_to, 0, 1)
x.Text = XY(1)
y.Text = XY(0)