Tell me more ×
Geographic Information Systems Stack Exchange is a question and answer site for cartographers, geographers and GIS professionals. It's 100% free, no registration required.

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 ?

share|improve this question
Please format your code – Nathan W Jan 22 at 9:51

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.