Re: [gdal-dev] [gdal 2.2.2] different result with gdal 2.1.0

2017-11-06 Thread Vincent BERNAT
Thanks for your reply. I have these differents only with images using driver SRP/Standard Raster Product (ASRP/USRP) i did it with gdalwrap with 2.1.0 and 2.2.2 : >>gdalwrap input.IMG output.IMG -overwrite -t_srs EPSG:4326 and here are the 2 gdalinfo i got in outputs : Driver: GTiff/GeoTI

Re: [gdal-dev] gdalwarp from C#

2017-11-06 Thread Paul Meems
We're using it like this: using (var ds = _gdalProxy.Open(input, Access.GA_ReadOnly)) { if (ds == null) { throw new Exception("Can't open GDAL dataset: " + input); } var gdalOptions = new GDALWarpAppOptions(options); var ptr = new[] { Dataset.getCPtr(ds).Handle };