Hello all,

I am having some problems with the output of ST_Transform. To illustrate the problem, I have a point in the EPSG:28992 SRS:

POINT(253328 593188)

I want to transform it to WGS84 (EPSG:4326). This is the output of ST_Transform:

POINT(6.86264236062518 53.3160795502069)

There are two things wrong with this result:
1) The coordinates are in the wrong order (EPSG:4326 uses latitude, longitude). 2) There are too much significant numbers in the result (the implied accuracy was increased by ST_Transform).

I would have expected a result like

POINT(53.31608 6.86264)

Is there a way to improve the way ST_Transform works?

Thanks,
Frans




_______________________________________________
postgis-users mailing list
postgis-users@postgis.refractions.net
http://postgis.refractions.net/mailman/listinfo/postgis-users

Reply via email to