I have a table where one of the columns is a geometry column the_geom
for polygons with an SRID. I added a new column in the same table with exactly the same geometry data as the_geom
.
This new column has the name the_geom4258
because I want to set its SRID to 4258. What is the procedure to change the geometry's SRID to another coordinate system? Is it enough to apply the following query:
UPDATE table SET the_geom4258=ST_SetSRID(the_geom4258,4258);