PostGIS更新SRID
更新table的srid,方法如下 首先更新某個table的geometry column,並且設定srid(e.g. 3826) select updategeometrysrid('your_table', 'geom_col', ); 然後將 geometry column設定srid select setsrid(geom_col, ) from your_table;
發表系統開發時遇到的疑難雜症與Tip,希望能夠為自己提供備忘並分享給需要解決相同問題的朋友.