I'm new at programing with GDAL C#.
I need to geotransform raster image (using GCP's) and bring it to the Merkator projection. With FWTools I can do this by using gdalwarp -r cubic -tps after gdal_translate.
In c# code I use functions
public CPLErr SetGCPs(GCP[] pGCPs, string pszGCPProjection);
public static Dataset AutoCreateWarpedVRT(Dataset src_ds,
string src_wkt,
string dst_wkt,
ResampleAlg eResampleAlg,
double maxerror);
and
public Dataset CreateCopy(string utf8_path,
Dataset src,
int strict,
string[] options,
Gdal.GDALProgressFuncDelegate callback,
string callback_data);
How I can use thin plate spline transformation ?