Re: [gdal-dev] Removing Nodata pixels from raster

2012-10-26 Thread Volker Wichmann
In SAGA GIS there is a "Crop to Data" module (in Grid Tools module library), which performs the task. But this would require you to import your Geotif with the GDAL import module, process it in SAGA, and finally export it as Geotif again with the GDAL export module. Best regards, Volker On

Re: [gdal-dev] Removing Nodata pixels from raster

2012-10-26 Thread Etienne Tourigny
you can surely identify the valid pixels with visualization software such as qgis, using the valuetool plugin, to identify the 4 corners of the valid region. Another option is to compress the gtiff with e.g. DEFLATE compression like this gdal_translate -co COMPRESS=DEFLATE in.tif out.tif Etienne

Re: [gdal-dev] Removing Nodata pixels from raster

2012-10-25 Thread Kyle Shannon
Katrin, Do you know where you valid pixels are in the image? If so, gdal_translate with -srcwin would work: kyle@ubuntu:~$ gdal_translate -srcwin xoff yoff 60 100 in.tif out.tif where xoff, yoff are the number of pixels from the image origin that your valid region begins(pixels, lines). See htt

Re: [gdal-dev] Removing Nodata pixels from raster

2012-10-25 Thread katrin eggert
Hello No I don't know where my valid pixels are. Any alternative? 2012/10/25 Kyle Shannon > Katrin, > Do you know where you valid pixels are in the image? If so, > gdal_translate with -srcwin would work: > > kyle@ubuntu:~$ gdal_translate -srcwin xoff yoff 60 100 in.tif out.tif > > where xoff, y

[gdal-dev] Removing Nodata pixels from raster

2012-10-25 Thread katrin eggert
Greetings I have a Geotif with only one Layer with a size of 6000x5000 but from which I only have a square of 60x100 with bvalid pixels. the remaining are NOdata. The problem is that this Geotiff is a big file 90MB and without these NoData values I would have a much smaller raster. How can I genera