首頁
云數(shù)據(jù)庫 RDS
RDS PostgreSQL數(shù)據(jù)庫
時(shí)空引擎(GanosBase)
Geometry SQL參考
處理函數(shù)
ST_FlipCoordinates
ST_FlipCoordinates
更新時(shí)間:
互換一個(gè)輸入Geometry對象的X和Y坐標(biāo)。
語法
geometry ST_FlipCoordinates(geometry geom);
參數(shù)
參數(shù)名稱 | 描述 |
geom | 目標(biāo)Geometry對象。 |
描述
對于用戶將經(jīng)度/緯度坐標(biāo)錯(cuò)誤輸入成緯度/經(jīng)度時(shí)候很有用,可以用該函數(shù)來修復(fù)它。
該函數(shù)支持Circular Strings、Curves、Polyhedral surfaces、Triangles and Triangulated Irregular Network Surfaces(TIN)和3D對象。
該函數(shù)支持M坐標(biāo)。
示例
默認(rèn)調(diào)用:
SELECT ST_AsText(ST_FlipCoordinates('POINT(0 1)'::geometry));
st_astext
------------
POINT(1 0)
(1 row)
文檔內(nèi)容是否對您有幫助?