Hi I can't get the expected result when trying to convert euref89 to wgs84
Here i have a small test with input and what the correct result needs to be...
How can i get the expected result?
public static PointShape TESTConvertEuref89ToWgs84()
{
double x = 6227738.595D;
double y = 594538.991D;
// correct result needs to be
//56.1852203615381
//10.5231905076627
PointShape xx = new PointShape();
Proj4Projection proj4 = new Proj4Projection();
//proj4.InternalProjectionParametersString = Proj4Projection. ???
proj4.ExternalProjectionParametersString = Proj4Projection.GetWgs84ParametersString();
proj4.Open();
Vertex wgs84Vertex = proj4.ConvertToExternalProjection(x,y);
xx.X = wgs84Vertex.X;
xx.Y = wgs84Vertex.Y;
proj4.Close();
return xx;
}