[gdal-dev] How to control which projection database to use

2023-03-10 Thread Kurt Jakobsen
Hi, I have downloaded the latest EPSG WKT dataset from the https://epsg.org/download-dataset.html page. I'm using gdal from an Anaconda venv on win 11. How can I configure in my python scripts that the gdal package shall use the particular dataset version that I have downloaded? Kind regards Kurt -

Re: [gdal-dev] Convex hull with holes

2023-03-10 Thread Paul Meems
Just to let you know. I tried the ST_CONCAVE as Jukka suggested and it works great. Here's my code: ogr2ogr -f "ESRI Shapefile" -oo X_POSSIBLE_NAMES=X -oo Y_POSSIBLE_NAMES=Y -a_srs "EPSG:28992" \ -dialect SQLite -sql "select ST_Buffer(ST_ConcaveHull(ST_Collect(geometry),2.5,1), 2.5)