Re: [gdal-dev] Reading/Interpreting multi band Tiffs

2008-09-24 Thread Tom Kazimiers
Frank Warmerdam schrieb: > Tom Kazimiers wrote: >>> There is also a RasterIO() method on the Dataset which allows >>> fetching all the bands in one request. In C++ this is: >>> >>> http://www.gdal.org/classGDALDataset.html#e077c53268d2272eebed10b891a05743 >>> > >> thank you very much - this was wh

Re: [gdal-dev] Reading/Interpreting multi band Tiffs

2008-09-23 Thread Frank Warmerdam
Tom Kazimiers wrote: There is also a RasterIO() method on the Dataset which allows fetching all the bands in one request. In C++ this is: http://www.gdal.org/classGDALDataset.html#e077c53268d2272eebed10b891a05743 thank you very much - this was what I was looking for. Unfortunately I need to

Re: [gdal-dev] Reading/Interpreting multi band Tiffs

2008-09-23 Thread Tom Kazimiers
Frank Warmerdam schrieb: > Tom Kazimiers wrote: >> Hi there, >> >> up to now I only faced Tiff images with palette information. It was >> relatively easy to read and display everything - I use RasterIO for the >> one available band and the color table. >> Now I want to load and display multi band T

Re: [gdal-dev] Reading/Interpreting multi band Tiffs

2008-09-23 Thread Frank Warmerdam
Tom Kazimiers wrote: Hi there, up to now I only faced Tiff images with palette information. It was relatively easy to read and display everything - I use RasterIO for the one available band and the color table. Now I want to load and display multi band Tiff images - namely the bands red, green a

[gdal-dev] Reading/Interpreting multi band Tiffs

2008-09-23 Thread Tom Kazimiers
Hi there, up to now I only faced Tiff images with palette information. It was relatively easy to read and display everything - I use RasterIO for the one available band and the color table. Now I want to load and display multi band Tiff images - namely the bands red, green and blue. For what I hav