[gdal-dev] gdal.Rasterize with same OGR dataset from two python threads

2024-10-28 Thread Meyer, Jesse R. (GSFC-618.0)[SCIENCE SYSTEMS AND APPLICATIONS INC] via gdal-dev
I have two calls to gdal.Rasterize, each of which target a separate GDAL memory dataset but source the same OGR memory dataset, that I hoped could be ran in parallel using Python’s concurrent futures. The idea being that each GDAL call unlocks the Python GIL, and performing read only operations

Re: [gdal-dev] gdal.Rasterize with same OGR dataset from two python threads

2024-10-28 Thread Even Rouault via gdal-dev
Le 28/10/2024 à 17:01, Meyer, Jesse R. (GSFC-618.0)[SCIENCE SYSTEMS AND APPLICATIONS INC] via gdal-dev a écrit : I have two calls to gdal.Rasterize, each of which target a separate GDAL memory dataset but source the same OGR memory dataset, that I hoped could be ran in parallel using Python’