PostgreSQL
 sql >> Base de données >  >> RDS >> PostgreSQL

Coordonnées inversées dans la colonne de polygone PostgreSQL

Utilisez ST_SwapOrdinates , qui est fait juste pour ça :

SELECT ST_AsText(
          ST_SwapOrdinates(
             'POLYGON((1 2,5 2,1 3,1 2))'::geometry,
             'xy'
          )
       );

         st_astext          
════════════════════════════
 POLYGON((2 1,2 5,3 1,2 1))
(1 row)