Search code examples
c++gisgdal

Reading raster directory with GDAL


Is it possible to read an entire directory of Geo - Tiff files "automatically" with GDAL C++ API or do I have to iterate manually on each file and open it with GDALOpen()?


Solution

  • You need to iterate and open each file.