Hi,
In our ThinkGEO project we use the Proj4Projection calls to transform between projections. Like:
// OSGB uses EPSG:27700
// Google Earth is in a Geographic coordinate system with the wgs84 datum. (EPSG:4326)
Proj4Projection reproject = new Proj4Projection
{
InternalProjectionParametersString = Proj4Projection.GetEpsgParametersString(27700),
ExternalProjectionParametersString = Proj4Projection.GetEpsgParametersString(4326)
};
However there are a number of different transforms that could be used to achieve this reprojection and I was wondering how we could choose which we would like to use?
For example (I believe there are a few others):
1314: https://epsg.io/1314 (Oil exploration. Accuracy better than 4m and generally better than 2m) ?
7710: https://epsg.io/7710 (Accuracy 1m)
I don’t believe 1314 or 7710 can be used as in the code snippet as they are transformations not projections.
Thanks,
Jonathan