<div dir="ltr">Hello, i noticed a strange behaviour in the gdal.VectorTranslate function.<br>This is my snippet:<br><br><i>from osgeo import gdal, ogr<br>import sys<br>'''<br>- SRC (FILE)<br>- DST (FILE)<br>- FORMAT (GEOJSON)<br>'''<br>SRC = "/tmp/9f097a2e-d849-4261-9735-f3d45a6d01e7/example.kml"<br>DST = "/tmp/test.json"<br>FORMAT = "GeoJson"<br><br>srcDS = gdal.OpenEx(SRC)<br>print("read done")<br>ds = gdal.VectorTranslate(DST, srcDS, format=FORMAT)</i><br><br>This code works fine on OSX 10.14 with <br>





<span style="font-variant-ligatures:no-common-ligatures;color:rgb(0,0,0);font-family:Menlo;font-size:11px">GDAL 3.2.0, released 2020/10/26</span> but not on Debian 11 with GDAL 3.4.2, released 2022/03/08 and it gave as error: <b>ERROR 1: hSrcDS == NULL</b><br><br>Do you know what it could be? <br>I also tried the snipped described here: <a href="https://github.com/OSGeo/gdal/issues/1683">https://github.com/OSGeo/gdal/issues/1683</a><br>But even with the Options passed in that manner, gave the same error.<br>Thanks for your help<br><br></div>