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
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’