diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2025-08-14 13:46:48 +0200 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2025-08-14 16:02:20 +0200 |
commit | 27fc0d1bfdefbc69450781c16bb43198b857f95d (patch) | |
tree | e3c3505bc5cec12b845e7213d6458db00dc315ca /webmap-import | |
parent | 878d693d3cda9dc667508889732614bdd9e31abd (diff) |
Use .GetDataSet() from gdal ≥3.9 instead of passing the ds around.
Diffstat (limited to 'webmap-import')
-rwxr-xr-x | webmap-import | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/webmap-import b/webmap-import index ef728a9..95c3b41 100755 --- a/webmap-import +++ b/webmap-import @@ -274,7 +274,7 @@ def processOutputLayer(ds : gdal.Dataset, # setup output field mapping in the sources dictionary setOutputFieldMap(lyr.GetLayerDefn(), sources) - return importSources(dso=ds, lyr=lyr, sources=sources, + return importSources(lyr=lyr, sources=sources, cachedir=cachedir, extent=extent, dsoTransaction=dsTransaction, lyrcache=lyrcache, |