<div dir="ltr">Hi everyone,<div>I've got the following SQL to extract the lat/lon of a polygone:</div><div><br></div><div>SELECT </div><div>ROW_NUMBER () over () as id, </div><div>name, </div>
<div>geom, </div><div>ST_Y(geom) as lat, </div><div>ST_X(geom) as lon </div><div>FROM (SELECT name, (ST_DumpPoints(geom)).* FROM timezones20032013) as foo</div><div><br></div><div style>It gives me back the lat and lon as a number with a lot of digits, e.g.:</div>
<div style>42.4734992980957</div><div style>1.71096694469452</div><div style><br></div><div style>Instead what I need is:</div><div style>42.473499</div><div style>1.710967</div><div style><br></div><div style>How could I change my SQL to get the result cut/rounded?</div>
<div style><br></div><div style>Any help would be appreciated.</div><div style><br></div><div style>Thanks in advance</div><div style>Carsten</div>
</div>