Re: [gdal-dev] Issue with using GDAL warp

2024-03-24 Thread Andrew C Aitchison via gdal-dev
On Sun, 24 Mar 2024, Ian Hannah via gdal-dev wrote: Hi, I am using 3.8.4 of GDAL .NET and running this code: string[] warpOptions = { "outputType", GdalConst.GDT_Byte.ToString(), "srcSRS", projectionWKT,

Re: [gdal-dev] Issue with using GDAL warp

2024-03-24 Thread Ian Hannah via gdal-dev
Hi, If I change the options to this: string[] warpOptions = { "srcSRS", projectionWKT, "dstSRS", "EPSG:3857", "format", "GTiff" }; i.e. so specifying the output

[gdal-dev] Issue with using GDAL warp

2024-03-24 Thread Ian Hannah via gdal-dev
Hi, I am using 3.8.4 of GDAL .NET and running this code: string[] warpOptions = { "outputType", GdalConst.GDT_Byte.ToString(), "srcSRS", projectionWKT, "dstSRS", "EPSG:3857",