Hello again.
Poking around, I see in the GDAL wkt support file, there exists EPSG 102736 (NAD_1983_StatePlane_Tennessee_FIPS_4100_Feet), which is associated with MapWinGIS enumeration tkNad83Projection.Nad83_Tennessee_ftUS.
This also exists EPSG 103152 (ESRI 6576) (NAD_1983_2011_StatePlane_Tennessee_FIPS_4100_Ft_US), which MapWinGIS does not have an enumeration for, and appears to be tagged as ‘deprecated’ in GDAL.
You could try entering the number into the API call ImportFromEPSG, and see if you can transform using that. But it may well be that GDAL no longer transforms since it is deprecated.
GeoProjection gp = new GeoProjection();
// or you could try 6576, but I think that's the ESRI code and not the EPSG code
gp.ImportFromEPSG(103152);
Again, I’m not well versed on geoprojections, I just use them ;-). And maybe I’m not reading / interpreting the file correctly. See what you think. Here is the section from the GDAL file esri_extra.wkt
that is distributed with GDAL. I don’t know whether it is saying that 6576 is deprecated, or if 6576 is the replacement for 103152, which is deprecated. Either way, if there are problems loading the projection using one or both of the codes, I would submit a query on the GDAL sight to get more information.
# NAD_1983_2011_StatePlane_Tennessee_FIPS_4100_Ft_US [NAD 1983 2011 SPCS Tennessee (US Feet)]
# area: (lat: 34.98, 36.68) - (lon: -90.31, -81.65) [USA - Tennessee]
# DEPRECATED: new code = 6576
103152,PROJCS["NAD_1983_2011_StatePlane_Tennessee_FIPS_4100_Ft_US",GEOGCS["GCS_NAD_1983_2011",DATUM["D_NAD_1983_2011",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Lambert_Conformal_Conic"],PARAMETER["False_Easting",1968500.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",-86.0],PARAMETER["Standard_Parallel_1",35.25],PARAMETER["Standard_Parallel_2",36.41666666666666],PARAMETER["Latitude_Of_Origin",34.33333333333334],UNIT["Foot_US",0.3048006096012192],AUTHORITY["Esri",6576]]