<div dir="ltr"><div>I am usign PostGIS 3.5 with PostgreSQL 17.0</div><div><br></div><div>Here are the details for my installation:</div><div><br></div><div>"postgis_full_version"<br>"POSTGIS=""3.5.3 3.5.3"" [EXTENSION] PGSQL=""170"" GEOS=""3.13.1-CAPI-1.19.2"" PROJ=""8.2.1 NETWORK_ENABLED=OFF <br>URL_ENDPOINT=<a href="https://cdn.proj.org">https://cdn.proj.org</a> USER_WRITABLE_DIRECTORY=C:\Windows\ServiceProfiles\NetworkService\AppData\Local/proj <br>DATABASE_PATH=C:\Program Files\PostgreSQL\17\share\contrib\postgis-3.5\proj\proj.db"" (compiled against PROJ 8.2.1) <br>LIBXML=""2.12.5"" LIBJSON=""0.12"" LIBPROTOBUF=""1.2.1"" WAGYU=""0.5.0 (Internal)"" (core procs from ""3.5.2 3.5.2"" need upgrade)"</div><div><br></div><div><br></div><div>I have done the following coordinate transformation<br>from ED50 / UTM zone 33N
(espg:23033)<br></div><div>to ETRS89 / UTM zone 33N
(epsg:25833<br></div><div><br>SELECT <br> ST_X(ST_Transform(ST_Point(541000,4516000,23033),25833)) as X,<br> ST_Y(ST_Transform(ST_Point(541000,4516000,23033),25833)) as Y;<br><br>-- result<br>"x" "y"<br>540998.1383329581 4515921.565374701<br><br>I have read that the best way to utilize PROJ.6 capabilities is by allowing the library to freely choose the best possible transformation paths <br>between the origin and the destination CRSes.<br><br>Does someone know how to find which specific transformation pipeline has been chosen by the PROJ.6 library in this specific transformation ?</div><div><br></div><div>Antonio</div><div><br><br></div></div>