<div dir="ltr">Hi list,<div><br></div><div>I'm using GDAL v2.1.2 from GisInternals.com on Win10 with the C#-bindings.</div><div><br></div><div>I'm trying to recreate this gdal_translate command in C#:</div><div><font face="monospace, monospace">gdal_translate -of GTiff -a_nodata 65535 -a_srs "+proj=stere +lat_0=90 +lon_0=0 +lat_ts=60 +a=6378.14 +b=6356.75 +x_0=0 y_0=0" -a_ullr 0.0, -3650.000, 800.000, -4415.000 "HDF5:\"in.h5\"://image1/image_data" "out.tif"</font></div><div><br></div><div>This is my C#-code:</div><div><div><span style="font-family:monospace,monospace">var options =</span><br></div><div><font face="monospace, monospace">    new GDALTranslateOptions(new[]</font></div><div><font face="monospace, monospace">    {</font></div><div><font face="monospace, monospace">        "-of", "GTiff",</font></div><div><font face="monospace, monospace">        "-a_nodata", "65535",</font></div><div><font face="monospace, monospace">        // "-a_srs", "\"+proj=stere +lat_0=90 +lon_0=0 +lat_ts=60 +a=6378.14 +b=6356.75 +x_0=0 y_0=0\"",</font></div><div><font face="monospace, monospace">        //"-a_ullr", "0.0, -3650.000, 800.000, -4415.000"</font></div><div><font face="monospace, monospace">    });</font></div><div><font face="monospace, monospace">var newDs = Gdal.wrapper_GDALTranslate(outputFile, ds, options, null, null);</font></div><div><div class="gmail_signature"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><br>
The above code works, because I commented the last two <span style="font-family:monospace,monospace">GDALTranslateOptions.</span><br><br>When I enable the -a_srs option I get this error: <font face="monospace, monospace">Failed to process SRS definition</font></div><div dir="ltr">When I enable the -a_ullr option I get <font face="monospace, monospace">Unknown option name '-a_ullr'</font></div><div dir="ltr"><br></div><div dir="ltr">So it seems I'm not doing it right. I tried looking for examples but couldn't find any.</div><div dir="ltr">Can anybody assist?</div><div dir="ltr"><br></div><div dir="ltr">Thanks,<br><br>
Paul<br>
</div></div></div></div></div></div>
</div></div>