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
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 };