Hi Kurt. GDAL >=3 uses PROJ to deal with CRSs. And PROJ has embedded the EPSG database in its proj.db, that is packaged directly with PROJ. So I guess that you cannot select the version of EPSG easily.
Fortunately PROJ is updating the version of EPSG quite often, so using the latest version of PROJ will include a recent version of EPSG. Maybe not always the last, but near. For instance, PROJ 9.2.0, recentely released, includes EPSG 10.082 https://github.com/OSGeo/PROJ/blob/9.2.0/data/sql/metadata.sql Using master today would include 10.084 If you just want to be consistent, it is easy to produce all the WKTs from PROJ using pyproj (or even bash and projinfo). You can have a look at the project https://github.com/OSGeo/PROJ-CRS-Explorer/ Cheers, Javier. On Fri, 10 Mar 2023 at 12:37, Kurt Jakobsen <[email protected]> wrote: > > 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 > -- > Mvh / Best regards > Kurt Jakobsen > _______________________________________________ > gdal-dev mailing list > [email protected] > https://lists.osgeo.org/mailman/listinfo/gdal-dev >
_______________________________________________ gdal-dev mailing list [email protected] https://lists.osgeo.org/mailman/listinfo/gdal-dev
