Re: [gdal-dev] flipped

2019-11-01 Thread Dshah
I found there is an option WRITE_BOTTOMUP available for gdal_translate , Looking for alternative in C++ On Fri, Nov 1, 2019 at 11:24 AM Dshah wrote: > @Mateusz thanks for the answer, so it is set by GDAL to open data flipped? > > On Fri, Nov 1, 2019 at 9:33 AM Mateusz Loskot wrote: > >> On Fri

Re: [gdal-dev] flipped

2019-11-01 Thread Dshah
@Mateusz thanks for the answer, so it is set by GDAL to open data flipped? On Fri, Nov 1, 2019 at 9:33 AM Mateusz Loskot wrote: > On Fri, 1 Nov 2019, 07:10 Dshah, wrote: > >> Greetings, >> >> When I GDALOpen a .tif image and write a new one, the new image is >> flipped upside down? could someon

Re: [gdal-dev] flipped

2019-11-01 Thread Mateusz Loskot
On Fri, 1 Nov 2019, 07:10 Dshah, wrote: > Greetings, > > When I GDALOpen a .tif image and write a new one, the new image is flipped > upside down? could someone please help? > > const char *pszFilename = "im.tif"; > poDataset = (GDALDataset *)GDALOpen(pszFilename, GA_ReadOnly); > Write

[gdal-dev] flipped

2019-10-31 Thread Dshah
Greetings, When I GDALOpen a .tif image and write a new one, the new image is flipped upside down? could someone please help? const char *pszFilename = "im.tif"; poDataset = (GDALDataset *)GDALOpen(pszFilename, GA_ReadOnly); Best Regards ___ gda