<div dir="ltr">Hi All,<br><br>I'm not sure if I'm seeing some random bug, or just not doing/understanding something correctly?<br><br>I have a list of point geometries in a table (WGS 84 SRID=4326). I wanted to extract the UTM coordinates for these points, so I chose SRID= 32710, which has the description PROJCS["WGS 84 / UTM zone 10S..." since my points were in Northern California. I perform my select statement which looks something like this:<br>
<br>SELECT x(ST_Transform(geometry,32710)), y(ST_Transform(geometry,32710))<br>FROM point_table<br><br>But the results seem strange. Doing a quick check vs the UTM coordinates in Google Earth, I see theres this extra "1" in front of all of my Northing values.<br>
Here's an example:<br><br>Lon -122.3888235, Lat 37.7729709 transforms to --> 553824.9278 E, 14180802.0043 N (through PostGIS),<br>when it looks like it should be (via Google Earth) 553824.9278m E, 4180802.0043m N <br>
<br>Am I using the wrong SRID, or is this some known bug? Is there any way I can rectify this and get the correct UTM value straight from PostGIS?<br>Any insights would be appreciated, <br><br>thanks,<br><br>Oliver <br><br>
<br></div>