Re: [gdal-dev] Multithreaded GDAL

2012-12-24 Thread Martin Chapman
Yehiyam, You can read from different threads concurrently if each thread has its own, unique GDALDataset handle. That means call GDALOpen() from each thread on the same file path. Writing should be done from one thread. Best regards, Martin From: gdal-dev-boun...@lists.osgeo.org

[gdal-dev] Multithreaded GDAL

2012-12-24 Thread Livneh Yehiyam
Hi all I've tried searching for an answer online, but the most recent information I found is more than 3 years old. We have method that reads pixels from one data-source, performs some manipulation, and writes it to another. Reading is done with the Band.ReadRaster C# API. Writing is done with th