<div dir="ltr"><div><div><div><div><div><div>We are finally able to retire one of our older servers running an old version of PostGIS and we are migrating everything over to a new install.  <br><br></div>One thing that I am noticing is that I am getting different behavior between the two versions when transforming some values from 4267 to 4326.<br><br></div>The Old Server:<br><br>SELECT Postgis_Version();<br>1.3 USE_GEOS=1 USE_PROJ=1 USE_STATS=1<br><br>SELECT ST_Y(ST_Transform(ST_SetSRID(ST_Point(-94.884720995369,47.4732852509464),4267),4326)) AS lat,         <br>       ST_X(ST_Transform(ST_SetSRID(ST_Point(-94.884720995369,47.4732852509464),4267),4326)) AS lon;<br><br>47.4732375024506 | -94.8849980111078<br><br><br><br></div>The New Server<br>SELECT Postgis_Version();<br>2.1 USE_GEOS=1 USE_PROJ=1 USE_STATS=1<br><br>SELECT ST_Y(ST_Transform(ST_SetSRID(ST_Point(-94.884720995369,47.4732852509464),4267),4326)) AS lat,         <br>       ST_X(ST_Transform(ST_SetSRID(ST_Point(-94.884720995369,47.4732852509464),4267),4326)) AS lon;<br><br>47.4732852509464 | -94.884720995369<br><br></div>This issue feels familiar, but I couldn't find anything about it when searching.  Can anyone shed some light?<br><br></div>Thanks, <br><br></div>David.<br><div><div><div><br></div></div></div></div>