Réponses:
Outre ST_AsText (qui renvoie la géométrie sous la forme WKT / Well Known Text), il existe plusieurs formats de sortie supplémentaires, tels que ST_AsGeoJSON ().
Jetez un coup d'oeil à http://postgis.net/docs/manual-2.0/reference.html#Geometry_Outputs et choisissez ce qui correspond le mieux à vos besoins.
Utilisez ST_AsText pour afficher l'objet de point:
SELECT ST_AsText(the_geom)
FROM myTable;
Pour afficher X , Y et l'objet geom:
SELECT ST_X(the_geom), ST_Y(the_geom), ST_AsText(the_geom)
FROM myTable;
st_x(st_centroid(the_geom))
Avec une table en UTM
SELECT
ST_X(table.geometry) AS X1, --point x
ST_Y(table.geometry) AS Y1, --point y
ST_X(ST_TRANSFORM(table.geometry,4674)) AS LONG, -- longitude point x SIRGAS 2000
ST_Y(ST_TRANSFORM(table.geometry,4674)) AS LAT, --latitude point y SIRGAS 2000
ST_ASTEXT(table.geometry) AS XY, --wkt point xy
ST_ASTEXT(ST_TRANSFORM(table.geometry,4674)) AS LongLat --using st_transform to get wkt with longitude and latitude (4674 is the SIRGAS 2000 SRC by south america)
FROM
table
SELECT * ST_AsText(the_geom) FROM table2;
Source: Obtenir la géométrie de plusieurs tables en utilisant PostGIS?