我目前有一个使用EPSG:900913投影的postgis数据库,如何将其转换为WGS 84,我认为这是Google Maps和OSM使用的格式。
数据库是用osm2pgsql制作的,我希望能够在python或postgis中投影坐标。
感谢您的时间。
答案 0 :(得分:1)
使用ST_Transform(http://postgis.org/docs/ST_Transform.html)
转换几何图形 ST_Transform(geom,4326)
如果你想转换整个表格,请执行以下操作:
UPDATE table_name SET geom_column = ST_Transform(geom_column,4326)