Re: [gdal-dev] Remove projection info

2011-06-21 Thread Goo Creations
Thanks Frank, that worked! On Tue, Jun 21, 2011 at 1:29 PM, Frank Warmerdam wrote: > On 11-06-21 07:05 AM, Goo Creations wrote: > >> Hi all, >> >> I'm looking for a way to remove any projection and CRS information from an >> image. I've tried: >> >> gdal_translate -a_srs "" in.tif out.tif >> >> b

Re: [gdal-dev] Remove projection info

2011-06-21 Thread Frank Warmerdam
On 11-06-21 07:05 AM, Goo Creations wrote: Hi all, I'm looking for a way to remove any projection and CRS information from an image. I've tried: gdal_translate -a_srs "" in.tif out.tif but without any success. Does anyone know how to do this (or by using CreateCopy() via source code)? Goo,

Re: [gdal-dev] Remove projection info

2011-06-21 Thread Chaitanya kumar CH
Hi, Convert the file into a PNG image. Delete the .aux.xml file. You can convert the PNG into TIFF if you want. On Tue, Jun 21, 2011 at 4:35 PM, Goo Creations wrote: > Hi all, > > I'm looking for a way to remove any projection and CRS information from an > image. I've tried: > > gdal_translate -

[gdal-dev] Remove projection info

2011-06-21 Thread Goo Creations
Hi all, I'm looking for a way to remove any projection and CRS information from an image. I've tried: gdal_translate -a_srs "" in.tif out.tif but without any success. Does anyone know how to do this (or by using CreateCopy() via source code)? Thanks _